repeater.php (1180B)
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 esc_html__( '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 esc_html__( '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 esc_html__( 'Remove', 'elementor' ); ?></span> 28 </div> 29 <# } #> 30 </div> 31 <div class="elementor-repeater-row-controls"></div> 32 </script>