| 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 |
<div class="elementor-component-tab elementor-panel-navigation-tab" data-tab="categories"><?php echo esc_html__( 'Elements', 'elementor' ); ?></div> |
| 11 |
<div class="elementor-component-tab elementor-panel-navigation-tab" data-tab="global"><?php echo esc_html__( 'Global', 'elementor' ); ?></div> |
| 12 |
</div> |
| 13 |
<div id="elementor-panel-elements-search-area"></div> |
| 14 |
<div id="elementor-panel-elements-wrapper"></div> |
| 15 |
</script> |
| 16 |
|
| 17 |
<script type="text/template" id="tmpl-elementor-panel-categories"> |
| 18 |
<div id="elementor-panel-categories"></div> |
| 19 |
|
| 20 |
<div id="elementor-panel-get-pro-elements" class="elementor-nerd-box"> |
| 21 |
<img class="elementor-nerd-box-icon" src="<?php echo ELEMENTOR_ASSETS_URL . 'images/go-pro.svg'; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>" /> |
| 22 |
<div class="elementor-nerd-box-message"><?php echo esc_html__( 'Get more with Elementor Pro', 'elementor' ); ?></div> |
| 23 |
<a class="elementor-button elementor-button-default elementor-nerd-box-link" target="_blank" href="https://go.elementor.com/pro-widgets/"><?php echo esc_html__( 'Upgrade Now', 'elementor' ); ?></a> |
| 24 |
</div> |
| 25 |
</script> |
| 26 |
|
| 27 |
<script type="text/template" id="tmpl-elementor-panel-elements-category"> |
| 28 |
<div class="elementor-panel-category-title">{{{ title }}}</div> |
| 29 |
<div class="elementor-panel-category-items elementor-responsive-panel"></div> |
| 30 |
</script> |
| 31 |
|
| 32 |
<script type="text/template" id="tmpl-elementor-panel-elements-category-empty"> |
| 33 |
<div class="elementor-panel-category-items-empty elementor-panel-alert elementor-panel-alert-info"> |
| 34 |
<?php echo esc_html__( 'For easy access, favorite the widgets you use most often by right clicking > Add to Favorites.', 'elementor' ); ?> |
| 35 |
</div> |
| 36 |
</script> |
| 37 |
|
| 38 |
<script type="text/template" id="tmpl-elementor-panel-element-search"> |
| 39 |
<label for="elementor-panel-elements-search-input" class="screen-reader-text"><?php echo esc_html__( 'Search Widget:', 'elementor' ); ?></label> |
| 40 |
<input type="search" id="elementor-panel-elements-search-input" placeholder="<?php esc_attr_e( 'Search Widget...', 'elementor' ); ?>" autocomplete="off"/> |
| 41 |
<i class="eicon-search-bold" aria-hidden="true"></i> |
| 42 |
</script> |
| 43 |
|
| 44 |
<script type="text/template" id="tmpl-elementor-element-library-element"> |
| 45 |
<div class="elementor-element"> |
| 46 |
<# if ( false === obj.editable ) { #> |
| 47 |
<i class="eicon-lock"></i> |
| 48 |
<# } #> |
| 49 |
<div class="icon"> |
| 50 |
<i class="{{ icon }}" aria-hidden="true"></i> |
| 51 |
</div> |
| 52 |
<div class="elementor-element-title-wrapper"> |
| 53 |
<div class="title">{{{ title }}}</div> |
| 54 |
</div> |
| 55 |
</div> |
| 56 |
</script> |
| 57 |
|
| 58 |
<script type="text/template" id="tmpl-elementor-panel-global"> |
| 59 |
<div class="elementor-nerd-box"> |
| 60 |
<img class="elementor-nerd-box-icon" src="<?php echo ELEMENTOR_ASSETS_URL . 'images/information.svg'; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>" /> |
| 61 |
<div class="elementor-nerd-box-title"><?php echo esc_html__( 'Meet Our Global Widget', 'elementor' ); ?></div> |
| 62 |
<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> |
| 63 |
<a class="elementor-button elementor-button-default elementor-nerd-box-link" target="_blank" href="https://go.elementor.com/pro-global/"><?php echo esc_html__( 'Upgrade Now', 'elementor' ); ?></a> |
| 64 |
</div> |
| 65 |
</script> |
| 66 |
|