| 1 |
<?php |
| 2 |
if ( ! defined( 'ABSPATH' ) ) { |
| 3 |
die( 'You are not allowed to call this page directly.' ); |
| 4 |
} |
| 5 |
|
| 6 |
$field_option_count = is_array( $args['field']['options'] ) ? count( $args['field']['options'] ) : 0; |
| 7 |
?> |
| 8 |
<span class="frm-bulk-edit-link <?php echo empty( FrmField::get_option( $args['field'], 'image_options' ) ) ? '' : 'frm_hidden'; ?> "> |
| 9 |
<a href="#" title="<?php echo esc_attr( $option_title ); ?>" class="frm-bulk-edit-link"> |
| 10 |
<?php echo esc_html( $this->get_bulk_edit_string() ); ?> |
| 11 |
</a> |
| 12 |
</span> |
| 13 |
|
| 14 |
<?php do_action( 'frm_add_multiple_opts_labels', $args['field'] ); ?> |
| 15 |
|
| 16 |
<ul id="frm_field_<?php echo esc_attr( $args['field']['id'] ); ?>_opts" class="frm_sortable_field_opts frm_clear<?php echo ( $field_option_count > 10 ) ? ' frm_field_opts_list' : ''; ?> frm_add_remove" data-key="<?php echo esc_attr( $args['field']['field_key'] ); ?>"> |
| 17 |
<?php $this->show_single_option( $args ); ?> |
| 18 |
</ul> |
| 19 |
|
| 20 |
<div class="frm6 frm_form_field frm_add_opt_container"> |
| 21 |
<a href="javascript:void(0);" data-opttype="single" class="frm_cb_button frm-small-add frm_add_opt frm6 frm_form_field" id="frm_add_opt_<?php echo esc_attr( $args['field']['id'] ); ?>"> |
| 22 |
<span class="frm_icon_font frm_add_tag"></span> |
| 23 |
<?php echo esc_html( $this->get_add_option_string() ); ?> |
| 24 |
</a> |
| 25 |
</div> |
| 26 |
|