PluginProbe
Elementor Website Builder – more than just a page builder / 3.32.4
Elementor Website Builder – more than just a page builder v3.32.4
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 / repeater.php

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

30 lines 1.1 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 ?>
9 <script type="text/template" id="tmpl-elementor-repeater-row">
10 <div class="elementor-repeater-row-tools">
11 <# if ( itemActions.drag_n_drop ) { #>
12 <button class="elementor-repeater-row-handle-sortable" aria-label="<?php echo esc_attr__( 'Drag & Drop', 'elementor' ); ?>">
13 <i class="eicon-ellipsis-v" aria-hidden="true"></i>
14 </button>
15 <# } #>
16 <button class="elementor-repeater-row-item-title"></button>
17 <# if ( itemActions.duplicate ) { #>
18 <button class="elementor-repeater-row-tool elementor-repeater-tool-duplicate" aria-label="<?php echo esc_attr__( 'Duplicate', 'elementor' ); ?>">
19 <i class="eicon-copy" aria-hidden="true"></i>
20 </button>
21 <# }
22 if ( itemActions.remove ) { #>
23 <button class="elementor-repeater-row-tool elementor-repeater-tool-remove" aria-label="<?php echo esc_attr__( 'Remove', 'elementor' ); ?>">
24 <i class="eicon-close" aria-hidden="true"></i>
25 </button>
26 <# } #>
27 </div>
28 <div class="elementor-repeater-row-controls"></div>
29 </script>
30