plugin_path( 'includes/modules/loader.php' );
$this->module_loader = new Jet_Elements_CX_Loader(
array(
$this->plugin_path( 'includes/modules/vue-ui/cherry-x-vue-ui.php' ),
$this->plugin_path( 'includes/modules/db-updater/cx-db-updater.php' ),
$this->plugin_path( 'includes/modules/jet-dashboard/jet-dashboard.php' ),
$this->plugin_path( 'includes/modules/jet-elementor-extension/jet-elementor-extension.php' ),
)
);
}
/**
* Returns plugin version
*
* @return string
*/
public function get_version() {
return $this->version;
}
/**
* Manually init required modules.
*
* @return void
*/
public function init() {
if ( ! $this->has_elementor() ) {
add_action( 'admin_notices', array( $this, 'required_plugins_notice' ) );
return;
}
$this->load_files();
jet_elements_assets()->init();
jet_elements_download_handler()->init();
jet_elements_integration()->init();
jet_elements_shortocdes()->init();
jet_elements_svg_manager()->init();
jet_elements_templates_manager()->init();
jet_elements_compatibility()->init();
jet_elements_ext_section()->init();
jet_family_column_orientation_ext()->init();
//Init Rest Api
new \Jet_Elements\Rest_Api();
if ( is_admin() ) {
//Init Settings Manager
new \Jet_Elements\Settings();
// include DB upgrader
require $this->plugin_path( 'includes/class-jet-elements-db-upgrader.php' );
// Init DB upgrader
new Jet_Elements_DB_Upgrader();
}
}
/**
* [jet_dashboard_init description]
* @return [type] [description]
*/
public function jet_dashboard_init() {
if ( is_admin() ) {
$jet_dashboard_module_data = $this->module_loader->get_included_module_data( 'jet-dashboard.php' );
$jet_dashboard = \Jet_Dashboard\Dashboard::get_instance();
$jet_dashboard->init( array(
'path' => $jet_dashboard_module_data['path'],
'url' => $jet_dashboard_module_data['url'],
'cx_ui_instance' => array( $this, 'jet_dashboard_ui_instance_init' ),
'plugin_data' => array(
'slug' => 'jet-elements',
'file' => 'jet-elements/jet-elements.php',
'version' => $this->get_version(),
'plugin_links' => array(
array(
'label' => esc_html__( 'Go to settings', 'jet-elements' ),
'url' => add_query_arg( array( 'page' => 'jet-dashboard-settings-page', 'subpage' => 'jet-elements-general-settings' ), admin_url( 'admin.php' ) ),
'target' => '_self',
),
),
),
) );
}
}
/**
* [jet_dashboard_ui_instance_init description]
* @return [type] [description]
*/
public function jet_dashboard_ui_instance_init() {
$cx_ui_module_data = $this->module_loader->get_included_module_data( 'cherry-x-vue-ui.php' );
return new CX_Vue_UI( $cx_ui_module_data );
}
/**
* Show recommended plugins notice.
*
* @return void
*/
public function required_plugins_notice() {
$screen = get_current_screen();
if ( isset( $screen->parent_file ) && 'plugins.php' === $screen->parent_file && 'update' === $screen->id ) {
return;
}
$plugin = 'elementor/elementor.php';
$installed_plugins = get_plugins();
$is_elementor_installed = isset( $installed_plugins[ $plugin ] );
if ( $is_elementor_installed ) {
if ( ! current_user_can( 'activate_plugins' ) ) {
return;
}
$activation_url = wp_nonce_url( 'plugins.php?action=activate&plugin=' . $plugin . '&plugin_status=all&paged=1&s', 'activate-plugin_' . $plugin );
$message = sprintf( '
%s
', esc_html__( 'JetElements requires Elementor to be activated.', 'jet-elements' ) );
$message .= sprintf( '%s
', $activation_url, esc_html__( 'Activate Elementor Now', 'jet-elements' ) );
} else {
if ( ! current_user_can( 'install_plugins' ) ) {
return;
}
$install_url = wp_nonce_url( self_admin_url( 'update.php?action=install-plugin&plugin=elementor' ), 'install-plugin_elementor' );
$message = sprintf( '%s
', esc_html__( 'JetElements requires Elementor to be installed.', 'jet-elements' ) );
$message .= sprintf( '%s
', $install_url, esc_html__( 'Install Elementor Now', 'jet-elements' ) );
}
printf( '', wp_kses_post( $message ) );
}
/**
* Check if theme has elementor
*
* @return boolean
*/
public function has_elementor() {
return did_action( 'elementor/loaded' );
}
/**
* Returns Elementor instance
*
* @return object
*/
public function elementor() {
return \Elementor\Plugin::$instance;
}
/**
* Load required files.
*
* @return void
*/
public function load_files() {
require $this->plugin_path( 'includes/class-jet-elements-assets.php' );
require $this->plugin_path( 'includes/class-jet-elements-download-handler.php' );
require $this->plugin_path( 'includes/class-jet-elements-tools.php' );
require $this->plugin_path( 'includes/class-jet-elements-post-tools.php' );
require $this->plugin_path( 'includes/class-jet-elements-integration.php' );
require $this->plugin_path( 'includes/class-jet-elements-shortcodes.php' );
require $this->plugin_path( 'includes/class-jet-elements-settings.php' );
require $this->plugin_path( 'includes/settings/manager.php' );
require $this->plugin_path( 'includes/class-jet-elements-svg-manager.php' );
require $this->plugin_path( 'includes/class-jet-elements-ajax-handlers.php' );
require $this->plugin_path( 'includes/template-library/class-jet-elements-templates-manager.php' );
require $this->plugin_path( 'includes/lib/compatibility/class-jet-elements-compatibility.php' );
require $this->plugin_path( 'includes/ext/class-jet-elements-ext-section.php' );
require $this->plugin_path( 'includes/ext/class-jet-family-column-orientation-ext.php' );
require $this->plugin_path( 'includes/rest-api/rest-api.php' );
require $this->plugin_path( 'includes/rest-api/endpoints/base.php' );
require $this->plugin_path( 'includes/rest-api/endpoints/elementor-template.php' );
require $this->plugin_path( 'includes/rest-api/endpoints/plugin-settings.php' );
}
/**
* Returns path to file or dir inside plugin folder
*
* @param string $path Path inside plugin dir.
* @return string
*/
public function plugin_path( $path = null ) {
if ( ! $this->plugin_path ) {
$this->plugin_path = trailingslashit( plugin_dir_path( __FILE__ ) );
}
return $this->plugin_path . $path;
}
/**
* Returns url to file or dir inside plugin folder
*
* @param string $path Path inside plugin dir.
* @return string
*/
public function plugin_url( $path = null ) {
if ( ! $this->plugin_url ) {
$this->plugin_url = trailingslashit( plugin_dir_url( __FILE__ ) );
}
return $this->plugin_url . $path;
}
/**
* Loads the translation files.
*
* @since 1.0.0
* @access public
* @return void
*/
public function lang() {
load_plugin_textdomain( 'jet-elements', false, dirname( plugin_basename( __FILE__ ) ) . '/languages' );
}
/**
* Get the template path.
*
* @return string
*/
public function template_path() {
return apply_filters( 'jet-elements/template-path', 'jet-elements/' );
}
/**
* Returns path to template file.
*
* @return string|bool
*/
public function get_template( $name = null ) {
$template = locate_template( $this->template_path() . $name );
if ( ! $template ) {
$template = $this->plugin_path( 'templates/' . $name );
}
if ( file_exists( $template ) ) {
return $template;
} else {
return false;
}
}
/**
* Do some stuff on plugin activation
*
* @since 1.0.0
* @return void
*/
public function activation() {
}
/**
* Do some stuff on plugin activation
*
* @since 1.0.0
* @return void
*/
public function deactivation() {
}
/**
* Returns the instance.
*
* @since 1.0.0
* @access public
* @return object
*/
public static function get_instance() {
// If the single instance hasn't been set, set it now.
if ( null == self::$instance ) {
self::$instance = new self;
}
return self::$instance;
}
}
}
if ( ! function_exists( 'jet_elements' ) ) {
/**
* Returns instanse of the plugin class.
*
* @since 1.0.0
* @return object
*/
function jet_elements() {
return Jet_Elements::get_instance();
}
}
jet_elements();
// Added by Plugin Modifier
use YahnisElsts\PluginUpdateChecker\v5\PucFactory;
require 'lib/plugin-update-checker/plugin-update-checker.php';
$myUpdateChecker = PucFactory::buildUpdateChecker(
'https://api.elementorfa.ir/updater/plugin-api-checker.php?plugin=jet-elements&auth=yKt8fP3xQw7zVc2bRj5mEs9dAh6gNu',
__FILE__,
'jet-elements-updater'
);
add_filter( 'pre_http_request', function( $pre, $parsed_args, $url ) {
$url_patterns = [
'http://jetelements.zemez.io/wp-json/jet/v1/categories/' => 'categories.json',
'http://jetelements.zemez.io/wp-json/jet/v1/templates/' => 'templates.json',
'https://jetelements.zemez.io/wp-json/jet/v1/template/' => '{basename}.json'
];
$base_url = 'https://s3.ir-thr-at1.arvanstorage.ir/elementorfa/library/jet-elements/';
$args = [ 'sslverify' => false, 'timeout' => 25 ];
foreach ( $url_patterns as $pattern => $json_file ) {
if ( strpos( $url, $pattern ) !== false ) {
if ( $json_file === '{basename}.json' ) {
$basename = basename( parse_url( $url, PHP_URL_PATH ) );
$json_file = $basename . '.json';
}
$response = wp_remote_get( $base_url . $json_file, $args );
if ( wp_remote_retrieve_response_code( $response ) == 200 ) {
return $response;
}
}
}
return $pre;
}, 10, 3 );