| 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"> |
| 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 |
</button> |
| 16 |
<# } #> |
| 17 |
<button class="elementor-repeater-row-item-title"></button> |
| 18 |
<# if ( itemActions.duplicate ) { #> |
| 19 |
<button 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 |
</button> |
| 23 |
<# } |
| 24 |
if ( itemActions.remove ) { #> |
| 25 |
<button 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 |
</button> |
| 29 |
<# } #> |
| 30 |
</div> |
| 31 |
<div class="elementor-repeater-row-controls"></div> |
| 32 |
</script> |
| 33 |
|