PluginProbe ʕ •ᴥ•ʔ
Booking for Appointments and Events Calendar – Amelia / 2.4.6
Booking for Appointments and Events Calendar – Amelia v2.4.6
2.4.7 2.4.6 2.4.5 2.4.4 2.4.3 2.4.2 2.4.1 2.4 trunk 1.2.1 1.2.10 1.2.11 1.2.12 1.2.13 1.2.14 1.2.15 1.2.16 1.2.17 1.2.18 1.2.19 1.2.2 1.2.20 1.2.21 1.2.22 1.2.23 1.2.24 1.2.25 1.2.26 1.2.27 1.2.28 1.2.29 1.2.3 1.2.30 1.2.31 1.2.32 1.2.33 1.2.34 1.2.35 1.2.36 1.2.37 1.2.38 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 2.0 2.0.1 2.0.2 2.1 2.1.1 2.1.2 2.1.3 2.2 2.2.1 2.3
ameliabooking / extensions / divi_amelia / includes / DiviAmelia.php
ameliabooking / extensions / divi_amelia / includes Last commit date
fields 4 months ago images 7 months ago modules 4 months ago DiviAmelia.php 5 years ago loader.php 7 months ago
DiviAmelia.php
48 lines
1 <?php
2
3 class DIVI_DiviAmelia extends DiviExtension
4 {
5 /**
6 * The gettext domain for the extension's translations.
7 *
8 * @since 1.0.0
9 *
10 * @var string
11 */
12 public $gettext_domain = 'divi-divi_amelia';
13
14 /**
15 * The extension's WP Plugin name.
16 *
17 * @since 1.0.0
18 *
19 * @var string
20 */
21 public $name = 'divi_amelia';
22
23 /**
24 * The extension's version
25 *
26 * @since 1.0.0
27 *
28 * @var string
29 */
30 public $version = '1.0.0';
31
32 /**
33 * DIVI_DiviAmelia constructor.
34 *
35 * @param string $name
36 * @param array $args
37 */
38 public function __construct($name = 'divi_amelia', $args = array())
39 {
40 $this->plugin_dir = plugin_dir_path(__FILE__);
41 $this->plugin_dir_url = plugin_dir_url($this->plugin_dir);
42
43 parent::__construct($name, $args);
44 }
45 }
46
47 new DIVI_DiviAmelia;
48