themewizz/twz-plugin-manager-client-library

Plugin Manager Client Library

Installs: 228

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/themewizz/twz-plugin-manager-client-library

5.0.8 2025-03-20 12:35 UTC

This package is not auto-updated.

Last update: 2025-10-30 15:37:19 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();