PluginProbe
HurryTimer – An Scarcity and Urgency Countdown Timer for WordPress & WooCommerce / 2.2.21
HurryTimer – An Scarcity and Urgency Countdown Timer for WordPress & WooCommerce v2.2.21
2.15.0 trunk 1.0.0 1.0.1 1.1.0 1.1.1 1.1.2 1.1.3 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.1.2 2.1.3 2.1.5 2.1.6 2.1.7 2.1.8 2.10.0 All 62 releases
hurrytimer / includes / Deactivator.php

Deactivator.php in HurryTimer – An Scarcity and Urgency Countdown Timer for WordPress & WooCommerce 2.2.21, at includes/Deactivator.php

37 lines 634 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 namespace Hurrytimer;
3 /**
4 * Fired during plugin deactivation
5 *
6 * @link http://nabillemsieh.com
7 * @since 1.0.0
8 *
9 * @package Hurrytimer
10 * @subpackage Hurrytimer/includes
11 */
12
13 /**
14 * Fired during plugin deactivation.
15 *
16 * This class defines all code necessary to run during the plugin's deactivation.
17 *
18 * @since 1.0.0
19 * @package Hurrytimer
20 * @subpackage Hurrytimer/includes
21 * @author Nabil Lemsieh <contact@nabillemsieh.com>
22 */
23 class Deactivator {
24
25 /**
26 * Short Description. (use period)
27 *
28 * Long Description.
29 *
30 * @since 1.0.0
31 */
32 public static function deactivate() {
33
34 }
35
36 }
37