software-license-manager/includes/class-slm-deactivator.php
Michel Velis 27fe73fe55 upgraded jQuery ui version
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
2019-06-12 10:09:54 -04:00

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