Skip to content

ThemeWizz/twz-plugin-manager-client-library

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Software License Manager PHP Class

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();