PluginProbe
Statify / 1.4.1
Statify v1.4.1
2.0.2 2.0.1 trunk 0.7 0.8 0.9 1.0 1.2.8 1.3.0 1.4.0 1.4.1 1.4.2 1.4.3 1.5.0 1.5.1 1.5.2 1.5.3 1.5.4 1.6.0 1.6.1 1.6.2 1.6.3 1.7.0 1.7.1 1.7.2 All 32 releases
statify / inc / statify_deactivate.class.php

statify_deactivate.class.php in Statify 1.4.1, at inc/statify_deactivate.class.php

33 lines 377 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3
4 /* Quit */
5 defined('ABSPATH') OR exit;
6
7
8 /**
9 * Statify_Deactivate
10 *
11 * @since 1.4.0
12 */
13
14 class Statify_Deactivate
15 {
16
17
18 /**
19 * Plugin deactivation actions
20 *
21 * @since 1.4.0
22 * @change 1.4.0
23 */
24
25 public static function init()
26 {
27 /* Delete transients */
28 delete_transient('statify_data');
29
30 /* Delete cron event */
31 wp_clear_scheduled_hook('statify_cleanup');
32 }
33 }