PluginProbe
HurryTimer – An Scarcity and Urgency Countdown Timer for WordPress & WooCommerce / 2.0.3
HurryTimer – An Scarcity and Urgency Countdown Timer for WordPress & WooCommerce v2.0.3
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 / Activator.php

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

42 lines 825 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 /**
5 * Fired during plugin activation
6 *
7 * @link http://nabillemsieh.com
8 * @since 1.0.0
9 *
10 * @package Hurrytimer
11 * @subpackage Hurrytimer/includes
12 */
13
14 /**
15 * Fired during plugin activation.
16 *
17 * This class defines all code necessary to run during the plugin's activation.
18 *
19 * @since 1.0.0
20 * @package Hurrytimer
21 * @subpackage Hurrytimer/includes
22 * @author Nabil Lemsieh <contact@nabillemsieh.com>
23 */
24 class Activator
25 {
26
27 /**
28 * Short Description. (use period)
29 *
30 * Long Description.
31 *
32 * @since 1.0.0
33 */
34 public static function activate()
35 {
36 Upgrade::getInstance()->createTables();
37 add_option('hurrytimer_db_version', HURRYT_DB_VERSION);
38 add_option('hurrytimer_version', HURRYT_VERSION);
39 }
40
41 }
42