PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.22
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.22
6.35 6.34 6.33.1 6.33 6.32.1 6.32 6.31 6.25 6.25.1 6.26 6.26.1 6.27 6.28 6.29 6.3 6.3.1 6.3.2 6.30 6.4 6.4.1 6.4.2 6.5 6.5.1 6.5.2 6.5.3 All 141 releases
formidable / classes / views / frm-fields / back-end / field-options.php

field-options.php in Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More 6.22, at classes/views/frm-fields/back-end/field-options.php

28 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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 $should_hide_bulk_edit ? '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 <?php
23 FrmAppHelper::icon_by_class( 'frm_icon_font frm_plus1_icon frm_add_tag frm_svg13' );
24 echo esc_html( $this->get_add_option_string() );
25 ?>
26 </a>
27 </div>
28