mirror of
https://gh.wpcy.net/https://github.com/michelve/software-license-manager.git
synced 2026-07-15 19:03:28 +08:00
fixed minor links giving 404 from jquery ui library added: activity log for licenses api added: woocommerce order details with license, status, and license type added: subscribers, now you can manage licenses by subscribers added: screen options added: filter by tags inside the license table added: admin stats dashboard fixed: minor depreciation errors bugs: fixed another minor errors and bugs
18 lines
No EOL
467 B
PHP
Executable file
18 lines
No EOL
467 B
PHP
Executable file
<?php
|
|
/**
|
|
* Runs on Uninstall of Software License Manager
|
|
*
|
|
* @package Software License Manager
|
|
* @author Michel Velis
|
|
* @license GPL-2.0+
|
|
* @link http://epikly.com
|
|
*/
|
|
//Deactivation handler
|
|
class SLM_Deactivator {
|
|
public static function deactivate() {
|
|
//Clear the daily cron event
|
|
wp_clear_scheduled_hook('slm_daily_cron_event');
|
|
do_action('slm_deactivation_complete');
|
|
}
|
|
}
|
|
$slm_deactivator = new SLM_Deactivator(); |