themewizz/twz-plugin-manager-client-library

Plugin Manager Client Library

5.0.8 2025-03-20 12:35 UTC

This package is not auto-updated.

Last update: 2025-05-15 13:29:58 UTC


README

This class can be used in a PHP application to contact a Themewizz based Plugin Manager Server using the free TWZ Plugin Manager.

Usage

  • Install WordPress on your license server
  • Install the Software License Manager Plugin on that server
  • Configure the plugin, e.g. setting the secret key for validation
  • Include TWZ_Plugin_Manager_Client class in your PHP application
		$server_url = 'Server URL';
		$plugin_slug = 'your_plugin_slug';
		$pluginManager = new TWZ_Plugin_Manager_Client($server_url, $plugin_slug);
		echo $pluginManager->show_products();