PluginProbe
Elementor Website Builder – more than just a page builder / 3.17.1
Elementor Website Builder – more than just a page builder v3.17.1
4.3.0-beta2 4.3.0-beta1 4.2.4 4.2.3 4.2.2 4.2.1 4.2.0 4.1.5 4.2.0-beta2 4.2.0-dev2 4.2.0-beta1 4.1.4 4.1.3 4.1.2 4.1.1 4.1.0 4.1.0-beta3 4.1.0-dev3 4.0.9 4.1.0-beta2 4.1.0-dev2 4.0.8 4.1.0-beta1 4.1.0-dev1 4.0.7 All 451 releases
elementor / includes / editor-templates / panel-elements.php

panel-elements.php in Elementor Website Builder – more than just a page builder 3.17.1, at includes/editor-templates/panel-elements.php

79 lines 3.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 namespace Elementor;
3
4 if ( ! defined( 'ABSPATH' ) ) {
5 exit; // Exit if accessed directly.
6 }
7 ?>
8 <script type="text/template" id="tmpl-elementor-panel-elements">
9 <div id="elementor-panel-elements-navigation" class="elementor-panel-navigation">
10 <button class="elementor-component-tab elementor-panel-navigation-tab" data-tab="categories"><?php echo esc_html__( 'Elements', 'elementor' ); ?></button>
11 <button class="elementor-component-tab elementor-panel-navigation-tab" data-tab="global"><?php echo esc_html__( 'Globals', 'elementor' ); ?></button>
12 </div>
13 <div id="elementor-panel-elements-search-area"></div>
14 <div id="elementor-panel-elements-notice-area"></div>
15 <div id="elementor-panel-elements-wrapper"></div>
16 </script>
17
18 <script type="text/template" id="tmpl-elementor-panel-categories">
19 <div id="elementor-panel-categories"></div>
20
21 <?php
22 $get_pro_details = apply_filters( 'elementor/editor/panel/get_pro_details', [
23 'link' => 'https://go.elementor.com/pro-widgets/',
24 'message' => __( 'Get more with Elementor Pro', 'elementor' ),
25 'button_text' => __( 'Upgrade Now', 'elementor' ),
26 ] );
27 ?>
28
29 <div id="elementor-panel-get-pro-elements" class="elementor-nerd-box">
30 <img class="elementor-nerd-box-icon" src="<?php echo ELEMENTOR_ASSETS_URL . 'images/go-pro.svg'; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>" loading="lazy" />
31 <div class="elementor-nerd-box-message"><?php echo esc_html( $get_pro_details['message'] ); ?></div>
32 <a class="elementor-button go-pro" target="_blank" href="<?php echo esc_url( $get_pro_details['link'] ); ?>"><?php echo esc_html( $get_pro_details['button_text'] ); ?></a>
33 </div>
34 </script>
35
36 <script type="text/template" id="tmpl-elementor-panel-elements-category">
37 <button class="elementor-panel-heading elementor-panel-category-title">
38 <span class="elementor-panel-heading-toggle">
39 <i class="eicon" aria-hidden="true"></i>
40 </span>
41 <span class="elementor-panel-heading-title">{{{ title }}}</span>
42 </button>
43 <div class="elementor-panel-category-items elementor-responsive-panel"></div>
44 </script>
45
46 <script type="text/template" id="tmpl-elementor-panel-elements-notice">
47 <div class="elementor-panel-notice">
48 </div>
49 </script>
50
51 <script type="text/template" id="tmpl-elementor-panel-element-search">
52 <label for="elementor-panel-elements-search-input" class="screen-reader-text"><?php echo esc_html__( 'Search Widget:', 'elementor' ); ?></label>
53 <input type="search" id="elementor-panel-elements-search-input" placeholder="<?php esc_attr_e( 'Search Widget...', 'elementor' ); ?>" autocomplete="off"/>
54 <i class="eicon-search-bold" aria-hidden="true"></i>
55 </script>
56
57 <script type="text/template" id="tmpl-elementor-element-library-element">
58 <div class="elementor-element">
59 <# if ( false === obj.editable ) { #>
60 <i class="eicon-lock"></i>
61 <# } #>
62 <div class="icon">
63 <i class="{{ icon }}" aria-hidden="true"></i>
64 </div>
65 <div class="title-wrapper">
66 <div class="title">{{{ title }}}</div>
67 </div>
68 </div>
69 </script>
70
71 <script type="text/template" id="tmpl-elementor-panel-global">
72 <div class="elementor-nerd-box">
73 <img class="elementor-nerd-box-icon" src="<?php echo ELEMENTOR_ASSETS_URL . 'images/information.svg'; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>" loading="lazy" />
74 <div class="elementor-nerd-box-title"><?php echo esc_html__( 'Meet Our Global Widget', 'elementor' ); ?></div>
75 <div class="elementor-nerd-box-message"><?php echo esc_html__( 'With this feature, you can save a widget as global, then add it to multiple areas. All areas will be editable from one single place.', 'elementor' ); ?></div>
76 <a class="elementor-button go-pro" target="_blank" href="https://go.elementor.com/pro-global/"><?php echo esc_html__( 'Upgrade Now', 'elementor' ); ?></a>
77 </div>
78 </script>
79