| Server IP : 178.212.43.201 / Your IP : 10.100.0.33 Web Server : Apache/2.4.37 (Oracle Linux Server) OpenSSL/1.1.1k System : Linux spa0007.srv.paxillus.pl 5.4.17-2136.355.3.1.el8uek.x86_64 #3 SMP Sat May 9 17:11:55 PDT 2026 x86_64 User : apache ( 48) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/suzuki/wp-content/plugins/templates-patterns-collection/includes/ |
Upload File : |
<?php
/**
* Handles code for Elementor.
*
* @package templates-patterns-collection
*/
namespace TIOB;
use TIOB\Main;
/**
* Class Editor
*
* @package templates-patterns-collection
*/
class Elementor {
use White_Label_Config;
/**
* Initialize the Admin.
*/
public function init() {
$this->setup_white_label();
if ( $this->is_library_disabled() ) {
return;
}
add_action( 'elementor/editor/before_enqueue_scripts', array( $this, 'register_script' ), 999 );
add_action( 'elementor/editor/before_enqueue_styles', array( $this, 'register_style' ) );
add_action( 'elementor/preview/enqueue_styles', array( $this, 'register_style' ) );
}
/**
* Register editor blocks.
*/
public function register_script() {
$deps = require( TIOB_PATH . 'elementor/build/index.asset.php' );
wp_enqueue_script(
'ti-tpc-elementor',
TIOB_URL . 'elementor/build/index.js',
array_merge( $deps['dependencies'], array( 'elementor-editor', 'lodash', 'wp-api' ) ),
$deps['version'],
true
);
wp_localize_script(
'ti-tpc-elementor',
'tiTpc',
apply_filters(
'ti_tpc_editor_data',
array(
'endpoint' => ( defined( 'TPC_TEMPLATES_CLOUD_ENDPOINT' ) ) ? TPC_TEMPLATES_CLOUD_ENDPOINT : Admin::get_templates_cloud_endpoint(),
'params' => array(
'site_url' => get_site_url(),
'license_id' => apply_filters( 'tiob_license_key', 'free' ),
'type' => 'elementor',
'meta' => Main::get_meta_fields( $post_id = get_the_ID(), $type = 'elementor' ),
),
'canPredefine' => apply_filters( 'ti_tpc_can_predefine', false ),
'postType' => get_post_type(),
'placeholderIndex' => '-1',
'exporter' => array(
'exportLabel' => sprintf(
// translators: %s: templates location.
__( 'Save to %s', 'templates-patterns-collection' ),
'Templates Cloud'
),
'modalLabel' => __( 'Save Templates', 'templates-patterns-collection' ),
'textLabel' => __( 'Template Name', 'templates-patterns-collection' ),
'textPlaceholder' => __( 'Template', 'templates-patterns-collection' ),
'buttonLabel' => __( 'Save', 'templates-patterns-collection' ),
'toggleLabel' => __( 'Automatically sync to the cloud', 'templates-patterns-collection' ),
'templateSaved' => __( 'Template Saved.', 'templates-patterns-collection' ),
'templatePublished' => __( 'Template Published.', 'templates-patterns-collection' ),
'templateUnpublished' => __( 'Template Unpublished.', 'templates-patterns-collection' ),
),
'library' => array(
'libraryButton' => sprintf(
// translators: %s: Templates Cloud
__( 'Import from %s', 'templates-patterns-collection' ),
'Templates Cloud'
),
'templatesCloud' => 'Templates Cloud',
'historyMessage' => sprintf(
// translators: %s: Templates Cloud
__( 'Add Template from %s:', 'templates-patterns-collection' ),
'Templates Cloud'
),
'tabs' => array(
'templates' => __( 'Page Templates', 'templates-patterns-collection' ),
'library' => __( 'My Library', 'templates-patterns-collection' ),
),
'actions' => array(
'sync' => __( 'Sync Library', 'templates-patterns-collection' ),
'save' => sprintf(
// translators: %s: templates location.
__( 'Save to %s', 'templates-patterns-collection' ),
'Templates Cloud'
),
'close' => __( 'Close', 'templates-patterns-collection' ),
'cancel' => __( 'Cancel', 'templates-patterns-collection' ),
'edit' => __( 'Edit', 'templates-patterns-collection' ),
'duplicate' => __( 'Duplicate', 'templates-patterns-collection' ),
'delete' => __( 'Delete', 'templates-patterns-collection' ),
'insert' => __( 'Insert', 'templates-patterns-collection' ),
'back' => __( 'Back to Library', 'templates-patterns-collection' ),
),
'filters' => array(
'sortLabel' => __( 'Sort by', 'templates-patterns-collection' ),
'sortLabels' => array(
'name' => __( 'Name', 'templates-patterns-collection' ),
'date' => __( 'Date', 'templates-patterns-collection' ),
'modified' => __( 'Last Modified', 'templates-patterns-collection' ),
'actions' => __( 'Actions', 'templates-patterns-collection' ),
),
'search' => __( 'Search', 'templates-patterns-collection' ),
'searchLabel' => __( 'Search Templates', 'templates-patterns-collection' ),
),
'export' => array(
'save' => __( 'Save', 'templates-patterns-collection' ),
'title' => sprintf(
// translators: %s: Templates Cloud
__( 'Save your page to %s', 'templates-patterns-collection' ),
'Templates Cloud'
),
'placeholder' => __( 'Enter Template Name', 'templates-patterns-collection' ),
'labelScreenshot' => __( 'Screenshot URL', 'templates-patterns-collection' ),
'labelSlug' => __( 'Site Slug', 'templates-patterns-collection' ),
'publish' => __( 'Publish', 'templates-patterns-collection' ),
'unpublish' => __( 'Unpublish', 'templates-patterns-collection' ),
'defaultTitle' => __( 'Template', 'templates-patterns-collection' ),
),
),
)
)
);
}
/**
* Register editor styles.
*/
public function register_style() {
$deps = require( TIOB_PATH . 'elementor/build/index.asset.php' );
wp_enqueue_style(
'ti-tpc-elementor-styles',
TIOB_URL . 'elementor/build/index.css',
array( 'wp-components' ),
$deps['version']
);
}
}