Viewing File: /home/maglabs/valv/wp-content/plugins/depicter/app/src/Modules/Divi/includes/DepicterDivi.php
<?php
class Divi_Depicter extends DiviExtension {
/**
* The gettext domain for the extension's translations.
*
* @since 1.0.0
*
* @var string
*/
public $gettext_domain = 'depicter';
/**
* The extension's WP Plugin name.
*
* @since 1.0.0
*
* @var string
*/
public $name = 'divi-depicter';
/**
* The extension's version
*
* @since 1.0.0
*
* @var string
*/
public $version = '1.0.0';
/**
* Divi_Depicter constructor.
*
* @param string $name
* @param array $args
*/
public function __construct( $name = 'divi-depicter', $args = array() ) {
$this->plugin_dir = plugin_dir_path( __FILE__ );
$this->plugin_dir_url = plugin_dir_url( $this->plugin_dir );
parent::__construct( $name, $args );
}
}
new Divi_Depicter;
Back to Directory
File Manager