field-controls.php
1 year ago
field-header.php
1 year ago
field-label.php
1 week ago
field-name.php
1 year ago
field-text.php
1 year ago
field-type.php
1 year ago
field-controls.php
13 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Controls |
| 4 | */ |
| 5 | $is_core = ( isset( $field['core'] ) && $field['core'] ); |
| 6 | ?> |
| 7 | <div class="controls"> |
| 8 | <?php if ( $adding || ! $is_core ) : ?> |
| 9 | <span><a href="#" class="delete-field"><?php esc_html_e( 'Delete', 'strong-testimonials' ); ?></a></span> |
| 10 | <?php endif; ?> |
| 11 | <span class="close-field"><a href="#"><?php echo esc_html_x( 'Close', 'verb', 'strong-testimonials' ); ?></a></span> |
| 12 | </div> |
| 13 |