Create New Item
×
Item Type
File
Folder
Item Name
×
Search file in folder and subfolders...
File Manager
/
wp-content
/
plugins
/
elementor-pro
/
modules
/
global-widget
/
widgets
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace ElementorPro\Modules\GlobalWidget\Widgets; use Elementor\DB; use Elementor\Widget_Base; use ElementorPro\Base\Base_Widget; use ElementorPro\Plugin; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } class Global_Widget extends Base_Widget { /** * @var Widget_Base */ private $_original_element_instance; private $template_data; /** * @var Widget_Base */ private $original_widget_type; public function __construct( $data = [], $args = null ) { if ( $data ) { $template_data = Plugin::elementor()->templates_manager->get_template_data( [ 'source' => 'local', 'template_id' => $data['templateID'], ] ); if ( is_wp_error( $template_data ) ) { throw new \Exception( $template_data->get_error_message() ); } if ( empty( $template_data['content'] ) ) { throw new \Exception( 'Template content not found.' ); } $original_widget_type = Plugin::elementor()->widgets_manager->get_widget_types( $template_data['content'][0]['widgetType'] ); if ( ! $original_widget_type ) { throw new \Exception( 'Original Widget Type not found.' ); } if ( ! empty( $data['previewSettings'] ) && ( is_preview() || Plugin::elementor()->preview->is_preview_mode() ) ) { $data['settings'] = $data['previewSettings']; } else { $data['settings'] = $template_data['content'][0]['settings']; } $this->template_data = $template_data; $this->original_widget_type = $original_widget_type; } parent::__construct( $data, $args ); } public function show_in_panel() { return false; } public function get_raw_data( $with_html_content = false ) { $raw_data = parent::get_raw_data( $with_html_content ); unset( $raw_data['settings'] ); $raw_data = $this->set_preview_settings( $raw_data ); $raw_data['templateID'] = $this->get_data( 'templateID' ); return $raw_data; } public function render_content() { $this->get_original_element_instance()->render_content(); } public function get_unique_selector() { return '.elementor-global-' . $this->get_data( 'templateID' ); } public function get_name() { return 'global'; } public function get_title() { return __( 'Global', 'elementor-pro' ); } public function get_script_depends() { if ( $this->is_type_instance() ) { return []; } return $this->get_original_element_instance()->get_script_depends(); } public function get_style_depends() { if ( $this->is_type_instance() ) { return []; } return $this->get_original_element_instance()->get_style_depends(); } public function get_controls( $control_id = null ) { if ( $this->is_type_instance() ) { return []; } return $this->get_original_element_instance()->get_controls(); } public function get_original_element_instance() { if ( ! $this->_original_element_instance ) { $this->init_original_element_instance(); } return $this->_original_element_instance; } public function on_export() { return $this->get_template_content(); } public function render_plain_content() { $this->get_original_element_instance()->render_plain_content(); } protected function add_render_attributes() { parent::add_render_attributes(); $skin_type = $this->get_settings( '_skin' ); $original_widget_type = $this->get_original_element_instance()->get_data( 'widgetType' ); $this->set_render_attribute( '_wrapper', 'data-widget_type', $original_widget_type . '.' . ( $skin_type ? $skin_type : 'default' ) ); $this->add_render_attribute( '_wrapper', [ 'class' => [ 'elementor-global-' . $this->get_data( 'templateID' ), 'elementor-widget-' . $original_widget_type, ], ] ); } private function get_template_content() { return $this->template_data['content'][0]; } private function init_original_element_instance() { $widget_class = $this->original_widget_type->get_class_name(); $template_content = $this->get_template_content(); $template_content['id'] = $this->get_id(); $preview_settings = $this->get_data( 'previewSettings' ); if ( ! empty( $preview_settings ) ) { $template_content['settings'] = $preview_settings; } $this->_original_element_instance = new $widget_class( $template_content, $this->original_widget_type->get_default_args() ); } /** * Set Preview Settings * On publish - remove `previewSetting`. * * @param array $raw_data * * @return array. */ private function set_preview_settings( $raw_data ) { // TODO: a better way for detection. $is_publishing = false; /** @var \Elementor\Core\Common\Modules\Ajax\Module $ajax */ $ajax = Plugin::elementor()->common->get_component( 'ajax' ); $ajax_data = $ajax->get_current_action_data(); if ( $ajax_data && 'save_builder' === $ajax_data['action'] && DB::STATUS_PUBLISH === $ajax_data['data']['status'] ) { $is_publishing = true; } if ( $is_publishing ) { unset( $raw_data['previewSettings'] ); } else { $raw_data['previewSettings'] = $this->get_data( 'previewSettings' ); } return $raw_data; } }