editor-wrapper.php
8 months ago
global.php
11 months ago
hotkeys.php
2 months ago
library-layout.php
2 months ago
navigator.php
11 months ago
panel-elements.php
2 weeks ago
panel.php
8 months ago
repeater.php
1 year ago
responsive-bar.php
1 year ago
templates.php
2 months ago
repeater.php
30 lines
| 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 |