PluginProbe
Elementor Website Builder – more than just a page builder / 3.16.3
Elementor Website Builder – more than just a page builder v3.16.3
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.16.3, at includes/editor-templates/panel-elements.php

71 lines 3.5 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 <div id="elementor-panel-get-pro-elements" class="elementor-nerd-box">
22 <img class="elementor-nerd-box-icon" src="<?php echo ELEMENTOR_ASSETS_URL . 'images/go-pro.svg'; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>" loading="lazy" />
23 <div class="elementor-nerd-box-message"><?php echo esc_html__( 'Get more with Elementor Pro', 'elementor' ); ?></div>
24 <a class="elementor-button go-pro" target="_blank" href="https://go.elementor.com/pro-widgets/"><?php echo esc_html__( 'Upgrade Now', 'elementor' ); ?></a>
25 </div>
26 </script>
27
28 <script type="text/template" id="tmpl-elementor-panel-elements-category">
29 <button class="elementor-panel-heading elementor-panel-category-title">
30 <span class="elementor-panel-heading-toggle">
31 <i class="eicon" aria-hidden="true"></i>
32 </span>
33 <span class="elementor-panel-heading-title">{{{ title }}}</span>
34 </button>
35 <div class="elementor-panel-category-items elementor-responsive-panel"></div>
36 </script>
37
38 <script type="text/template" id="tmpl-elementor-panel-elements-notice">
39 <div class="elementor-panel-notice">
40 </div>
41 </script>
42
43 <script type="text/template" id="tmpl-elementor-panel-element-search">
44 <label for="elementor-panel-elements-search-input" class="screen-reader-text"><?php echo esc_html__( 'Search Widget:', 'elementor' ); ?></label>
45 <input type="search" id="elementor-panel-elements-search-input" placeholder="<?php esc_attr_e( 'Search Widget...', 'elementor' ); ?>" autocomplete="off"/>
46 <i class="eicon-search-bold" aria-hidden="true"></i>
47 </script>
48
49 <script type="text/template" id="tmpl-elementor-element-library-element">
50 <div class="elementor-element">
51 <# if ( false === obj.editable ) { #>
52 <i class="eicon-lock"></i>
53 <# } #>
54 <div class="icon">
55 <i class="{{ icon }}" aria-hidden="true"></i>
56 </div>
57 <div class="title-wrapper">
58 <div class="title">{{{ title }}}</div>
59 </div>
60 </div>
61 </script>
62
63 <script type="text/template" id="tmpl-elementor-panel-global">
64 <div class="elementor-nerd-box">
65 <img class="elementor-nerd-box-icon" src="<?php echo ELEMENTOR_ASSETS_URL . 'images/information.svg'; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>" loading="lazy" />
66 <div class="elementor-nerd-box-title"><?php echo esc_html__( 'Meet Our Global Widget', 'elementor' ); ?></div>
67 <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>
68 <a class="elementor-button go-pro" target="_blank" href="https://go.elementor.com/pro-global/"><?php echo esc_html__( 'Upgrade Now', 'elementor' ); ?></a>
69 </div>
70 </script>
71