Viewing File: /home/eticmes/www/wp-content/plugins/formidable/classes/views/frm-fields/back-end/field-options.php
<?php
if ( ! defined( 'ABSPATH' ) ) {
die( 'You are not allowed to call this page directly.' );
}
$field_option_count = is_array( $args['field']['options'] ) ? count( $args['field']['options'] ) : 0;
?>
<span class="frm-bulk-edit-link <?php echo $should_hide_bulk_edit ? 'frm_hidden' : ''; ?>">
<a href="#" title="<?php echo esc_attr( $option_title ); ?>" class="frm-h-stack frm-justify-end frm-bulk-edit-link">
<span>
<?php
FrmAppHelper::icon_by_class(
'frmfont frm_simple_pencil_icon frm_svg24',
array(
'echo' => true,
'aria-label' => __( 'Bulk Edit', 'formidable' ),
)
);
?>
</span>
<span><?php echo esc_html( $this->get_bulk_edit_string() ); ?></span>
</a>
</span>
<?php do_action( 'frm_add_multiple_opts_labels', $args['field'] ); ?>
<span class="frm-hr frm-mb-sm"></span>
<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'] ); ?>">
<?php $this->show_single_option( $args ); ?>
</ul>
Back to Directory
File Manager