Server IP : 15.235.198.142 / Your IP : 216.73.216.190 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ballsack 6.8.0-45-generic #45-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 30 12:02:04 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/yme/wp-content/plugins/elementor/modules/cloud-library/ |
Upload File : |
<?php namespace Elementor\Modules\CloudLibrary; use Elementor\Core\Frontend\RenderModes\Render_Mode_Base; use Elementor\Plugin; use Elementor\Utils; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } class Render_Mode_Preview extends Render_Mode_Base { const ENQUEUE_SCRIPTS_PRIORITY = 1000; const MODE = 'cloud-template-preview'; protected int $template_id; public function __construct( $template_id ) { $this->template_id = $template_id; $this->document = $this->create_document(); parent::__construct( $this->document->get_main_id() ); } public static function get_name() { return self::MODE; } public function prepare_render() { parent::prepare_render(); show_admin_bar( false ); add_filter( 'template_include', [ $this, 'filter_template' ] ); } public function filter_template() { return ELEMENTOR_PATH . 'modules/page-templates/templates/canvas.php'; } public function enqueue_scripts() { $suffix = ( Utils::is_script_debug() || Utils::is_elementor_tests() ) ? '' : '.min'; wp_enqueue_script( 'dom-to-image', ELEMENTOR_ASSETS_URL . "/lib/dom-to-image/js/dom-to-image{$suffix}.js", [], '2.6.0', true ); wp_enqueue_script( 'html2canvas', ELEMENTOR_ASSETS_URL . "/lib/html2canvas/js/html2canvas{$suffix}.js", [], '1.4.1', true ); wp_enqueue_script( 'cloud-library-screenshot', ELEMENTOR_ASSETS_URL . "/js/cloud-library-screenshot{$suffix}.js", [ 'dom-to-image', 'html2canvas' ], ELEMENTOR_VERSION, true ); $config = [ 'selector' => '.elementor-' . $this->document->get_main_id(), 'home_url' => home_url(), 'post_id' => $this->document->get_main_id(), 'template_id' => $this->template_id, ]; wp_add_inline_script( 'cloud-library-screenshot', 'var ElementorScreenshotConfig = ' . wp_json_encode( $config ) . ';' ); } private function create_document() { if ( ! Plugin::$instance->common ) { Plugin::$instance->init_common(); } $document = Plugin::$instance->templates_manager->get_source( 'cloud' )->create_document_for_preview( $this->template_id ); if ( is_wp_error( $document ) ) { wp_die(); } Plugin::$instance->documents->switch_to_document( $document ); return $document; } }