PluginProbe
Depicter — Popup & Slider Builder / trunk
Depicter — Popup & Slider Builder vtrunk
4.8.1 trunk 1.0.0 1.1.0 1.1.2 1.1.4 1.1.6 1.1.7 1.1.8 1.1.9 1.2.0 1.3.0 1.3.1 1.3.2 1.3.3 1.3.5 1.3.8 1.5.0 1.5.1 1.5.2 1.5.5 1.6.0 1.6.1 1.6.2 1.7.0 All 76 releases
depicter / app / src / Modules / Divi / includes / DepicterDivi.php

DepicterDivi.php in Depicter — Popup & Slider Builder trunk, at app/src/Modules/Divi/includes/DepicterDivi.php

47 lines 779 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 class Divi_Depicter 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 = 'depicter';
13
14 /**
15 * The extension's WP Plugin name.
16 *
17 * @since 1.0.0
18 *
19 * @var string
20 */
21 public $name = 'divi-depicter';
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_Depicter constructor.
34 *
35 * @param string $name
36 * @param array $args
37 */
38 public function __construct( $name = 'divi-depicter', $args = array() ) {
39 $this->plugin_dir = plugin_dir_path( __FILE__ );
40 $this->plugin_dir_url = plugin_dir_url( $this->plugin_dir );
41
42 parent::__construct( $name, $args );
43 }
44 }
45
46 new Divi_Depicter;
47