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

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

33 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 <div class="elementor-repeater-row-handle-sortable">
13 <i class="eicon-ellipsis-v" aria-hidden="true"></i>
14 <span class="elementor-screen-only"><?php echo __( 'Drag & Drop', 'elementor' ); ?></span>
15 </div>
16 <# } #>
17 <div class="elementor-repeater-row-item-title"></div>
18 <# if ( itemActions.duplicate ) { #>
19 <div class="elementor-repeater-row-tool elementor-repeater-tool-duplicate">
20 <i class="eicon-copy" aria-hidden="true"></i>
21 <span class="elementor-screen-only"><?php echo __( 'Duplicate', 'elementor' ); ?></span>
22 </div>
23 <# }
24 if ( itemActions.remove ) { #>
25 <div class="elementor-repeater-row-tool elementor-repeater-tool-remove">
26 <i class="eicon-close" aria-hidden="true"></i>
27 <span class="elementor-screen-only"><?php echo __( 'Remove', 'elementor' ); ?></span>
28 </div>
29 <# } #>
30 </div>
31 <div class="elementor-repeater-row-controls"></div>
32 </script>
33