@@ -1,7 +1,7 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | 3 | if ( ! $item_ids ) { |
4 | - return; |
|
4 | + return; |
|
5 | 5 | } |
6 | 6 | |
7 | 7 | // fetch 20 posts at a time rather than loading the entire table into memory |
@@ -45,6 +45,6 @@ discard block |
||
45 | 45 | <?php } ?> |
46 | 46 | </form> |
47 | 47 | <?php |
48 | - unset( $fields ); |
|
48 | + unset( $fields ); |
|
49 | 49 | } |
50 | 50 | } |
@@ -13,16 +13,16 @@ discard block |
||
13 | 13 | ?> |
14 | 14 | <form> |
15 | 15 | <id><?php echo absint( $form->id ) ?></id> |
16 | - <form_key><?php echo FrmXMLHelper::cdata($form->form_key) ?></form_key> |
|
17 | - <name><?php echo FrmXMLHelper::cdata($form->name) ?></name> |
|
18 | - <description><?php echo FrmXMLHelper::cdata($form->description) ?></description> |
|
16 | + <form_key><?php echo FrmXMLHelper::cdata( $form->form_key ) ?></form_key> |
|
17 | + <name><?php echo FrmXMLHelper::cdata( $form->name ) ?></name> |
|
18 | + <description><?php echo FrmXMLHelper::cdata( $form->description ) ?></description> |
|
19 | 19 | <created_at><?php echo esc_html( $form->created_at ) ?></created_at> |
20 | 20 | <logged_in><?php echo esc_html( $form->logged_in ) ?></logged_in> |
21 | 21 | <is_template><?php echo esc_html( $form->is_template ) ?></is_template> |
22 | 22 | <default_template><?php echo esc_html( $form->default_template ) ?></default_template> |
23 | 23 | <editable><?php echo esc_html( $form->editable ) ?></editable> |
24 | - <options><?php echo FrmXMLHelper::prepare_form_options_for_export($form->options) ?></options> |
|
25 | - <status><?php echo FrmXMLHelper::cdata($form->status) ?></status> |
|
24 | + <options><?php echo FrmXMLHelper::prepare_form_options_for_export( $form->options ) ?></options> |
|
25 | + <status><?php echo FrmXMLHelper::cdata( $form->status ) ?></status> |
|
26 | 26 | <parent_form_id><?php echo esc_html( $form->parent_form_id ) ?></parent_form_id> |
27 | 27 | <?php |
28 | 28 | |
@@ -31,16 +31,16 @@ discard block |
||
31 | 31 | foreach ( $fields as $field ) { ?> |
32 | 32 | <field> |
33 | 33 | <id><?php echo absint( $field->id ) ?></id> |
34 | - <field_key><?php echo FrmXMLHelper::cdata($field->field_key) ?></field_key> |
|
35 | - <name><?php echo FrmXMLHelper::cdata($field->name) ?></name> |
|
36 | - <description><?php echo FrmXMLHelper::cdata($field->description) ?></description> |
|
37 | - <type><?php echo FrmXMLHelper::cdata($field->type) ?></type> |
|
38 | - <default_value><?php echo FrmXMLHelper::cdata($field->default_value) ?></default_value> |
|
34 | + <field_key><?php echo FrmXMLHelper::cdata( $field->field_key ) ?></field_key> |
|
35 | + <name><?php echo FrmXMLHelper::cdata( $field->name ) ?></name> |
|
36 | + <description><?php echo FrmXMLHelper::cdata( $field->description ) ?></description> |
|
37 | + <type><?php echo FrmXMLHelper::cdata( $field->type ) ?></type> |
|
38 | + <default_value><?php echo FrmXMLHelper::cdata( $field->default_value ) ?></default_value> |
|
39 | 39 | <field_order><?php echo absint( $field->field_order ) ?></field_order> |
40 | 40 | <form_id><?php echo absint( $field->form_id ) ?></form_id> |
41 | 41 | <required><?php echo absint( $field->required ) ?></required> |
42 | - <options><?php echo FrmXMLHelper::cdata($field->options) ?></options> |
|
43 | - <field_options><?php echo FrmXMLHelper::cdata($field->field_options) ?></field_options> |
|
42 | + <options><?php echo FrmXMLHelper::cdata( $field->options ) ?></options> |
|
43 | + <field_options><?php echo FrmXMLHelper::cdata( $field->field_options ) ?></field_options> |
|
44 | 44 | </field> |
45 | 45 | <?php } ?> |
46 | 46 | </form> |
@@ -2,7 +2,7 @@ |
||
2 | 2 | |
3 | 3 | // 2.0 |
4 | 4 | if ( ! isset($frm_vars['pro_is_installed']) ) { |
5 | - $frm_vars['pro_is_installed'] = false; |
|
5 | + $frm_vars['pro_is_installed'] = false; |
|
6 | 6 | } |
7 | 7 | |
8 | 8 | // Instansiate Models |
@@ -1,7 +1,7 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | 3 | // 2.0 |
4 | -if ( ! isset($frm_vars['pro_is_installed']) ) { |
|
4 | +if ( ! isset( $frm_vars['pro_is_installed'] ) ) { |
|
5 | 5 | $frm_vars['pro_is_installed'] = false; |
6 | 6 | } |
7 | 7 |
@@ -375,6 +375,9 @@ |
||
375 | 375 | $reset_fields = true; |
376 | 376 | } |
377 | 377 | |
378 | + /** |
|
379 | + * @return string |
|
380 | + */ |
|
378 | 381 | public static function replace_shortcodes( $html, $form, $title = false, $description = false, $values = array() ) { |
379 | 382 | foreach ( array( 'form_name' => $title, 'form_description' => $description, 'entry_key' => true ) as $code => $show ) { |
380 | 383 | if ( $code == 'form_name' ) { |
@@ -19,38 +19,38 @@ discard block |
||
19 | 19 | |
20 | 20 | public static function get_direct_link( $key, $form = false ) { |
21 | 21 | $target_url = esc_url( admin_url( 'admin-ajax.php?action=frm_forms_preview&form=' . $key ) ); |
22 | - $target_url = apply_filters('frm_direct_link', $target_url, $key, $form); |
|
23 | - |
|
24 | - return $target_url; |
|
25 | - } |
|
26 | - |
|
27 | - public static function forms_dropdown( $field_name, $field_value = '', $args = array() ) { |
|
28 | - $defaults = array( |
|
29 | - 'blank' => true, |
|
30 | - 'field_id' => false, |
|
31 | - 'onchange' => false, |
|
32 | - 'exclude' => false, |
|
33 | - 'class' => '', |
|
22 | + $target_url = apply_filters('frm_direct_link', $target_url, $key, $form); |
|
23 | + |
|
24 | + return $target_url; |
|
25 | + } |
|
26 | + |
|
27 | + public static function forms_dropdown( $field_name, $field_value = '', $args = array() ) { |
|
28 | + $defaults = array( |
|
29 | + 'blank' => true, |
|
30 | + 'field_id' => false, |
|
31 | + 'onchange' => false, |
|
32 | + 'exclude' => false, |
|
33 | + 'class' => '', |
|
34 | 34 | 'inc_children' => 'exclude', |
35 | - ); |
|
36 | - $args = wp_parse_args( $args, $defaults ); |
|
35 | + ); |
|
36 | + $args = wp_parse_args( $args, $defaults ); |
|
37 | 37 | |
38 | - if ( ! $args['field_id'] ) { |
|
39 | - $args['field_id'] = $field_name; |
|
40 | - } |
|
38 | + if ( ! $args['field_id'] ) { |
|
39 | + $args['field_id'] = $field_name; |
|
40 | + } |
|
41 | 41 | |
42 | 42 | $query = array(); |
43 | - if ( $args['exclude'] ) { |
|
43 | + if ( $args['exclude'] ) { |
|
44 | 44 | $query['id !'] = $args['exclude']; |
45 | - } |
|
45 | + } |
|
46 | 46 | |
47 | - $where = apply_filters('frm_forms_dropdown', $query, $field_name); |
|
47 | + $where = apply_filters('frm_forms_dropdown', $query, $field_name); |
|
48 | 48 | $forms = FrmForm::get_published_forms( $where, 999, $args['inc_children'] ); |
49 | 49 | $add_html = array(); |
50 | 50 | self::add_html_attr( $args['onchange'], 'onchange', $add_html ); |
51 | 51 | self::add_html_attr( $args['class'], 'class', $add_html ); |
52 | 52 | |
53 | - ?> |
|
53 | + ?> |
|
54 | 54 | <select name="<?php echo esc_attr( $field_name ); ?>" id="<?php echo esc_attr( $args['field_id'] ) ?>" <?php echo implode( ' ', $add_html ); ?>> |
55 | 55 | <?php if ( $args['blank'] ) { ?> |
56 | 56 | <option value=""><?php echo ( $args['blank'] == 1 ) ? ' ' : '- ' . esc_attr( $args['blank'] ) . ' -'; ?></option> |
@@ -62,7 +62,7 @@ discard block |
||
62 | 62 | <?php } ?> |
63 | 63 | </select> |
64 | 64 | <?php |
65 | - } |
|
65 | + } |
|
66 | 66 | |
67 | 67 | /** |
68 | 68 | * @param string $class |
@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | } |
78 | 78 | } |
79 | 79 | |
80 | - public static function form_switcher() { |
|
80 | + public static function form_switcher() { |
|
81 | 81 | $where = apply_filters( 'frm_forms_dropdown', array(), '' ); |
82 | 82 | $forms = FrmForm::get_published_forms( $where ); |
83 | 83 | |
@@ -86,32 +86,32 @@ discard block |
||
86 | 86 | unset( $args['form'] ); |
87 | 87 | } else if ( isset( $_GET['form']) && ! isset( $_GET['id'] ) ) { |
88 | 88 | unset( $args['id'] ); |
89 | - } |
|
89 | + } |
|
90 | 90 | |
91 | 91 | $frm_action = FrmAppHelper::simple_get( 'frm_action', 'sanitize_title' ); |
92 | 92 | if ( FrmAppHelper::is_admin_page( 'formidable-entries' ) && in_array( $frm_action, array( 'edit', 'show', 'destroy_all' ) ) ) { |
93 | - $args['frm_action'] = 'list'; |
|
94 | - $args['form'] = 0; |
|
93 | + $args['frm_action'] = 'list'; |
|
94 | + $args['form'] = 0; |
|
95 | 95 | } else if ( FrmAppHelper::is_admin_page('formidable' ) && in_array( $frm_action, array( 'new', 'duplicate' ) ) ) { |
96 | - $args['frm_action'] = 'edit'; |
|
96 | + $args['frm_action'] = 'edit'; |
|
97 | 97 | } else if ( isset( $_GET['post'] ) ) { |
98 | - $args['form'] = 0; |
|
99 | - $base = admin_url('edit.php?post_type=frm_display'); |
|
100 | - } |
|
98 | + $args['form'] = 0; |
|
99 | + $base = admin_url('edit.php?post_type=frm_display'); |
|
100 | + } |
|
101 | 101 | |
102 | - ?> |
|
102 | + ?> |
|
103 | 103 | <li class="dropdown last" id="frm_bs_dropdown"> |
104 | 104 | <a href="#" id="frm-navbarDrop" class="frm-dropdown-toggle" data-toggle="dropdown"><?php _e( 'Switch Form', 'formidable' ) ?> <b class="caret"></b></a> |
105 | 105 | <ul class="frm-dropdown-menu frm-on-top" role="menu" aria-labelledby="frm-navbarDrop"> |
106 | 106 | <?php |
107 | 107 | foreach ( $forms as $form ) { |
108 | 108 | if ( isset( $args['id'] ) ) { |
109 | - $args['id'] = $form->id; |
|
109 | + $args['id'] = $form->id; |
|
110 | 110 | } |
111 | - if ( isset( $args['form'] ) ) { |
|
112 | - $args['form'] = $form->id; |
|
111 | + if ( isset( $args['form'] ) ) { |
|
112 | + $args['form'] = $form->id; |
|
113 | 113 | } |
114 | - ?> |
|
114 | + ?> |
|
115 | 115 | <li><a href="<?php echo esc_url( isset( $base ) ? add_query_arg( $args, $base ) : add_query_arg( $args ) ); ?>" tabindex="-1"><?php echo esc_html( empty( $form->name ) ? __( '(no title)') : FrmAppHelper::truncate( $form->name, 60 ) ); ?></a></li> |
116 | 116 | <?php |
117 | 117 | unset( $form ); |
@@ -119,12 +119,12 @@ discard block |
||
119 | 119 | </ul> |
120 | 120 | </li> |
121 | 121 | <?php |
122 | - } |
|
122 | + } |
|
123 | 123 | |
124 | 124 | public static function get_sortable_classes( $col, $sort_col, $sort_dir ) { |
125 | - echo ($sort_col == $col) ? 'sorted' : 'sortable'; |
|
126 | - echo ($sort_col == $col && $sort_dir == 'desc') ? ' asc' : ' desc'; |
|
127 | - } |
|
125 | + echo ($sort_col == $col) ? 'sorted' : 'sortable'; |
|
126 | + echo ($sort_col == $col && $sort_dir == 'desc') ? ' asc' : ' desc'; |
|
127 | + } |
|
128 | 128 | |
129 | 129 | /** |
130 | 130 | * Get the invalid form error message |
@@ -148,104 +148,104 @@ discard block |
||
148 | 148 | return $message; |
149 | 149 | } |
150 | 150 | |
151 | - /** |
|
152 | - * Used when a form is created |
|
153 | - */ |
|
154 | - public static function setup_new_vars( $values = array() ) { |
|
155 | - global $wpdb; |
|
151 | + /** |
|
152 | + * Used when a form is created |
|
153 | + */ |
|
154 | + public static function setup_new_vars( $values = array() ) { |
|
155 | + global $wpdb; |
|
156 | 156 | |
157 | - if ( ! empty( $values ) ) { |
|
158 | - $post_values = $values; |
|
159 | - } else { |
|
160 | - $values = array(); |
|
161 | - $post_values = isset($_POST) ? $_POST : array(); |
|
162 | - } |
|
157 | + if ( ! empty( $values ) ) { |
|
158 | + $post_values = $values; |
|
159 | + } else { |
|
160 | + $values = array(); |
|
161 | + $post_values = isset($_POST) ? $_POST : array(); |
|
162 | + } |
|
163 | 163 | |
164 | 164 | foreach ( array( 'name' => '', 'description' => '' ) as $var => $default ) { |
165 | 165 | if ( ! isset( $values[ $var ] ) ) { |
166 | 166 | $values[ $var ] = FrmAppHelper::get_param( $var, $default ); |
167 | - } |
|
168 | - } |
|
167 | + } |
|
168 | + } |
|
169 | 169 | |
170 | - $values['description'] = FrmAppHelper::use_wpautop($values['description']); |
|
170 | + $values['description'] = FrmAppHelper::use_wpautop($values['description']); |
|
171 | 171 | |
172 | 172 | foreach ( array( 'form_id' => '', 'logged_in' => '', 'editable' => '', 'default_template' => 0, 'is_template' => 0, 'status' => 'draft', 'parent_form_id' => 0 ) as $var => $default ) { |
173 | - if ( ! isset( $values[ $var ] ) ) { |
|
173 | + if ( ! isset( $values[ $var ] ) ) { |
|
174 | 174 | $values[ $var ] = FrmAppHelper::get_param( $var, $default ); |
175 | - } |
|
176 | - } |
|
175 | + } |
|
176 | + } |
|
177 | 177 | |
178 | - if ( ! isset( $values['form_key'] ) ) { |
|
178 | + if ( ! isset( $values['form_key'] ) ) { |
|
179 | 179 | $values['form_key'] = ( $post_values && isset( $post_values['form_key'] ) ) ? $post_values['form_key'] : FrmAppHelper::get_unique_key( '', $wpdb->prefix . 'frm_forms', 'form_key' ); |
180 | - } |
|
180 | + } |
|
181 | 181 | |
182 | 182 | $values = self::fill_default_opts( $values, false, $post_values ); |
183 | 183 | $values['custom_style'] = FrmAppHelper::custom_style_value( $post_values ); |
184 | 184 | |
185 | - return apply_filters('frm_setup_new_form_vars', $values); |
|
186 | - } |
|
185 | + return apply_filters('frm_setup_new_form_vars', $values); |
|
186 | + } |
|
187 | 187 | |
188 | - /** |
|
189 | - * Used when editing a form |
|
190 | - */ |
|
191 | - public static function setup_edit_vars( $values, $record, $post_values = array() ) { |
|
188 | + /** |
|
189 | + * Used when editing a form |
|
190 | + */ |
|
191 | + public static function setup_edit_vars( $values, $record, $post_values = array() ) { |
|
192 | 192 | if ( empty( $post_values ) ) { |
193 | 193 | $post_values = stripslashes_deep( $_POST ); |
194 | 194 | } |
195 | 195 | |
196 | - $values['form_key'] = isset($post_values['form_key']) ? $post_values['form_key'] : $record->form_key; |
|
197 | - $values['default_template'] = isset($post_values['default_template']) ? $post_values['default_template'] : $record->default_template; |
|
198 | - $values['is_template'] = isset($post_values['is_template']) ? $post_values['is_template'] : $record->is_template; |
|
199 | - $values['status'] = $record->status; |
|
196 | + $values['form_key'] = isset($post_values['form_key']) ? $post_values['form_key'] : $record->form_key; |
|
197 | + $values['default_template'] = isset($post_values['default_template']) ? $post_values['default_template'] : $record->default_template; |
|
198 | + $values['is_template'] = isset($post_values['is_template']) ? $post_values['is_template'] : $record->is_template; |
|
199 | + $values['status'] = $record->status; |
|
200 | 200 | |
201 | - $values = self::fill_default_opts($values, $record, $post_values); |
|
201 | + $values = self::fill_default_opts($values, $record, $post_values); |
|
202 | 202 | |
203 | - return apply_filters('frm_setup_edit_form_vars', $values); |
|
204 | - } |
|
203 | + return apply_filters('frm_setup_edit_form_vars', $values); |
|
204 | + } |
|
205 | 205 | |
206 | 206 | public static function fill_default_opts( $values, $record, $post_values ) { |
207 | 207 | |
208 | - $defaults = self::get_default_opts(); |
|
208 | + $defaults = self::get_default_opts(); |
|
209 | 209 | foreach ( $defaults as $var => $default ) { |
210 | - if ( is_array($default) ) { |
|
211 | - if ( ! isset( $values[ $var ] ) ) { |
|
210 | + if ( is_array($default) ) { |
|
211 | + if ( ! isset( $values[ $var ] ) ) { |
|
212 | 212 | $values[ $var ] = ( $record && isset( $record->options[ $var ] ) ) ? $record->options[ $var ] : array(); |
213 | - } |
|
213 | + } |
|
214 | 214 | |
215 | - foreach ( $default as $k => $v ) { |
|
215 | + foreach ( $default as $k => $v ) { |
|
216 | 216 | $values[ $var ][ $k ] = ( $post_values && isset( $post_values[ $var ][ $k ] ) ) ? $post_values[ $var ][ $k ] : ( ( $record && isset( $record->options[ $var ] ) && isset( $record->options[ $var ][ $k ] ) ) ? $record->options[ $var ][ $k ] : $v); |
217 | 217 | |
218 | - if ( is_array( $v ) ) { |
|
219 | - foreach ( $v as $k1 => $v1 ) { |
|
218 | + if ( is_array( $v ) ) { |
|
219 | + foreach ( $v as $k1 => $v1 ) { |
|
220 | 220 | $values[ $var ][ $k ][ $k1 ] = ( $post_values && isset( $post_values[ $var ][ $k ][ $k1 ] ) ) ? $post_values[ $var ][ $k ][ $k1 ] : ( ( $record && isset( $record->options[ $var ] ) && isset( $record->options[ $var ][ $k ] ) && isset( $record->options[ $var ][ $k ][ $k1 ] ) ) ? $record->options[ $var ][ $k ][ $k1 ] : $v1 ); |
221 | - unset( $k1, $v1 ); |
|
222 | - } |
|
223 | - } |
|
221 | + unset( $k1, $v1 ); |
|
222 | + } |
|
223 | + } |
|
224 | 224 | |
225 | - unset($k, $v); |
|
226 | - } |
|
227 | - } else { |
|
225 | + unset($k, $v); |
|
226 | + } |
|
227 | + } else { |
|
228 | 228 | $values[ $var ] = ( $post_values && isset( $post_values['options'][ $var ] ) ) ? $post_values['options'][ $var ] : ( ( $record && isset( $record->options[ $var ] ) ) ? $record->options[ $var ] : $default ); |
229 | - } |
|
229 | + } |
|
230 | 230 | |
231 | - unset($var, $default); |
|
232 | - } |
|
231 | + unset($var, $default); |
|
232 | + } |
|
233 | 233 | |
234 | - return $values; |
|
235 | - } |
|
234 | + return $values; |
|
235 | + } |
|
236 | 236 | |
237 | - public static function get_default_opts() { |
|
238 | - $frm_settings = FrmAppHelper::get_settings(); |
|
237 | + public static function get_default_opts() { |
|
238 | + $frm_settings = FrmAppHelper::get_settings(); |
|
239 | 239 | |
240 | - return array( |
|
241 | - 'submit_value' => $frm_settings->submit_value, 'success_action' => 'message', |
|
242 | - 'success_msg' => $frm_settings->success_msg, 'show_form' => 0, 'akismet' => '', |
|
243 | - 'no_save' => 0, 'ajax_load' => 0, 'form_class' => '', 'custom_style' => 1, |
|
244 | - 'before_html' => self::get_default_html('before'), |
|
245 | - 'after_html' => '', |
|
246 | - 'submit_html' => self::get_default_html('submit'), |
|
247 | - ); |
|
248 | - } |
|
240 | + return array( |
|
241 | + 'submit_value' => $frm_settings->submit_value, 'success_action' => 'message', |
|
242 | + 'success_msg' => $frm_settings->success_msg, 'show_form' => 0, 'akismet' => '', |
|
243 | + 'no_save' => 0, 'ajax_load' => 0, 'form_class' => '', 'custom_style' => 1, |
|
244 | + 'before_html' => self::get_default_html('before'), |
|
245 | + 'after_html' => '', |
|
246 | + 'submit_html' => self::get_default_html('submit'), |
|
247 | + ); |
|
248 | + } |
|
249 | 249 | |
250 | 250 | /** |
251 | 251 | * @param array $options |
@@ -260,13 +260,13 @@ discard block |
||
260 | 260 | } |
261 | 261 | } |
262 | 262 | |
263 | - /** |
|
264 | - * @param string $loc |
|
265 | - */ |
|
263 | + /** |
|
264 | + * @param string $loc |
|
265 | + */ |
|
266 | 266 | public static function get_default_html( $loc ) { |
267 | 267 | if ( $loc == 'submit' ) { |
268 | - $draft_link = self::get_draft_link(); |
|
269 | - $default_html = <<<SUBMIT_HTML |
|
268 | + $draft_link = self::get_draft_link(); |
|
269 | + $default_html = <<<SUBMIT_HTML |
|
270 | 270 | <div class="frm_submit"> |
271 | 271 | [if back_button]<button type="submit" name="frm_prev_page" formnovalidate="formnovalidate" class="frm_prev_page" [back_hook]>[back_label]</button>[/if back_button] |
272 | 272 | <button class="frm_button_submit" type="submit" [button_action]>[button_label]</button> |
@@ -274,22 +274,22 @@ discard block |
||
274 | 274 | </div> |
275 | 275 | SUBMIT_HTML; |
276 | 276 | } else if ( $loc == 'before' ) { |
277 | - $default_html = <<<BEFORE_HTML |
|
277 | + $default_html = <<<BEFORE_HTML |
|
278 | 278 | <legend class="frm_hidden">[form_name]</legend> |
279 | 279 | [if form_name]<h3 class="frm_form_title">[form_name]</h3>[/if form_name] |
280 | 280 | [if form_description]<div class="frm_description">[form_description]</div>[/if form_description] |
281 | 281 | BEFORE_HTML; |
282 | 282 | } else { |
283 | - $default_html = ''; |
|
284 | - } |
|
283 | + $default_html = ''; |
|
284 | + } |
|
285 | 285 | |
286 | - return $default_html; |
|
287 | - } |
|
286 | + return $default_html; |
|
287 | + } |
|
288 | 288 | |
289 | - public static function get_draft_link() { |
|
290 | - $link = '[if save_draft]<a href="#" class="frm_save_draft" [draft_hook]>[draft_label]</a>[/if save_draft]'; |
|
291 | - return $link; |
|
292 | - } |
|
289 | + public static function get_draft_link() { |
|
290 | + $link = '[if save_draft]<a href="#" class="frm_save_draft" [draft_hook]>[draft_label]</a>[/if save_draft]'; |
|
291 | + return $link; |
|
292 | + } |
|
293 | 293 | |
294 | 294 | public static function get_custom_submit( $html, $form, $submit, $form_action, $values ) { |
295 | 295 | $button = self::replace_shortcodes( $html, $form, $submit, $form_action, $values ); |
@@ -316,13 +316,13 @@ discard block |
||
316 | 316 | echo $button_parts[1]; |
317 | 317 | } |
318 | 318 | |
319 | - /** |
|
320 | - * Automatically add end section fields if they don't exist (2.0 migration) |
|
321 | - * @since 2.0 |
|
322 | - * |
|
323 | - * @param boolean $reset_fields |
|
324 | - */ |
|
325 | - public static function auto_add_end_section_fields( $form, $fields, &$reset_fields ) { |
|
319 | + /** |
|
320 | + * Automatically add end section fields if they don't exist (2.0 migration) |
|
321 | + * @since 2.0 |
|
322 | + * |
|
323 | + * @param boolean $reset_fields |
|
324 | + */ |
|
325 | + public static function auto_add_end_section_fields( $form, $fields, &$reset_fields ) { |
|
326 | 326 | if ( empty( $fields ) ) { |
327 | 327 | return; |
328 | 328 | } |
@@ -332,7 +332,7 @@ discard block |
||
332 | 332 | $prev_order = false; |
333 | 333 | $add_order = 0; |
334 | 334 | $last_field = false; |
335 | - foreach ( $fields as $field ) { |
|
335 | + foreach ( $fields as $field ) { |
|
336 | 336 | if ( $prev_order === $field->field_order ) { |
337 | 337 | $add_order++; |
338 | 338 | } |
@@ -343,48 +343,48 @@ discard block |
||
343 | 343 | FrmField::update( $field->id, array( 'field_order' => $field->field_order ) ); |
344 | 344 | } |
345 | 345 | |
346 | - switch ( $field->type ) { |
|
347 | - case 'divider': |
|
348 | - // create an end section if open |
|
346 | + switch ( $field->type ) { |
|
347 | + case 'divider': |
|
348 | + // create an end section if open |
|
349 | 349 | self::maybe_create_end_section( $open, $reset_fields, $add_order, $end_section_values, $field, 'move' ); |
350 | 350 | |
351 | - // mark it open for the next end section |
|
352 | - $open = true; |
|
353 | - break; |
|
354 | - case 'break'; |
|
351 | + // mark it open for the next end section |
|
352 | + $open = true; |
|
353 | + break; |
|
354 | + case 'break'; |
|
355 | 355 | self::maybe_create_end_section( $open, $reset_fields, $add_order, $end_section_values, $field, 'move' ); |
356 | - break; |
|
357 | - case 'end_divider': |
|
358 | - if ( ! $open ) { |
|
359 | - // the section isn't open, so this is an extra field that needs to be removed |
|
360 | - FrmField::destroy( $field->id ); |
|
361 | - $reset_fields = true; |
|
362 | - } |
|
363 | - |
|
364 | - // There is already an end section here, so there is no need to create one |
|
365 | - $open = false; |
|
366 | - } |
|
356 | + break; |
|
357 | + case 'end_divider': |
|
358 | + if ( ! $open ) { |
|
359 | + // the section isn't open, so this is an extra field that needs to be removed |
|
360 | + FrmField::destroy( $field->id ); |
|
361 | + $reset_fields = true; |
|
362 | + } |
|
363 | + |
|
364 | + // There is already an end section here, so there is no need to create one |
|
365 | + $open = false; |
|
366 | + } |
|
367 | 367 | $prev_order = $field->field_order; |
368 | 368 | |
369 | 369 | $last_field = $field; |
370 | 370 | unset( $field ); |
371 | - } |
|
371 | + } |
|
372 | 372 | |
373 | 373 | self::maybe_create_end_section( $open, $reset_fields, $add_order, $end_section_values, $last_field ); |
374 | - } |
|
374 | + } |
|
375 | 375 | |
376 | 376 | /** |
377 | 377 | * Create end section field if it doesn't exist. This is for migration from < 2.0 |
378 | 378 | * Fix any ordering that may be messed up |
379 | 379 | */ |
380 | 380 | public static function maybe_create_end_section( &$open, &$reset_fields, &$add_order, $end_section_values, $field, $move = 'no' ) { |
381 | - if ( ! $open ) { |
|
382 | - return; |
|
383 | - } |
|
381 | + if ( ! $open ) { |
|
382 | + return; |
|
383 | + } |
|
384 | 384 | |
385 | 385 | $end_section_values['field_order'] = $field->field_order + 1; |
386 | 386 | |
387 | - FrmField::create( $end_section_values ); |
|
387 | + FrmField::create( $end_section_values ); |
|
388 | 388 | |
389 | 389 | if ( $move == 'move' ) { |
390 | 390 | // bump the order of current field unless we're at the end of the form |
@@ -392,39 +392,39 @@ discard block |
||
392 | 392 | } |
393 | 393 | |
394 | 394 | $add_order += 2; |
395 | - $open = false; |
|
396 | - $reset_fields = true; |
|
397 | - } |
|
395 | + $open = false; |
|
396 | + $reset_fields = true; |
|
397 | + } |
|
398 | 398 | |
399 | - public static function replace_shortcodes( $html, $form, $title = false, $description = false, $values = array() ) { |
|
399 | + public static function replace_shortcodes( $html, $form, $title = false, $description = false, $values = array() ) { |
|
400 | 400 | foreach ( array( 'form_name' => $title, 'form_description' => $description, 'entry_key' => true ) as $code => $show ) { |
401 | - if ( $code == 'form_name' ) { |
|
402 | - $replace_with = $form->name; |
|
403 | - } else if ( $code == 'form_description' ) { |
|
404 | - $replace_with = FrmAppHelper::use_wpautop($form->description); |
|
405 | - } else if ( $code == 'entry_key' && isset($_GET) && isset($_GET['entry']) ) { |
|
406 | - $replace_with = FrmAppHelper::simple_get( 'entry' ); |
|
407 | - } else { |
|
408 | - $replace_with = ''; |
|
409 | - } |
|
401 | + if ( $code == 'form_name' ) { |
|
402 | + $replace_with = $form->name; |
|
403 | + } else if ( $code == 'form_description' ) { |
|
404 | + $replace_with = FrmAppHelper::use_wpautop($form->description); |
|
405 | + } else if ( $code == 'entry_key' && isset($_GET) && isset($_GET['entry']) ) { |
|
406 | + $replace_with = FrmAppHelper::simple_get( 'entry' ); |
|
407 | + } else { |
|
408 | + $replace_with = ''; |
|
409 | + } |
|
410 | 410 | |
411 | - FrmFieldsHelper::remove_inline_conditions( ( FrmAppHelper::is_true($show) && $replace_with != '' ), $code, $replace_with, $html ); |
|
412 | - } |
|
411 | + FrmFieldsHelper::remove_inline_conditions( ( FrmAppHelper::is_true($show) && $replace_with != '' ), $code, $replace_with, $html ); |
|
412 | + } |
|
413 | 413 | |
414 | - //replace [form_key] |
|
415 | - $html = str_replace('[form_key]', $form->form_key, $html); |
|
414 | + //replace [form_key] |
|
415 | + $html = str_replace('[form_key]', $form->form_key, $html); |
|
416 | 416 | |
417 | - //replace [frmurl] |
|
418 | - $html = str_replace('[frmurl]', FrmFieldsHelper::dynamic_default_values( 'frmurl' ), $html); |
|
417 | + //replace [frmurl] |
|
418 | + $html = str_replace('[frmurl]', FrmFieldsHelper::dynamic_default_values( 'frmurl' ), $html); |
|
419 | 419 | |
420 | 420 | if ( strpos( $html, '[button_label]' ) ) { |
421 | 421 | add_filter( 'frm_submit_button', 'FrmFormsHelper::submit_button_label', 1 ); |
422 | 422 | $submit_label = apply_filters( 'frm_submit_button', $title, $form ); |
423 | 423 | $submit_label = esc_attr( do_shortcode( $submit_label ) ); |
424 | 424 | $html = str_replace( '[button_label]', $submit_label, $html ); |
425 | - } |
|
425 | + } |
|
426 | 426 | |
427 | - $html = apply_filters('frm_form_replace_shortcodes', $html, $form, $values); |
|
427 | + $html = apply_filters('frm_form_replace_shortcodes', $html, $form, $values); |
|
428 | 428 | |
429 | 429 | if ( strpos( $html, '[if back_button]' ) ) { |
430 | 430 | $html = preg_replace( '/(\[if\s+back_button\])(.*?)(\[\/if\s+back_button\])/mis', '', $html ); |
@@ -438,17 +438,17 @@ discard block |
||
438 | 438 | $html = do_shortcode( $html ); |
439 | 439 | } |
440 | 440 | |
441 | - return $html; |
|
442 | - } |
|
441 | + return $html; |
|
442 | + } |
|
443 | 443 | |
444 | 444 | public static function submit_button_label( $submit ) { |
445 | - if ( ! $submit || empty($submit) ) { |
|
446 | - $frm_settings = FrmAppHelper::get_settings(); |
|
447 | - $submit = $frm_settings->submit_value; |
|
448 | - } |
|
445 | + if ( ! $submit || empty($submit) ) { |
|
446 | + $frm_settings = FrmAppHelper::get_settings(); |
|
447 | + $submit = $frm_settings->submit_value; |
|
448 | + } |
|
449 | 449 | |
450 | - return $submit; |
|
451 | - } |
|
450 | + return $submit; |
|
451 | + } |
|
452 | 452 | |
453 | 453 | /** |
454 | 454 | * If the Formidable styling isn't being loaded, |
@@ -465,19 +465,19 @@ discard block |
||
465 | 465 | } |
466 | 466 | |
467 | 467 | public static function get_form_style_class( $form = false ) { |
468 | - $style = self::get_form_style($form); |
|
469 | - $class = ' with_frm_style'; |
|
470 | - |
|
471 | - if ( empty($style) ) { |
|
472 | - if ( FrmAppHelper::is_admin_page('formidable-entries') ) { |
|
473 | - return $class; |
|
474 | - } else { |
|
475 | - return; |
|
476 | - } |
|
477 | - } |
|
478 | - |
|
479 | - //If submit button needs to be inline or centered |
|
480 | - if ( is_object($form) ) { |
|
468 | + $style = self::get_form_style($form); |
|
469 | + $class = ' with_frm_style'; |
|
470 | + |
|
471 | + if ( empty($style) ) { |
|
472 | + if ( FrmAppHelper::is_admin_page('formidable-entries') ) { |
|
473 | + return $class; |
|
474 | + } else { |
|
475 | + return; |
|
476 | + } |
|
477 | + } |
|
478 | + |
|
479 | + //If submit button needs to be inline or centered |
|
480 | + if ( is_object($form) ) { |
|
481 | 481 | $form = $form->options; |
482 | 482 | } |
483 | 483 | |
@@ -489,17 +489,17 @@ discard block |
||
489 | 489 | $class .= ' frm_center_submit'; |
490 | 490 | } |
491 | 491 | |
492 | - $class = apply_filters('frm_add_form_style_class', $class, $style); |
|
492 | + $class = apply_filters('frm_add_form_style_class', $class, $style); |
|
493 | 493 | |
494 | - return $class; |
|
495 | - } |
|
494 | + return $class; |
|
495 | + } |
|
496 | 496 | |
497 | - /** |
|
498 | - * @param string|boolean $form |
|
499 | - * |
|
500 | - * @return string |
|
501 | - */ |
|
502 | - public static function get_form_style( $form ) { |
|
497 | + /** |
|
498 | + * @param string|boolean $form |
|
499 | + * |
|
500 | + * @return string |
|
501 | + */ |
|
502 | + public static function get_form_style( $form ) { |
|
503 | 503 | $style = 1; |
504 | 504 | if ( empty( $form ) || 'default' == 'form' ) { |
505 | 505 | return $style; |
@@ -519,7 +519,7 @@ discard block |
||
519 | 519 | $style = ( $form && is_object( $form ) && isset( $form->options['custom_style'] ) ) ? $form->options['custom_style'] : $style; |
520 | 520 | |
521 | 521 | return $style; |
522 | - } |
|
522 | + } |
|
523 | 523 | |
524 | 524 | /** |
525 | 525 | * Display the validation error messages when an entry is submitted |
@@ -581,74 +581,74 @@ discard block |
||
581 | 581 | } |
582 | 582 | |
583 | 583 | public static function get_scroll_js( $form_id ) { |
584 | - ?><script type="text/javascript">document.addEventListener('DOMContentLoaded',function(){frmFrontForm.scrollMsg(<?php echo (int) $form_id ?>);})</script><?php |
|
585 | - } |
|
584 | + ?><script type="text/javascript">document.addEventListener('DOMContentLoaded',function(){frmFrontForm.scrollMsg(<?php echo (int) $form_id ?>);})</script><?php |
|
585 | + } |
|
586 | 586 | |
587 | 587 | public static function edit_form_link( $form_id ) { |
588 | - if ( is_object($form_id) ) { |
|
589 | - $form = $form_id; |
|
590 | - $name = $form->name; |
|
591 | - $form_id = $form->id; |
|
592 | - } else { |
|
593 | - $name = FrmForm::getName($form_id); |
|
594 | - } |
|
595 | - |
|
596 | - if ( $form_id ) { |
|
588 | + if ( is_object($form_id) ) { |
|
589 | + $form = $form_id; |
|
590 | + $name = $form->name; |
|
591 | + $form_id = $form->id; |
|
592 | + } else { |
|
593 | + $name = FrmForm::getName($form_id); |
|
594 | + } |
|
595 | + |
|
596 | + if ( $form_id ) { |
|
597 | 597 | $val = '<a href="' . esc_url( admin_url( 'admin.php?page=formidable&frm_action=edit&id=' . $form_id ) ) . '">' . ( '' == $name ? __( '(no title)' ) : FrmAppHelper::truncate( $name, 40 ) ) . '</a>'; |
598 | - } else { |
|
599 | - $val = ''; |
|
600 | - } |
|
598 | + } else { |
|
599 | + $val = ''; |
|
600 | + } |
|
601 | 601 | |
602 | - return $val; |
|
602 | + return $val; |
|
603 | 603 | } |
604 | 604 | |
605 | 605 | public static function delete_trash_link( $id, $status, $length = 'long' ) { |
606 | - $link = ''; |
|
607 | - $labels = array( |
|
608 | - 'restore' => array( |
|
609 | - 'long' => __( 'Restore from Trash', 'formidable' ), |
|
610 | - 'short' => __( 'Restore', 'formidable' ), |
|
611 | - ), |
|
612 | - 'trash' => array( |
|
613 | - 'long' => __( 'Move to Trash', 'formidable' ), |
|
614 | - 'short' => __( 'Trash', 'formidable' ), |
|
615 | - ), |
|
616 | - 'delete' => array( |
|
617 | - 'long' => __( 'Delete Permanently', 'formidable' ), |
|
618 | - 'short' => __( 'Delete', 'formidable' ), |
|
619 | - ), |
|
620 | - ); |
|
621 | - |
|
622 | - $current_page = isset( $_REQUEST['form_type'] ) ? $_REQUEST['form_type'] : ''; |
|
606 | + $link = ''; |
|
607 | + $labels = array( |
|
608 | + 'restore' => array( |
|
609 | + 'long' => __( 'Restore from Trash', 'formidable' ), |
|
610 | + 'short' => __( 'Restore', 'formidable' ), |
|
611 | + ), |
|
612 | + 'trash' => array( |
|
613 | + 'long' => __( 'Move to Trash', 'formidable' ), |
|
614 | + 'short' => __( 'Trash', 'formidable' ), |
|
615 | + ), |
|
616 | + 'delete' => array( |
|
617 | + 'long' => __( 'Delete Permanently', 'formidable' ), |
|
618 | + 'short' => __( 'Delete', 'formidable' ), |
|
619 | + ), |
|
620 | + ); |
|
621 | + |
|
622 | + $current_page = isset( $_REQUEST['form_type'] ) ? $_REQUEST['form_type'] : ''; |
|
623 | 623 | $base_url = '?page=formidable&form_type=' . $current_page . '&id=' . $id; |
624 | - if ( 'trash' == $status ) { |
|
624 | + if ( 'trash' == $status ) { |
|
625 | 625 | $link = '<a href="' . esc_url( wp_nonce_url( $base_url . '&frm_action=untrash', 'untrash_form_' . $id ) ) . '" class="submitdelete deletion">' . $labels['restore'][ $length ] . '</a>'; |
626 | - } else if ( current_user_can('frm_delete_forms') ) { |
|
627 | - if ( EMPTY_TRASH_DAYS ) { |
|
626 | + } else if ( current_user_can('frm_delete_forms') ) { |
|
627 | + if ( EMPTY_TRASH_DAYS ) { |
|
628 | 628 | $link = '<a href="' . esc_url( wp_nonce_url( $base_url . '&frm_action=trash', 'trash_form_' . $id ) ) . '" class="submitdelete deletion">' . $labels['trash'][ $length ] . '</a>'; |
629 | - } else { |
|
629 | + } else { |
|
630 | 630 | $link = '<a href="' . esc_url( wp_nonce_url( $base_url . '&frm_action=destroy', 'destroy_form_' . $id ) ) . '" class="submitdelete deletion" onclick="return confirm(\'' . esc_attr( __( 'Are you sure you want to delete this form and all its entries?', 'formidable' ) ) . '\')">' . $labels['delete'][ $length ] . '</a>'; |
631 | - } |
|
632 | - } |
|
631 | + } |
|
632 | + } |
|
633 | 633 | |
634 | - return $link; |
|
635 | - } |
|
634 | + return $link; |
|
635 | + } |
|
636 | 636 | |
637 | 637 | public static function status_nice_name( $status ) { |
638 | - $nice_names = array( |
|
639 | - 'draft' => __( 'Draft', 'formidable' ), |
|
640 | - 'trash' => __( 'Trash', 'formidable' ), |
|
641 | - 'publish' => __( 'Published', 'formidable' ), |
|
642 | - ); |
|
643 | - |
|
644 | - if ( ! in_array($status, array_keys($nice_names)) ) { |
|
645 | - $status = 'publish'; |
|
646 | - } |
|
638 | + $nice_names = array( |
|
639 | + 'draft' => __( 'Draft', 'formidable' ), |
|
640 | + 'trash' => __( 'Trash', 'formidable' ), |
|
641 | + 'publish' => __( 'Published', 'formidable' ), |
|
642 | + ); |
|
643 | + |
|
644 | + if ( ! in_array($status, array_keys($nice_names)) ) { |
|
645 | + $status = 'publish'; |
|
646 | + } |
|
647 | 647 | |
648 | 648 | $name = $nice_names[ $status ]; |
649 | 649 | |
650 | - return $name; |
|
651 | - } |
|
650 | + return $name; |
|
651 | + } |
|
652 | 652 | |
653 | 653 | public static function get_params() { |
654 | 654 | _deprecated_function( __FUNCTION__, '2.0.9', 'FrmForm::list_page_params' ); |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -if ( ! defined('ABSPATH') ) { |
|
2 | +if ( ! defined( 'ABSPATH' ) ) { |
|
3 | 3 | die( 'You are not allowed to call this page directly.' ); |
4 | 4 | } |
5 | 5 | |
@@ -19,7 +19,7 @@ discard block |
||
19 | 19 | |
20 | 20 | public static function get_direct_link( $key, $form = false ) { |
21 | 21 | $target_url = esc_url( admin_url( 'admin-ajax.php?action=frm_forms_preview&form=' . $key ) ); |
22 | - $target_url = apply_filters('frm_direct_link', $target_url, $key, $form); |
|
22 | + $target_url = apply_filters( 'frm_direct_link', $target_url, $key, $form ); |
|
23 | 23 | |
24 | 24 | return $target_url; |
25 | 25 | } |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | $query['id !'] = $args['exclude']; |
45 | 45 | } |
46 | 46 | |
47 | - $where = apply_filters('frm_forms_dropdown', $query, $field_name); |
|
47 | + $where = apply_filters( 'frm_forms_dropdown', $query, $field_name ); |
|
48 | 48 | $forms = FrmForm::get_published_forms( $where, 999, $args['inc_children'] ); |
49 | 49 | $add_html = array(); |
50 | 50 | self::add_html_attr( $args['onchange'], 'onchange', $add_html ); |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | <?php } ?> |
58 | 58 | <?php foreach ( $forms as $form ) { ?> |
59 | 59 | <option value="<?php echo esc_attr( $form->id ); ?>" <?php selected( $field_value, $form->id ); ?>><?php |
60 | - echo ( '' == $form->name ) ? esc_html__( '(no title)', 'formidable' ) : esc_html( FrmAppHelper::truncate( $form->name, 50 ) ) . ( $form->parent_form_id ? esc_html__( ' (child)', 'formidable' ) : '' ) ; |
|
60 | + echo ( '' == $form->name ) ? esc_html__( '(no title)', 'formidable' ) : esc_html( FrmAppHelper::truncate( $form->name, 50 ) ) . ( $form->parent_form_id ? esc_html__( ' (child)', 'formidable' ) : '' ); |
|
61 | 61 | ?></option> |
62 | 62 | <?php } ?> |
63 | 63 | </select> |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | */ |
74 | 74 | public static function add_html_attr( $class, $param, &$add_html ) { |
75 | 75 | if ( ! empty( $class ) ) { |
76 | - $add_html[ $param ] = sanitize_title( $param ) . '="' . esc_attr( trim( sanitize_text_field( $class ) ) ) . '"'; |
|
76 | + $add_html[$param] = sanitize_title( $param ) . '="' . esc_attr( trim( sanitize_text_field( $class ) ) ) . '"'; |
|
77 | 77 | } |
78 | 78 | } |
79 | 79 | |
@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | $args = array( 'id' => 0, 'form' => 0 ); |
85 | 85 | if ( isset( $_GET['id'] ) && ! isset( $_GET['form'] ) ) { |
86 | 86 | unset( $args['form'] ); |
87 | - } else if ( isset( $_GET['form']) && ! isset( $_GET['id'] ) ) { |
|
87 | + } else if ( isset( $_GET['form'] ) && ! isset( $_GET['id'] ) ) { |
|
88 | 88 | unset( $args['id'] ); |
89 | 89 | } |
90 | 90 | |
@@ -92,11 +92,11 @@ discard block |
||
92 | 92 | if ( FrmAppHelper::is_admin_page( 'formidable-entries' ) && in_array( $frm_action, array( 'edit', 'show', 'destroy_all' ) ) ) { |
93 | 93 | $args['frm_action'] = 'list'; |
94 | 94 | $args['form'] = 0; |
95 | - } else if ( FrmAppHelper::is_admin_page('formidable' ) && in_array( $frm_action, array( 'new', 'duplicate' ) ) ) { |
|
95 | + } else if ( FrmAppHelper::is_admin_page( 'formidable' ) && in_array( $frm_action, array( 'new', 'duplicate' ) ) ) { |
|
96 | 96 | $args['frm_action'] = 'edit'; |
97 | 97 | } else if ( isset( $_GET['post'] ) ) { |
98 | 98 | $args['form'] = 0; |
99 | - $base = admin_url('edit.php?post_type=frm_display'); |
|
99 | + $base = admin_url( 'edit.php?post_type=frm_display' ); |
|
100 | 100 | } |
101 | 101 | |
102 | 102 | ?> |
@@ -112,7 +112,7 @@ discard block |
||
112 | 112 | $args['form'] = $form->id; |
113 | 113 | } |
114 | 114 | ?> |
115 | - <li><a href="<?php echo esc_url( isset( $base ) ? add_query_arg( $args, $base ) : add_query_arg( $args ) ); ?>" tabindex="-1"><?php echo esc_html( empty( $form->name ) ? __( '(no title)') : FrmAppHelper::truncate( $form->name, 60 ) ); ?></a></li> |
|
115 | + <li><a href="<?php echo esc_url( isset( $base ) ? add_query_arg( $args, $base ) : add_query_arg( $args ) ); ?>" tabindex="-1"><?php echo esc_html( empty( $form->name ) ? __( '(no title)' ) : FrmAppHelper::truncate( $form->name, 60 ) ); ?></a></li> |
|
116 | 116 | <?php |
117 | 117 | unset( $form ); |
118 | 118 | } ?> |
@@ -122,8 +122,8 @@ discard block |
||
122 | 122 | } |
123 | 123 | |
124 | 124 | public static function get_sortable_classes( $col, $sort_col, $sort_dir ) { |
125 | - echo ($sort_col == $col) ? 'sorted' : 'sortable'; |
|
126 | - echo ($sort_col == $col && $sort_dir == 'desc') ? ' asc' : ' desc'; |
|
125 | + echo ( $sort_col == $col ) ? 'sorted' : 'sortable'; |
|
126 | + echo ( $sort_col == $col && $sort_dir == 'desc' ) ? ' asc' : ' desc'; |
|
127 | 127 | } |
128 | 128 | |
129 | 129 | /** |
@@ -158,20 +158,20 @@ discard block |
||
158 | 158 | $post_values = $values; |
159 | 159 | } else { |
160 | 160 | $values = array(); |
161 | - $post_values = isset($_POST) ? $_POST : array(); |
|
161 | + $post_values = isset( $_POST ) ? $_POST : array(); |
|
162 | 162 | } |
163 | 163 | |
164 | 164 | foreach ( array( 'name' => '', 'description' => '' ) as $var => $default ) { |
165 | - if ( ! isset( $values[ $var ] ) ) { |
|
166 | - $values[ $var ] = FrmAppHelper::get_param( $var, $default ); |
|
165 | + if ( ! isset( $values[$var] ) ) { |
|
166 | + $values[$var] = FrmAppHelper::get_param( $var, $default ); |
|
167 | 167 | } |
168 | 168 | } |
169 | 169 | |
170 | - $values['description'] = FrmAppHelper::use_wpautop($values['description']); |
|
170 | + $values['description'] = FrmAppHelper::use_wpautop( $values['description'] ); |
|
171 | 171 | |
172 | 172 | foreach ( array( 'form_id' => '', 'logged_in' => '', 'editable' => '', 'default_template' => 0, 'is_template' => 0, 'status' => 'draft', 'parent_form_id' => 0 ) as $var => $default ) { |
173 | - if ( ! isset( $values[ $var ] ) ) { |
|
174 | - $values[ $var ] = FrmAppHelper::get_param( $var, $default ); |
|
173 | + if ( ! isset( $values[$var] ) ) { |
|
174 | + $values[$var] = FrmAppHelper::get_param( $var, $default ); |
|
175 | 175 | } |
176 | 176 | } |
177 | 177 | |
@@ -182,7 +182,7 @@ discard block |
||
182 | 182 | $values = self::fill_default_opts( $values, false, $post_values ); |
183 | 183 | $values['custom_style'] = FrmAppHelper::custom_style_value( $post_values ); |
184 | 184 | |
185 | - return apply_filters('frm_setup_new_form_vars', $values); |
|
185 | + return apply_filters( 'frm_setup_new_form_vars', $values ); |
|
186 | 186 | } |
187 | 187 | |
188 | 188 | /** |
@@ -193,42 +193,42 @@ discard block |
||
193 | 193 | $post_values = stripslashes_deep( $_POST ); |
194 | 194 | } |
195 | 195 | |
196 | - $values['form_key'] = isset($post_values['form_key']) ? $post_values['form_key'] : $record->form_key; |
|
197 | - $values['default_template'] = isset($post_values['default_template']) ? $post_values['default_template'] : $record->default_template; |
|
198 | - $values['is_template'] = isset($post_values['is_template']) ? $post_values['is_template'] : $record->is_template; |
|
196 | + $values['form_key'] = isset( $post_values['form_key'] ) ? $post_values['form_key'] : $record->form_key; |
|
197 | + $values['default_template'] = isset( $post_values['default_template'] ) ? $post_values['default_template'] : $record->default_template; |
|
198 | + $values['is_template'] = isset( $post_values['is_template'] ) ? $post_values['is_template'] : $record->is_template; |
|
199 | 199 | $values['status'] = $record->status; |
200 | 200 | |
201 | - $values = self::fill_default_opts($values, $record, $post_values); |
|
201 | + $values = self::fill_default_opts( $values, $record, $post_values ); |
|
202 | 202 | |
203 | - return apply_filters('frm_setup_edit_form_vars', $values); |
|
203 | + return apply_filters( 'frm_setup_edit_form_vars', $values ); |
|
204 | 204 | } |
205 | 205 | |
206 | 206 | public static function fill_default_opts( $values, $record, $post_values ) { |
207 | 207 | |
208 | 208 | $defaults = self::get_default_opts(); |
209 | 209 | foreach ( $defaults as $var => $default ) { |
210 | - if ( is_array($default) ) { |
|
211 | - if ( ! isset( $values[ $var ] ) ) { |
|
212 | - $values[ $var ] = ( $record && isset( $record->options[ $var ] ) ) ? $record->options[ $var ] : array(); |
|
210 | + if ( is_array( $default ) ) { |
|
211 | + if ( ! isset( $values[$var] ) ) { |
|
212 | + $values[$var] = ( $record && isset( $record->options[$var] ) ) ? $record->options[$var] : array(); |
|
213 | 213 | } |
214 | 214 | |
215 | 215 | foreach ( $default as $k => $v ) { |
216 | - $values[ $var ][ $k ] = ( $post_values && isset( $post_values[ $var ][ $k ] ) ) ? $post_values[ $var ][ $k ] : ( ( $record && isset( $record->options[ $var ] ) && isset( $record->options[ $var ][ $k ] ) ) ? $record->options[ $var ][ $k ] : $v); |
|
216 | + $values[$var][$k] = ( $post_values && isset( $post_values[$var][$k] ) ) ? $post_values[$var][$k] : ( ( $record && isset( $record->options[$var] ) && isset( $record->options[$var][$k] ) ) ? $record->options[$var][$k] : $v ); |
|
217 | 217 | |
218 | 218 | if ( is_array( $v ) ) { |
219 | 219 | foreach ( $v as $k1 => $v1 ) { |
220 | - $values[ $var ][ $k ][ $k1 ] = ( $post_values && isset( $post_values[ $var ][ $k ][ $k1 ] ) ) ? $post_values[ $var ][ $k ][ $k1 ] : ( ( $record && isset( $record->options[ $var ] ) && isset( $record->options[ $var ][ $k ] ) && isset( $record->options[ $var ][ $k ][ $k1 ] ) ) ? $record->options[ $var ][ $k ][ $k1 ] : $v1 ); |
|
220 | + $values[$var][$k][$k1] = ( $post_values && isset( $post_values[$var][$k][$k1] ) ) ? $post_values[$var][$k][$k1] : ( ( $record && isset( $record->options[$var] ) && isset( $record->options[$var][$k] ) && isset( $record->options[$var][$k][$k1] ) ) ? $record->options[$var][$k][$k1] : $v1 ); |
|
221 | 221 | unset( $k1, $v1 ); |
222 | 222 | } |
223 | 223 | } |
224 | 224 | |
225 | - unset($k, $v); |
|
225 | + unset( $k, $v ); |
|
226 | 226 | } |
227 | 227 | } else { |
228 | - $values[ $var ] = ( $post_values && isset( $post_values['options'][ $var ] ) ) ? $post_values['options'][ $var ] : ( ( $record && isset( $record->options[ $var ] ) ) ? $record->options[ $var ] : $default ); |
|
228 | + $values[$var] = ( $post_values && isset( $post_values['options'][$var] ) ) ? $post_values['options'][$var] : ( ( $record && isset( $record->options[$var] ) ) ? $record->options[$var] : $default ); |
|
229 | 229 | } |
230 | 230 | |
231 | - unset($var, $default); |
|
231 | + unset( $var, $default ); |
|
232 | 232 | } |
233 | 233 | |
234 | 234 | return $values; |
@@ -241,9 +241,9 @@ discard block |
||
241 | 241 | 'submit_value' => $frm_settings->submit_value, 'success_action' => 'message', |
242 | 242 | 'success_msg' => $frm_settings->success_msg, 'show_form' => 0, 'akismet' => '', |
243 | 243 | 'no_save' => 0, 'ajax_load' => 0, 'form_class' => '', 'custom_style' => 1, |
244 | - 'before_html' => self::get_default_html('before'), |
|
244 | + 'before_html' => self::get_default_html( 'before' ), |
|
245 | 245 | 'after_html' => '', |
246 | - 'submit_html' => self::get_default_html('submit'), |
|
246 | + 'submit_html' => self::get_default_html( 'submit' ), |
|
247 | 247 | ); |
248 | 248 | } |
249 | 249 | |
@@ -255,7 +255,7 @@ discard block |
||
255 | 255 | public static function fill_form_options( &$options, $values ) { |
256 | 256 | $defaults = self::get_default_opts(); |
257 | 257 | foreach ( $defaults as $var => $default ) { |
258 | - $options[ $var ] = isset( $values['options'][ $var ] ) ? $values['options'][ $var ] : $default; |
|
258 | + $options[$var] = isset( $values['options'][$var] ) ? $values['options'][$var] : $default; |
|
259 | 259 | unset( $var, $default ); |
260 | 260 | } |
261 | 261 | } |
@@ -334,7 +334,7 @@ discard block |
||
334 | 334 | $last_field = false; |
335 | 335 | foreach ( $fields as $field ) { |
336 | 336 | if ( $prev_order === $field->field_order ) { |
337 | - $add_order++; |
|
337 | + $add_order ++; |
|
338 | 338 | } |
339 | 339 | |
340 | 340 | if ( $add_order ) { |
@@ -401,21 +401,21 @@ discard block |
||
401 | 401 | if ( $code == 'form_name' ) { |
402 | 402 | $replace_with = $form->name; |
403 | 403 | } else if ( $code == 'form_description' ) { |
404 | - $replace_with = FrmAppHelper::use_wpautop($form->description); |
|
405 | - } else if ( $code == 'entry_key' && isset($_GET) && isset($_GET['entry']) ) { |
|
404 | + $replace_with = FrmAppHelper::use_wpautop( $form->description ); |
|
405 | + } else if ( $code == 'entry_key' && isset( $_GET ) && isset( $_GET['entry'] ) ) { |
|
406 | 406 | $replace_with = FrmAppHelper::simple_get( 'entry' ); |
407 | 407 | } else { |
408 | 408 | $replace_with = ''; |
409 | 409 | } |
410 | 410 | |
411 | - FrmFieldsHelper::remove_inline_conditions( ( FrmAppHelper::is_true($show) && $replace_with != '' ), $code, $replace_with, $html ); |
|
411 | + FrmFieldsHelper::remove_inline_conditions( ( FrmAppHelper::is_true( $show ) && $replace_with != '' ), $code, $replace_with, $html ); |
|
412 | 412 | } |
413 | 413 | |
414 | 414 | //replace [form_key] |
415 | - $html = str_replace('[form_key]', $form->form_key, $html); |
|
415 | + $html = str_replace( '[form_key]', $form->form_key, $html ); |
|
416 | 416 | |
417 | 417 | //replace [frmurl] |
418 | - $html = str_replace('[frmurl]', FrmFieldsHelper::dynamic_default_values( 'frmurl' ), $html); |
|
418 | + $html = str_replace( '[frmurl]', FrmFieldsHelper::dynamic_default_values( 'frmurl' ), $html ); |
|
419 | 419 | |
420 | 420 | if ( strpos( $html, '[button_label]' ) ) { |
421 | 421 | add_filter( 'frm_submit_button', 'FrmFormsHelper::submit_button_label', 1 ); |
@@ -424,7 +424,7 @@ discard block |
||
424 | 424 | $html = str_replace( '[button_label]', $submit_label, $html ); |
425 | 425 | } |
426 | 426 | |
427 | - $html = apply_filters('frm_form_replace_shortcodes', $html, $form, $values); |
|
427 | + $html = apply_filters( 'frm_form_replace_shortcodes', $html, $form, $values ); |
|
428 | 428 | |
429 | 429 | if ( strpos( $html, '[if back_button]' ) ) { |
430 | 430 | $html = preg_replace( '/(\[if\s+back_button\])(.*?)(\[\/if\s+back_button\])/mis', '', $html ); |
@@ -442,7 +442,7 @@ discard block |
||
442 | 442 | } |
443 | 443 | |
444 | 444 | public static function submit_button_label( $submit ) { |
445 | - if ( ! $submit || empty($submit) ) { |
|
445 | + if ( ! $submit || empty( $submit ) ) { |
|
446 | 446 | $frm_settings = FrmAppHelper::get_settings(); |
447 | 447 | $submit = $frm_settings->submit_value; |
448 | 448 | } |
@@ -465,11 +465,11 @@ discard block |
||
465 | 465 | } |
466 | 466 | |
467 | 467 | public static function get_form_style_class( $form = false ) { |
468 | - $style = self::get_form_style($form); |
|
468 | + $style = self::get_form_style( $form ); |
|
469 | 469 | $class = ' with_frm_style'; |
470 | 470 | |
471 | - if ( empty($style) ) { |
|
472 | - if ( FrmAppHelper::is_admin_page('formidable-entries') ) { |
|
471 | + if ( empty( $style ) ) { |
|
472 | + if ( FrmAppHelper::is_admin_page( 'formidable-entries' ) ) { |
|
473 | 473 | return $class; |
474 | 474 | } else { |
475 | 475 | return; |
@@ -477,7 +477,7 @@ discard block |
||
477 | 477 | } |
478 | 478 | |
479 | 479 | //If submit button needs to be inline or centered |
480 | - if ( is_object($form) ) { |
|
480 | + if ( is_object( $form ) ) { |
|
481 | 481 | $form = $form->options; |
482 | 482 | } |
483 | 483 | |
@@ -489,7 +489,7 @@ discard block |
||
489 | 489 | $class .= ' frm_center_submit'; |
490 | 490 | } |
491 | 491 | |
492 | - $class = apply_filters('frm_add_form_style_class', $class, $style); |
|
492 | + $class = apply_filters( 'frm_add_form_style_class', $class, $style ); |
|
493 | 493 | |
494 | 494 | return $class; |
495 | 495 | } |
@@ -585,12 +585,12 @@ discard block |
||
585 | 585 | } |
586 | 586 | |
587 | 587 | public static function edit_form_link( $form_id ) { |
588 | - if ( is_object($form_id) ) { |
|
588 | + if ( is_object( $form_id ) ) { |
|
589 | 589 | $form = $form_id; |
590 | 590 | $name = $form->name; |
591 | 591 | $form_id = $form->id; |
592 | 592 | } else { |
593 | - $name = FrmForm::getName($form_id); |
|
593 | + $name = FrmForm::getName( $form_id ); |
|
594 | 594 | } |
595 | 595 | |
596 | 596 | if ( $form_id ) { |
@@ -622,12 +622,12 @@ discard block |
||
622 | 622 | $current_page = isset( $_REQUEST['form_type'] ) ? $_REQUEST['form_type'] : ''; |
623 | 623 | $base_url = '?page=formidable&form_type=' . $current_page . '&id=' . $id; |
624 | 624 | if ( 'trash' == $status ) { |
625 | - $link = '<a href="' . esc_url( wp_nonce_url( $base_url . '&frm_action=untrash', 'untrash_form_' . $id ) ) . '" class="submitdelete deletion">' . $labels['restore'][ $length ] . '</a>'; |
|
626 | - } else if ( current_user_can('frm_delete_forms') ) { |
|
625 | + $link = '<a href="' . esc_url( wp_nonce_url( $base_url . '&frm_action=untrash', 'untrash_form_' . $id ) ) . '" class="submitdelete deletion">' . $labels['restore'][$length] . '</a>'; |
|
626 | + } else if ( current_user_can( 'frm_delete_forms' ) ) { |
|
627 | 627 | if ( EMPTY_TRASH_DAYS ) { |
628 | - $link = '<a href="' . esc_url( wp_nonce_url( $base_url . '&frm_action=trash', 'trash_form_' . $id ) ) . '" class="submitdelete deletion">' . $labels['trash'][ $length ] . '</a>'; |
|
628 | + $link = '<a href="' . esc_url( wp_nonce_url( $base_url . '&frm_action=trash', 'trash_form_' . $id ) ) . '" class="submitdelete deletion">' . $labels['trash'][$length] . '</a>'; |
|
629 | 629 | } else { |
630 | - $link = '<a href="' . esc_url( wp_nonce_url( $base_url . '&frm_action=destroy', 'destroy_form_' . $id ) ) . '" class="submitdelete deletion" onclick="return confirm(\'' . esc_attr( __( 'Are you sure you want to delete this form and all its entries?', 'formidable' ) ) . '\')">' . $labels['delete'][ $length ] . '</a>'; |
|
630 | + $link = '<a href="' . esc_url( wp_nonce_url( $base_url . '&frm_action=destroy', 'destroy_form_' . $id ) ) . '" class="submitdelete deletion" onclick="return confirm(\'' . esc_attr( __( 'Are you sure you want to delete this form and all its entries?', 'formidable' ) ) . '\')">' . $labels['delete'][$length] . '</a>'; |
|
631 | 631 | } |
632 | 632 | } |
633 | 633 | |
@@ -641,11 +641,11 @@ discard block |
||
641 | 641 | 'publish' => __( 'Published', 'formidable' ), |
642 | 642 | ); |
643 | 643 | |
644 | - if ( ! in_array($status, array_keys($nice_names)) ) { |
|
644 | + if ( ! in_array( $status, array_keys( $nice_names ) ) ) { |
|
645 | 645 | $status = 'publish'; |
646 | 646 | } |
647 | 647 | |
648 | - $name = $nice_names[ $status ]; |
|
648 | + $name = $nice_names[$status]; |
|
649 | 649 | |
650 | 650 | return $name; |
651 | 651 | } |
@@ -253,6 +253,9 @@ discard block |
||
253 | 253 | <?php |
254 | 254 | } |
255 | 255 | |
256 | + /** |
|
257 | + * @param string $param_name |
|
258 | + */ |
|
256 | 259 | private function hidden_search_inputs( $param_name ) { |
257 | 260 | if ( ! empty( $_REQUEST[ $param_name ] ) ) { |
258 | 261 | echo '<input type="hidden" name="' . esc_attr( $param_name ) . '" value="' . esc_attr( $_REQUEST[ $param_name ] ) . '" />'; |
@@ -389,6 +392,9 @@ discard block |
||
389 | 392 | return $action; |
390 | 393 | } |
391 | 394 | |
395 | + /** |
|
396 | + * @param string $action_name |
|
397 | + */ |
|
392 | 398 | private static function get_bulk_action( $action_name ) { |
393 | 399 | $action = false; |
394 | 400 | if ( isset( $_REQUEST[ $action_name ] ) && -1 != sanitize_text_field( $_REQUEST[ $action_name ] ) ) { |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -if ( ! defined('ABSPATH') ) { |
|
2 | +if ( ! defined( 'ABSPATH' ) ) { |
|
3 | 3 | die( 'You are not allowed to call this page directly.' ); |
4 | 4 | } |
5 | 5 | |
@@ -197,8 +197,8 @@ discard block |
||
197 | 197 | return $this->get_pagenum(); |
198 | 198 | } |
199 | 199 | |
200 | - if ( isset( $this->_pagination_args[ $key ] ) ) { |
|
201 | - return $this->_pagination_args[ $key ]; |
|
200 | + if ( isset( $this->_pagination_args[$key] ) ) { |
|
201 | + return $this->_pagination_args[$key]; |
|
202 | 202 | } |
203 | 203 | } |
204 | 204 | |
@@ -253,8 +253,8 @@ discard block |
||
253 | 253 | } |
254 | 254 | |
255 | 255 | private function hidden_search_inputs( $param_name ) { |
256 | - if ( ! empty( $_REQUEST[ $param_name ] ) ) { |
|
257 | - echo '<input type="hidden" name="' . esc_attr( $param_name ) . '" value="' . esc_attr( $_REQUEST[ $param_name ] ) . '" />'; |
|
256 | + if ( ! empty( $_REQUEST[$param_name] ) ) { |
|
257 | + echo '<input type="hidden" name="' . esc_attr( $param_name ) . '" value="' . esc_attr( $_REQUEST[$param_name] ) . '" />'; |
|
258 | 258 | } |
259 | 259 | } |
260 | 260 | |
@@ -297,7 +297,7 @@ discard block |
||
297 | 297 | |
298 | 298 | echo "<ul class='subsubsub'>\n"; |
299 | 299 | foreach ( $views as $class => $view ) { |
300 | - $views[ $class ] = "\t<li class='$class'>$view"; |
|
300 | + $views[$class] = "\t<li class='$class'>$view"; |
|
301 | 301 | } |
302 | 302 | echo implode( " |</li>\n", $views ) . "</li>\n"; |
303 | 303 | echo '</ul>'; |
@@ -390,8 +390,8 @@ discard block |
||
390 | 390 | |
391 | 391 | private static function get_bulk_action( $action_name ) { |
392 | 392 | $action = false; |
393 | - if ( isset( $_REQUEST[ $action_name ] ) && -1 != sanitize_text_field( $_REQUEST[ $action_name ] ) ) { |
|
394 | - $action = sanitize_text_field( $_REQUEST[ $action_name ] ); |
|
393 | + if ( isset( $_REQUEST[$action_name] ) && -1 != sanitize_text_field( $_REQUEST[$action_name] ) ) { |
|
394 | + $action = sanitize_text_field( $_REQUEST[$action_name] ); |
|
395 | 395 | } |
396 | 396 | return $action; |
397 | 397 | } |
@@ -416,7 +416,7 @@ discard block |
||
416 | 416 | |
417 | 417 | $out = '<div class="' . ( $always_visible ? 'row-actions visible' : 'row-actions' ) . '">'; |
418 | 418 | foreach ( $actions as $action => $link ) { |
419 | - ++$i; |
|
419 | + ++ $i; |
|
420 | 420 | ( $i == $action_count ) ? $sep = '' : $sep = ' | '; |
421 | 421 | $out .= "<span class='$action'>$link$sep</span>"; |
422 | 422 | } |
@@ -684,7 +684,7 @@ discard block |
||
684 | 684 | |
685 | 685 | // If the primary column doesn't exist fall back to the |
686 | 686 | // first non-checkbox column. |
687 | - if ( ! isset( $columns[ $default ] ) ) { |
|
687 | + if ( ! isset( $columns[$default] ) ) { |
|
688 | 688 | $default = FrmListHelper::get_default_primary_column_name(); |
689 | 689 | } |
690 | 690 | |
@@ -698,7 +698,7 @@ discard block |
||
698 | 698 | */ |
699 | 699 | $column = apply_filters( 'list_table_primary_column', $default, $this->screen->id ); |
700 | 700 | |
701 | - if ( empty( $column ) || ! isset( $columns[ $column ] ) ) { |
|
701 | + if ( empty( $column ) || ! isset( $columns[$column] ) ) { |
|
702 | 702 | $column = $default; |
703 | 703 | } |
704 | 704 | |
@@ -720,7 +720,7 @@ discard block |
||
720 | 720 | // In 4.3, we added a fourth argument for primary column. |
721 | 721 | $column_headers = array( array(), array(), array(), $this->get_primary_column_name() ); |
722 | 722 | foreach ( $this->_column_headers as $key => $value ) { |
723 | - $column_headers[ $key ] = $value; |
|
723 | + $column_headers[$key] = $value; |
|
724 | 724 | } |
725 | 725 | |
726 | 726 | return $column_headers; |
@@ -753,7 +753,7 @@ discard block |
||
753 | 753 | $data[1] = false; |
754 | 754 | } |
755 | 755 | |
756 | - $sortable[ $id ] = $data; |
|
756 | + $sortable[$id] = $data; |
|
757 | 757 | } |
758 | 758 | |
759 | 759 | $primary = $this->get_primary_column_name(); |
@@ -808,7 +808,7 @@ discard block |
||
808 | 808 | static $cb_counter = 1; |
809 | 809 | $columns['cb'] = '<label class="screen-reader-text" for="cb-select-all-' . $cb_counter . '">' . __( 'Select All' ) . '</label>' |
810 | 810 | . '<input id="cb-select-all-' . esc_attr( $cb_counter ) . '" type="checkbox" />'; |
811 | - $cb_counter++; |
|
811 | + $cb_counter ++; |
|
812 | 812 | } |
813 | 813 | |
814 | 814 | foreach ( $columns as $column_key => $column_display_name ) { |
@@ -828,8 +828,8 @@ discard block |
||
828 | 828 | $class[] = 'column-primary'; |
829 | 829 | } |
830 | 830 | |
831 | - if ( isset( $sortable[ $column_key ] ) ) { |
|
832 | - list( $orderby, $desc_first ) = $sortable[ $column_key ]; |
|
831 | + if ( isset( $sortable[$column_key] ) ) { |
|
832 | + list( $orderby, $desc_first ) = $sortable[$column_key]; |
|
833 | 833 | |
834 | 834 | if ( $current_orderby == $orderby ) { |
835 | 835 | $order = 'asc' == $current_order ? 'desc' : 'asc'; |
@@ -67,10 +67,10 @@ discard block |
||
67 | 67 | protected $modes = array(); |
68 | 68 | |
69 | 69 | /** |
70 | - * |
|
71 | - * @var array |
|
72 | - */ |
|
73 | - protected $params; |
|
70 | + * |
|
71 | + * @var array |
|
72 | + */ |
|
73 | + protected $params; |
|
74 | 74 | |
75 | 75 | /** |
76 | 76 | * Stores the value returned by ->get_column_info() |
@@ -89,10 +89,10 @@ discard block |
||
89 | 89 | ); |
90 | 90 | |
91 | 91 | /** |
92 | - * Construct the table object |
|
93 | - */ |
|
92 | + * Construct the table object |
|
93 | + */ |
|
94 | 94 | public function __construct( $args ) { |
95 | - $args = wp_parse_args( $args, array( |
|
95 | + $args = wp_parse_args( $args, array( |
|
96 | 96 | 'params' => array(), |
97 | 97 | 'plural' => '', |
98 | 98 | 'singular' => '', |
@@ -17,6 +17,6 @@ |
||
17 | 17 | </ul> |
18 | 18 | |
19 | 19 | <?php if ( $form && $title == 'show' ) { ?> |
20 | - <input id="title" type="text" value="<?php echo esc_attr( $form->name == '' ? __( '(no title)') : $form->name ) ?>" readonly="readonly" disabled="disabled" /> |
|
20 | + <input id="title" type="text" value="<?php echo esc_attr( $form->name == '' ? __( '(no title)' ) : $form->name ) ?>" readonly="readonly" disabled="disabled" /> |
|
21 | 21 | <?php } ?> |
22 | 22 | </div> |
@@ -235,50 +235,50 @@ discard block |
||
235 | 235 | return $line; |
236 | 236 | } |
237 | 237 | |
238 | - $convmap = false; |
|
238 | + $convmap = false; |
|
239 | 239 | |
240 | 240 | switch ( self::$to_encoding ) { |
241 | - case 'macintosh': |
|
241 | + case 'macintosh': |
|
242 | 242 | // this map was derived from the differences between the MacRoman and UTF-8 Charsets |
243 | 243 | // Reference: |
244 | 244 | // - http://www.alanwood.net/demos/macroman.html |
245 | - $convmap = array( |
|
246 | - 256, 304, 0, 0xffff, |
|
247 | - 306, 337, 0, 0xffff, |
|
248 | - 340, 375, 0, 0xffff, |
|
249 | - 377, 401, 0, 0xffff, |
|
250 | - 403, 709, 0, 0xffff, |
|
251 | - 712, 727, 0, 0xffff, |
|
252 | - 734, 936, 0, 0xffff, |
|
253 | - 938, 959, 0, 0xffff, |
|
254 | - 961, 8210, 0, 0xffff, |
|
255 | - 8213, 8215, 0, 0xffff, |
|
256 | - 8219, 8219, 0, 0xffff, |
|
257 | - 8227, 8229, 0, 0xffff, |
|
258 | - 8231, 8239, 0, 0xffff, |
|
259 | - 8241, 8248, 0, 0xffff, |
|
260 | - 8251, 8259, 0, 0xffff, |
|
261 | - 8261, 8363, 0, 0xffff, |
|
262 | - 8365, 8481, 0, 0xffff, |
|
263 | - 8483, 8705, 0, 0xffff, |
|
264 | - 8707, 8709, 0, 0xffff, |
|
265 | - 8711, 8718, 0, 0xffff, |
|
266 | - 8720, 8720, 0, 0xffff, |
|
267 | - 8722, 8729, 0, 0xffff, |
|
268 | - 8731, 8733, 0, 0xffff, |
|
269 | - 8735, 8746, 0, 0xffff, |
|
270 | - 8748, 8775, 0, 0xffff, |
|
271 | - 8777, 8799, 0, 0xffff, |
|
272 | - 8801, 8803, 0, 0xffff, |
|
273 | - 8806, 9673, 0, 0xffff, |
|
274 | - 9675, 63742, 0, 0xffff, |
|
275 | - 63744, 64256, 0, 0xffff, |
|
276 | - ); |
|
277 | - break; |
|
278 | - case 'ISO-8859-1': |
|
279 | - $convmap = array( 256, 10000, 0, 0xffff ); |
|
280 | - break; |
|
281 | - } |
|
245 | + $convmap = array( |
|
246 | + 256, 304, 0, 0xffff, |
|
247 | + 306, 337, 0, 0xffff, |
|
248 | + 340, 375, 0, 0xffff, |
|
249 | + 377, 401, 0, 0xffff, |
|
250 | + 403, 709, 0, 0xffff, |
|
251 | + 712, 727, 0, 0xffff, |
|
252 | + 734, 936, 0, 0xffff, |
|
253 | + 938, 959, 0, 0xffff, |
|
254 | + 961, 8210, 0, 0xffff, |
|
255 | + 8213, 8215, 0, 0xffff, |
|
256 | + 8219, 8219, 0, 0xffff, |
|
257 | + 8227, 8229, 0, 0xffff, |
|
258 | + 8231, 8239, 0, 0xffff, |
|
259 | + 8241, 8248, 0, 0xffff, |
|
260 | + 8251, 8259, 0, 0xffff, |
|
261 | + 8261, 8363, 0, 0xffff, |
|
262 | + 8365, 8481, 0, 0xffff, |
|
263 | + 8483, 8705, 0, 0xffff, |
|
264 | + 8707, 8709, 0, 0xffff, |
|
265 | + 8711, 8718, 0, 0xffff, |
|
266 | + 8720, 8720, 0, 0xffff, |
|
267 | + 8722, 8729, 0, 0xffff, |
|
268 | + 8731, 8733, 0, 0xffff, |
|
269 | + 8735, 8746, 0, 0xffff, |
|
270 | + 8748, 8775, 0, 0xffff, |
|
271 | + 8777, 8799, 0, 0xffff, |
|
272 | + 8801, 8803, 0, 0xffff, |
|
273 | + 8806, 9673, 0, 0xffff, |
|
274 | + 9675, 63742, 0, 0xffff, |
|
275 | + 63744, 64256, 0, 0xffff, |
|
276 | + ); |
|
277 | + break; |
|
278 | + case 'ISO-8859-1': |
|
279 | + $convmap = array( 256, 10000, 0, 0xffff ); |
|
280 | + break; |
|
281 | + } |
|
282 | 282 | |
283 | 283 | if ( is_array( $convmap ) ) { |
284 | 284 | $line = mb_encode_numericentity( $line, $convmap, self::$charset ); |
@@ -289,7 +289,7 @@ discard block |
||
289 | 289 | } |
290 | 290 | |
291 | 291 | return self::escape_csv( $line ); |
292 | - } |
|
292 | + } |
|
293 | 293 | |
294 | 294 | /** |
295 | 295 | * Escape a " in a csv with another " |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | header( 'Content-Description: File Transfer' ); |
65 | 65 | header( 'Content-Disposition: attachment; filename="' . esc_attr( $filename ) . '"' ); |
66 | 66 | header( 'Content-Type: text/csv; charset=' . self::$charset, true ); |
67 | - header( 'Expires: ' . gmdate( 'D, d M Y H:i:s', mktime( date( 'H' ) + 2, date( 'i' ), date( 's' ), date( 'm' ), date( 'd' ), date('Y' ) ) ) . ' GMT' ); |
|
67 | + header( 'Expires: ' . gmdate( 'D, d M Y H:i:s', mktime( date( 'H' ) + 2, date( 'i' ), date( 's' ), date( 'm' ), date( 'd' ), date( 'Y' ) ) ) . ' GMT' ); |
|
68 | 68 | header( 'Last-Modified: ' . gmdate( 'D, d M Y H:i:s' ) . ' GMT' ); |
69 | 69 | header( 'Cache-Control: no-cache, must-revalidate' ); |
70 | 70 | header( 'Pragma: no-cache' ); |
@@ -91,21 +91,21 @@ discard block |
||
91 | 91 | foreach ( self::$fields as $col ) { |
92 | 92 | $field_headings = array(); |
93 | 93 | if ( isset( $col->field_options['separate_value'] ) && $col->field_options['separate_value'] && ! in_array( $col->type, array( 'user_id', 'file', 'data', 'date' ) ) ) { |
94 | - $field_headings[ $col->id . '_label' ] = strip_tags( $col->name . ' ' . __( '(label)', 'formidable' ) ); |
|
94 | + $field_headings[$col->id . '_label'] = strip_tags( $col->name . ' ' . __( '(label)', 'formidable' ) ); |
|
95 | 95 | } |
96 | 96 | |
97 | - $field_headings[ $col->id ] = strip_tags( $col->name ); |
|
97 | + $field_headings[$col->id] = strip_tags( $col->name ); |
|
98 | 98 | $field_headings = apply_filters( 'frm_csv_field_columns', $field_headings, array( 'field' => $col ) ); |
99 | 99 | $headings += $field_headings; |
100 | 100 | } |
101 | 101 | |
102 | 102 | if ( self::$comment_count ) { |
103 | - for ( $i = 0; $i < self::$comment_count; $i++ ) { |
|
104 | - $headings[ 'comment' . $i ] = __( 'Comment', 'formidable' ); |
|
105 | - $headings[ 'comment_user_id' . $i ] = __( 'Comment User', 'formidable' ); |
|
106 | - $headings[ 'comment_created_at' . $i ] = __( 'Comment Date', 'formidable' ); |
|
103 | + for ( $i = 0; $i < self::$comment_count; $i ++ ) { |
|
104 | + $headings['comment' . $i] = __( 'Comment', 'formidable' ); |
|
105 | + $headings['comment_user_id' . $i] = __( 'Comment User', 'formidable' ); |
|
106 | + $headings['comment_created_at' . $i] = __( 'Comment Date', 'formidable' ); |
|
107 | 107 | } |
108 | - unset($i); |
|
108 | + unset( $i ); |
|
109 | 109 | } |
110 | 110 | |
111 | 111 | $headings['created_at'] = __( 'Timestamp', 'formidable' ); |
@@ -152,30 +152,30 @@ discard block |
||
152 | 152 | continue; |
153 | 153 | } |
154 | 154 | |
155 | - if ( ! isset( $entries[ self::$entry->parent_item_id ]->metas[ $meta_id ] ) ) { |
|
156 | - $entries[ self::$entry->parent_item_id ]->metas[ $meta_id ] = array(); |
|
157 | - } else if ( ! is_array( $entries[ self::$entry->parent_item_id ]->metas[ $meta_id ] ) ) { |
|
155 | + if ( ! isset( $entries[self::$entry->parent_item_id]->metas[$meta_id] ) ) { |
|
156 | + $entries[self::$entry->parent_item_id]->metas[$meta_id] = array(); |
|
157 | + } else if ( ! is_array( $entries[self::$entry->parent_item_id]->metas[$meta_id] ) ) { |
|
158 | 158 | // if the data is here, it should be an array but if this field has collected data |
159 | 159 | // both while inside and outside of the repeating section, it's possible this is a string |
160 | - $entries[ self::$entry->parent_item_id ]->metas[ $meta_id ] = (array) $entries[ self::$entry->parent_item_id ]->metas[ $meta_id ]; |
|
160 | + $entries[self::$entry->parent_item_id]->metas[$meta_id] = (array) $entries[self::$entry->parent_item_id]->metas[$meta_id]; |
|
161 | 161 | } |
162 | 162 | |
163 | 163 | //add the repeated values |
164 | - $entries[ self::$entry->parent_item_id ]->metas[ $meta_id ][] = $meta_value; |
|
164 | + $entries[self::$entry->parent_item_id]->metas[$meta_id][] = $meta_value; |
|
165 | 165 | } |
166 | - $entries[ self::$entry->parent_item_id ]->metas += self::$entry->metas; |
|
166 | + $entries[self::$entry->parent_item_id]->metas += self::$entry->metas; |
|
167 | 167 | } |
168 | 168 | |
169 | 169 | // add the embedded form id |
170 | - if ( ! isset( $entries[ self::$entry->parent_item_id ]->embedded_fields ) ) { |
|
171 | - $entries[ self::$entry->parent_item_id ]->embedded_fields = array(); |
|
170 | + if ( ! isset( $entries[self::$entry->parent_item_id]->embedded_fields ) ) { |
|
171 | + $entries[self::$entry->parent_item_id]->embedded_fields = array(); |
|
172 | 172 | } |
173 | - $entries[ self::$entry->parent_item_id ]->embedded_fields[ self::$entry->id ] = self::$entry->form_id; |
|
173 | + $entries[self::$entry->parent_item_id]->embedded_fields[self::$entry->id] = self::$entry->form_id; |
|
174 | 174 | } |
175 | 175 | |
176 | 176 | private static function add_field_values_to_csv( &$row ) { |
177 | 177 | foreach ( self::$fields as $col ) { |
178 | - $field_value = isset( self::$entry->metas[ $col->id ] ) ? self::$entry->metas[ $col->id ] : false; |
|
178 | + $field_value = isset( self::$entry->metas[$col->id] ) ? self::$entry->metas[$col->id] : false; |
|
179 | 179 | |
180 | 180 | $field_value = maybe_unserialize( $field_value ); |
181 | 181 | self::add_array_values_to_columns( $row, compact( 'col', 'field_value' ) ); |
@@ -186,13 +186,13 @@ discard block |
||
186 | 186 | $sep_value = FrmEntriesHelper::display_value( $field_value, $col, array( |
187 | 187 | 'type' => $col->type, 'post_id' => self::$entry->post_id, 'show_icon' => false, |
188 | 188 | 'entry_id' => self::$entry->id, 'sep' => self::$separator, |
189 | - 'embedded_field_id' => ( isset( self::$entry->embedded_fields ) && isset( self::$entry->embedded_fields[ self::$entry->id ] ) ) ? 'form' . self::$entry->embedded_fields[ self::$entry->id ] : 0, |
|
189 | + 'embedded_field_id' => ( isset( self::$entry->embedded_fields ) && isset( self::$entry->embedded_fields[self::$entry->id] ) ) ? 'form' . self::$entry->embedded_fields[self::$entry->id] : 0, |
|
190 | 190 | ) ); |
191 | - $row[ $col->id . '_label' ] = $sep_value; |
|
191 | + $row[$col->id . '_label'] = $sep_value; |
|
192 | 192 | unset( $sep_value ); |
193 | 193 | } |
194 | 194 | |
195 | - $row[ $col->id ] = $field_value; |
|
195 | + $row[$col->id] = $field_value; |
|
196 | 196 | |
197 | 197 | unset( $col, $field_value ); |
198 | 198 | } |
@@ -205,8 +205,8 @@ discard block |
||
205 | 205 | if ( is_array( $atts['field_value'] ) ) { |
206 | 206 | foreach ( $atts['field_value'] as $key => $sub_value ) { |
207 | 207 | $column_key = $atts['col']->id . '_' . $key; |
208 | - if ( ! is_numeric( $key ) && isset( self::$headings[ $column_key ] ) ) { |
|
209 | - $row[ $column_key ] = $sub_value; |
|
208 | + if ( ! is_numeric( $key ) && isset( self::$headings[$column_key] ) ) { |
|
209 | + $row[$column_key] = $sub_value; |
|
210 | 210 | } |
211 | 211 | } |
212 | 212 | } |
@@ -227,7 +227,7 @@ discard block |
||
227 | 227 | $sep = ''; |
228 | 228 | |
229 | 229 | foreach ( self::$headings as $k => $heading ) { |
230 | - $row = isset( $rows[ $k ] ) ? $rows[ $k ] : ''; |
|
230 | + $row = isset( $rows[$k] ) ? $rows[$k] : ''; |
|
231 | 231 | if ( is_array( $row ) ) { |
232 | 232 | // implode the repeated field values |
233 | 233 | $row = implode( self::$separator, FrmAppHelper::array_flatten( $row, 'reset' ) ); |
@@ -45,7 +45,7 @@ |
||
45 | 45 | /** |
46 | 46 | * Get the singleton instance of this class |
47 | 47 | * |
48 | - * @return object |
|
48 | + * @return FrmPointers |
|
49 | 49 | */ |
50 | 50 | public static function get_instance() { |
51 | 51 | if ( ! ( self::$instance instanceof self ) ) { |
@@ -239,16 +239,16 @@ discard block |
||
239 | 239 | |
240 | 240 | return array( |
241 | 241 | 'content' => '<h3>' . __( 'Forms', 'formidable' ) . '</h3>' |
242 | - . '<p>' . __( 'All your forms will be listed on this page. Create your first form by clicking on the "Add New" button.', 'formidable' ) . '</p>' |
|
243 | - . '<p><strong>' . __( 'Subscribe to our Newsletter', 'formidable' ) . '</strong><br/>' |
|
244 | - . sprintf( __( 'If you would like to hear about new features and updates for %1$s, subscribe to our newsletter:', 'formidable' ), 'Formidable' ) . '</p>' |
|
245 | - . '<form target="_blank" action="//formidablepro.us1.list-manage.com/subscribe/post?u=a4a913790ffb892daacc6f271&id=7e7df15967" method="post" selector="newsletter-form" accept-charset="' . esc_attr( get_bloginfo( 'charset' ) ) . '">' |
|
246 | - . '<p>' |
|
247 | - . '<input style="margin: 5px; color:#666" name="EMAIL" value="' . esc_attr( $current_user->user_email ) . '" selector="newsletter-email" placeholder="' . esc_attr__( 'Email', 'formidable' ) . '"/>' |
|
242 | + . '<p>' . __( 'All your forms will be listed on this page. Create your first form by clicking on the "Add New" button.', 'formidable' ) . '</p>' |
|
243 | + . '<p><strong>' . __( 'Subscribe to our Newsletter', 'formidable' ) . '</strong><br/>' |
|
244 | + . sprintf( __( 'If you would like to hear about new features and updates for %1$s, subscribe to our newsletter:', 'formidable' ), 'Formidable' ) . '</p>' |
|
245 | + . '<form target="_blank" action="//formidablepro.us1.list-manage.com/subscribe/post?u=a4a913790ffb892daacc6f271&id=7e7df15967" method="post" selector="newsletter-form" accept-charset="' . esc_attr( get_bloginfo( 'charset' ) ) . '">' |
|
246 | + . '<p>' |
|
247 | + . '<input style="margin: 5px; color:#666" name="EMAIL" value="' . esc_attr( $current_user->user_email ) . '" selector="newsletter-email" placeholder="' . esc_attr__( 'Email', 'formidable' ) . '"/>' |
|
248 | 248 | . '<input type="hidden" name="group[4505]" value="4" />' |
249 | - . '<button type="submit" class="button-primary">' . esc_html__( 'Subscribe', 'formidable' ) . '</button>' |
|
250 | - . '</p>' |
|
251 | - . '</form>', |
|
249 | + . '<button type="submit" class="button-primary">' . esc_html__( 'Subscribe', 'formidable' ) . '</button>' |
|
250 | + . '</p>' |
|
251 | + . '</form>', |
|
252 | 252 | 'next_page' => 'entries', |
253 | 253 | ); |
254 | 254 | } |
@@ -261,7 +261,7 @@ discard block |
||
261 | 261 | private function entries_pointer() { |
262 | 262 | return array( |
263 | 263 | 'content' => '<h3>' . __( 'Entries', 'formidable' ) . '</h3>' |
264 | - . '<p>' . __( 'Each time one of your forms is submitted, an entry is created. You will find every form submission listed here so you will always have a backup if an email fails.', 'formidable' ) . '</p>', |
|
264 | + . '<p>' . __( 'Each time one of your forms is submitted, an entry is created. You will find every form submission listed here so you will always have a backup if an email fails.', 'formidable' ) . '</p>', |
|
265 | 265 | 'prev_page' => '', |
266 | 266 | 'next_page' => 'styles', |
267 | 267 | 'selector' => '.wp-list-table', |
@@ -277,7 +277,7 @@ discard block |
||
277 | 277 | private function styles_pointer() { |
278 | 278 | return array( |
279 | 279 | 'content' => '<h3>' . __( 'Styles', 'formidable' ) . '</h3>' |
280 | - . '<p>' . __( 'Want to make changes to the way your forms look? Make all the changes you would like right here, and watch the sample form change before your eyes.', 'formidable' ) . '</p>', |
|
280 | + . '<p>' . __( 'Want to make changes to the way your forms look? Make all the changes you would like right here, and watch the sample form change before your eyes.', 'formidable' ) . '</p>', |
|
281 | 281 | 'prev_page' => 'entries', |
282 | 282 | 'next_page' => 'import', |
283 | 283 | 'selector' => '.general-style', |
@@ -293,7 +293,7 @@ discard block |
||
293 | 293 | private function import_pointer() { |
294 | 294 | return array( |
295 | 295 | 'content' => '<h3>' . __( 'Import/Export', 'formidable' ) . '</h3>' |
296 | - . '<p>' . __( 'Import and export forms and styles when copying from one site to another or sharing with someone else. Your entries can be exported to a CSV as well. The Premium version also includes the option to import entries to your site from a CSV.', 'formidable' ) . '</p>', |
|
296 | + . '<p>' . __( 'Import and export forms and styles when copying from one site to another or sharing with someone else. Your entries can be exported to a CSV as well. The Premium version also includes the option to import entries to your site from a CSV.', 'formidable' ) . '</p>', |
|
297 | 297 | 'prev_page' => 'styles', |
298 | 298 | 'next_page' => 'settings', |
299 | 299 | 'selector' => '.inside.with_frm_style', |
@@ -313,7 +313,7 @@ discard block |
||
313 | 313 | . __( 'Turn stylesheets and scripts off, set which user roles have access to change and create forms, setup your reCaptcha, and set default messages for new forms and fields.', 'formidable' ) |
314 | 314 | . '<p><strong>' . __( 'Plugin Licenses', 'formidable' ) . '</strong><br/>' |
315 | 315 | . sprintf( __( 'Once you’ve purchased %1$s or any addons, you’ll have to enter a license key to get access to all of their powerful features. A Plugin Licenses tab will appear here for you to enter your license key.', 'formidable' ), 'Formidable Pro' ) |
316 | - . '</p>', |
|
316 | + . '</p>', |
|
317 | 317 | 'prev_page' => 'import', |
318 | 318 | 'next_page' => 'addons', |
319 | 319 | ); |
@@ -327,10 +327,10 @@ discard block |
||
327 | 327 | private function addons_pointer() { |
328 | 328 | return array( |
329 | 329 | 'content' => '<h3>' . __( 'Addons', 'formidable' ) . '</h3>' |
330 | - . '<p>' . sprintf( __( 'The powerful functions of %1$s can be extended with %2$spremium plugins%3$s. You can read all about the Formidable Premium Plugins %2$shere%3$s.', 'formidable' ), 'Formidable', '<a target="_blank" href="' . esc_url( FrmAppHelper::make_affiliate_url( 'https://formidableforms.com/' ) ) . '">', '</a>' ) |
|
330 | + . '<p>' . sprintf( __( 'The powerful functions of %1$s can be extended with %2$spremium plugins%3$s. You can read all about the Formidable Premium Plugins %2$shere%3$s.', 'formidable' ), 'Formidable', '<a target="_blank" href="' . esc_url( FrmAppHelper::make_affiliate_url( 'https://formidableforms.com/' ) ) . '">', '</a>' ) |
|
331 | 331 | . '</p>' |
332 | - . '<p><strong>' . __( 'Like this plugin?', 'formidable' ) . '</strong><br/>' . sprintf( __( 'So, we’ve come to the end of the tour. If you like the plugin, please %1$srate it 5 stars on WordPress.org%2$s!', 'formidable' ), '<a target="_blank" href="https://wordpress.org/plugins/formidable/">', '</a>' ) . '</p>' |
|
333 | - . '<p>' . sprintf( __( 'Thank you for using our plugin and good luck with your forms!<br/><br/>Best,<br/>Team Formidable - %1$sformidableforms.com%2$s', 'formidable' ), '<a target="_blank" href="' . esc_url( FrmAppHelper::make_affiliate_url( 'https://formidableforms.com/' ) ) . '">', '</a>' ) . '</p>', |
|
332 | + . '<p><strong>' . __( 'Like this plugin?', 'formidable' ) . '</strong><br/>' . sprintf( __( 'So, we’ve come to the end of the tour. If you like the plugin, please %1$srate it 5 stars on WordPress.org%2$s!', 'formidable' ), '<a target="_blank" href="https://wordpress.org/plugins/formidable/">', '</a>' ) . '</p>' |
|
333 | + . '<p>' . sprintf( __( 'Thank you for using our plugin and good luck with your forms!<br/><br/>Best,<br/>Team Formidable - %1$sformidableforms.com%2$s', 'formidable' ), '<a target="_blank" href="' . esc_url( FrmAppHelper::make_affiliate_url( 'https://formidableforms.com/' ) ) . '">', '</a>' ) . '</p>', |
|
334 | 334 | 'prev_page' => 'settings', |
335 | 335 | ); |
336 | 336 | } |
@@ -188,7 +188,7 @@ |
||
188 | 188 | * @param string $page Admin page key. |
189 | 189 | */ |
190 | 190 | private function do_page_pointer( $page ) { |
191 | - $pointer = call_user_func( array( $this, $this->admin_pages[ $page ] ) ); |
|
191 | + $pointer = call_user_func( array( $this, $this->admin_pages[$page] ) ); |
|
192 | 192 | |
193 | 193 | $opt_arr = array( |
194 | 194 | 'content' => $pointer['content'], |
@@ -4,7 +4,7 @@ discard block |
||
4 | 4 | <a href="?page=formidable-styles&page-tab=default#tabs-panel-default-color" class="nav-tab-link" data-type="tabs-panel-default-color"><?php _e( 'Default', 'formidable' ) ?></a> |
5 | 5 | </li> |
6 | 6 | <li <?php echo ( 'active-color' == $current_tab ? ' class="tabs"' : '' ); ?>> |
7 | - <a href="<?php echo esc_url('?page=formidable-styles&page-tab=active-color#page-active-color') ?>" class="nav-tab-link" data-type="tabs-panel-active-color"><?php _e( 'Active', 'formidable' ) ?></a> |
|
7 | + <a href="<?php echo esc_url( '?page=formidable-styles&page-tab=active-color#page-active-color' ) ?>" class="nav-tab-link" data-type="tabs-panel-active-color"><?php _e( 'Active', 'formidable' ) ?></a> |
|
8 | 8 | </li> |
9 | 9 | <li <?php echo ( 'active-error' == $current_tab ? ' class="tabs"' : '' ); ?>> |
10 | 10 | <a href="?page=formidable-styles&page-tab=active-error#tabs-panel-active-error" class="nav-tab-link" data-type="tabs-panel-active-error"><?php _e( 'Error', 'formidable' ) ?></a> |
@@ -19,34 +19,34 @@ discard block |
||
19 | 19 | ?>"> |
20 | 20 | <div class="field-group field-group-border clearfix"> |
21 | 21 | <label class="background"><?php _e( 'BG color', 'formidable' ) ?></label> |
22 | - <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name('bg_color') ) ?>" id="frm_bg_color" class="hex" value="<?php echo esc_attr( $style->post_content['bg_color'] ) ?>" /> |
|
22 | + <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name( 'bg_color' ) ) ?>" id="frm_bg_color" class="hex" value="<?php echo esc_attr( $style->post_content['bg_color'] ) ?>" /> |
|
23 | 23 | </div> |
24 | 24 | <div class="field-group clearfix"> |
25 | 25 | <label><?php _e( 'Text', 'formidable' ) ?></label> |
26 | - <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name('text_color') ) ?>" id="frm_text_color" class="hex" value="<?php echo esc_attr( $style->post_content['text_color'] ) ?>" /> |
|
26 | + <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name( 'text_color' ) ) ?>" id="frm_text_color" class="hex" value="<?php echo esc_attr( $style->post_content['text_color'] ) ?>" /> |
|
27 | 27 | </div> |
28 | 28 | |
29 | 29 | <div class="field-group field-group-border clearfix"> |
30 | 30 | <label><?php _e( 'Border', 'formidable' ) ?></label> |
31 | - <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name('border_color') ) ?>" id="frm_border_color" class="hex" value="<?php echo esc_attr( $style->post_content['border_color'] ) ?>" /> |
|
31 | + <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name( 'border_color' ) ) ?>" id="frm_border_color" class="hex" value="<?php echo esc_attr( $style->post_content['border_color'] ) ?>" /> |
|
32 | 32 | </div> |
33 | 33 | <div class="field-group clearfix"> |
34 | 34 | <label><?php _e( 'Thickness', 'formidable' ) ?></label> |
35 | - <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name('field_border_width') ) ?>" id="frm_field_border_width" value="<?php echo esc_attr( $style->post_content['field_border_width'] ) ?>" size="4" /> |
|
35 | + <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name( 'field_border_width' ) ) ?>" id="frm_field_border_width" value="<?php echo esc_attr( $style->post_content['field_border_width'] ) ?>" size="4" /> |
|
36 | 36 | </div> |
37 | 37 | <div class="field-group clearfix"> |
38 | 38 | <label><?php _e( 'Style', 'formidable' ) ?></label> |
39 | - <select name="<?php echo esc_attr( $frm_style->get_field_name('field_border_style') ) ?>" id="frm_field_border_style"> |
|
40 | - <option value="solid" <?php selected($style->post_content['field_border_style'], 'solid') ?>><?php _e( 'solid', 'formidable' ) ?></option> |
|
41 | - <option value="dotted" <?php selected($style->post_content['field_border_style'], 'dotted') ?>><?php _e( 'dotted', 'formidable' ) ?></option> |
|
42 | - <option value="dashed" <?php selected($style->post_content['field_border_style'], 'dashed') ?>><?php _e( 'dashed', 'formidable' ) ?></option> |
|
43 | - <option value="double" <?php selected($style->post_content['field_border_style'], 'double') ?>><?php _e( 'double', 'formidable' ) ?></option> |
|
39 | + <select name="<?php echo esc_attr( $frm_style->get_field_name( 'field_border_style' ) ) ?>" id="frm_field_border_style"> |
|
40 | + <option value="solid" <?php selected( $style->post_content['field_border_style'], 'solid' ) ?>><?php _e( 'solid', 'formidable' ) ?></option> |
|
41 | + <option value="dotted" <?php selected( $style->post_content['field_border_style'], 'dotted' ) ?>><?php _e( 'dotted', 'formidable' ) ?></option> |
|
42 | + <option value="dashed" <?php selected( $style->post_content['field_border_style'], 'dashed' ) ?>><?php _e( 'dashed', 'formidable' ) ?></option> |
|
43 | + <option value="double" <?php selected( $style->post_content['field_border_style'], 'double' ) ?>><?php _e( 'double', 'formidable' ) ?></option> |
|
44 | 44 | </select> |
45 | 45 | </div> |
46 | 46 | <div class="clear"></div> |
47 | 47 | <p class="frm_no_bottom_margin"> |
48 | 48 | <label> |
49 | - <input type="checkbox" name="<?php echo esc_attr( $frm_style->get_field_name('remove_box_shadow') ) ?>" id="frm_remove_box_shadow" value="1" <?php checked($style->post_content['remove_box_shadow'], 1) ?> /> |
|
49 | + <input type="checkbox" name="<?php echo esc_attr( $frm_style->get_field_name( 'remove_box_shadow' ) ) ?>" id="frm_remove_box_shadow" value="1" <?php checked( $style->post_content['remove_box_shadow'], 1 ) ?> /> |
|
50 | 50 | <?php _e( 'Remove box shadow', 'formidable' ) ?> |
51 | 51 | </label> |
52 | 52 | </p> |
@@ -57,16 +57,16 @@ discard block |
||
57 | 57 | ?>"> |
58 | 58 | <div class="field-group field-group-border clearfix"> |
59 | 59 | <label class="background"><?php _e( 'BG color', 'formidable' ) ?></label> |
60 | - <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name('bg_color_active') ) ?>" id="frm_bg_color_active" class="hex" value="<?php echo esc_attr( $style->post_content['bg_color_active'] ) ?>" /> |
|
60 | + <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name( 'bg_color_active' ) ) ?>" id="frm_bg_color_active" class="hex" value="<?php echo esc_attr( $style->post_content['bg_color_active'] ) ?>" /> |
|
61 | 61 | </div> |
62 | 62 | <div class="field-group clearfix"> |
63 | 63 | <label><?php _e( 'Border', 'formidable' ) ?></label> |
64 | - <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name('border_color_active') ) ?>" id="frm_border_color_active" class="hex" value="<?php echo esc_attr( $style->post_content['border_color_active'] ) ?>" /> |
|
64 | + <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name( 'border_color_active' ) ) ?>" id="frm_border_color_active" class="hex" value="<?php echo esc_attr( $style->post_content['border_color_active'] ) ?>" /> |
|
65 | 65 | </div> |
66 | 66 | <div class="clear"></div> |
67 | 67 | <p class="frm_no_bottom_margin"> |
68 | 68 | <label> |
69 | - <input type="checkbox" name="<?php echo esc_attr( $frm_style->get_field_name('remove_box_shadow_active') ) ?>" id="frm_remove_box_shadow_active" value="1" <?php checked($style->post_content['remove_box_shadow_active'], 1) ?> /> |
|
69 | + <input type="checkbox" name="<?php echo esc_attr( $frm_style->get_field_name( 'remove_box_shadow_active' ) ) ?>" id="frm_remove_box_shadow_active" value="1" <?php checked( $style->post_content['remove_box_shadow_active'], 1 ) ?> /> |
|
70 | 70 | <?php _e( 'Remove box shadow', 'formidable' ) ?> |
71 | 71 | </label> |
72 | 72 | </p> |
@@ -77,28 +77,28 @@ discard block |
||
77 | 77 | ?>"> |
78 | 78 | <div class="field-group field-group-border clearfix"> |
79 | 79 | <label class="background"><?php _e( 'BG color', 'formidable' ) ?></label> |
80 | - <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name('bg_color_error') ) ?>" id="frm_bg_color_error" class="hex" value="<?php echo esc_attr( $style->post_content['bg_color_error'] ) ?>" /> |
|
80 | + <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name( 'bg_color_error' ) ) ?>" id="frm_bg_color_error" class="hex" value="<?php echo esc_attr( $style->post_content['bg_color_error'] ) ?>" /> |
|
81 | 81 | </div> |
82 | 82 | <div class="field-group clearfix"> |
83 | 83 | <label><?php _e( 'Text', 'formidable' ) ?></label> |
84 | - <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name('text_color_error') ) ?>" id="frm_text_color_error" class="hex" value="<?php echo esc_attr( $style->post_content['text_color_error'] ) ?>" /> |
|
84 | + <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name( 'text_color_error' ) ) ?>" id="frm_text_color_error" class="hex" value="<?php echo esc_attr( $style->post_content['text_color_error'] ) ?>" /> |
|
85 | 85 | </div> |
86 | 86 | |
87 | 87 | <div class="field-group field-group-border clearfix"> |
88 | 88 | <label><?php _e( 'Border', 'formidable' ) ?></label> |
89 | - <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name('border_color_error') ) ?>" id="frm_border_color_error" class="hex" value="<?php echo esc_attr( $style->post_content['border_color_error'] ) ?>" /> |
|
89 | + <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name( 'border_color_error' ) ) ?>" id="frm_border_color_error" class="hex" value="<?php echo esc_attr( $style->post_content['border_color_error'] ) ?>" /> |
|
90 | 90 | </div> |
91 | 91 | <div class="field-group clearfix"> |
92 | 92 | <label><?php _e( 'Thickness', 'formidable' ) ?></label> |
93 | - <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name('border_width_error') ) ?>" id="frm_border_width_error" value="<?php echo esc_attr( $style->post_content['border_width_error'] ) ?>" size="4" /> |
|
93 | + <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name( 'border_width_error' ) ) ?>" id="frm_border_width_error" value="<?php echo esc_attr( $style->post_content['border_width_error'] ) ?>" size="4" /> |
|
94 | 94 | </div> |
95 | 95 | <div class="field-group clearfix"> |
96 | 96 | <label><?php _e( 'Style', 'formidable' ) ?></label> |
97 | - <select name="<?php echo esc_attr( $frm_style->get_field_name('border_style_error') ) ?>" id="frm_border_style_error"> |
|
98 | - <option value="solid" <?php selected($style->post_content['border_style_error'], 'solid') ?>><?php _e( 'solid', 'formidable' ) ?></option> |
|
99 | - <option value="dotted" <?php selected($style->post_content['border_style_error'], 'dotted') ?>><?php _e( 'dotted', 'formidable' ) ?></option> |
|
100 | - <option value="dashed" <?php selected($style->post_content['border_style_error'], 'dashed') ?>><?php _e( 'dashed', 'formidable' ) ?></option> |
|
101 | - <option value="double" <?php selected($style->post_content['border_style_error'], 'double') ?>><?php _e( 'double', 'formidable' ) ?></option> |
|
97 | + <select name="<?php echo esc_attr( $frm_style->get_field_name( 'border_style_error' ) ) ?>" id="frm_border_style_error"> |
|
98 | + <option value="solid" <?php selected( $style->post_content['border_style_error'], 'solid' ) ?>><?php _e( 'solid', 'formidable' ) ?></option> |
|
99 | + <option value="dotted" <?php selected( $style->post_content['border_style_error'], 'dotted' ) ?>><?php _e( 'dotted', 'formidable' ) ?></option> |
|
100 | + <option value="dashed" <?php selected( $style->post_content['border_style_error'], 'dashed' ) ?>><?php _e( 'dashed', 'formidable' ) ?></option> |
|
101 | + <option value="double" <?php selected( $style->post_content['border_style_error'], 'double' ) ?>><?php _e( 'double', 'formidable' ) ?></option> |
|
102 | 102 | </select> |
103 | 103 | </div> |
104 | 104 | |
@@ -110,16 +110,16 @@ discard block |
||
110 | 110 | ?>"> |
111 | 111 | <div class="field-group field-group-border clearfix"> |
112 | 112 | <label class="background"><?php _e( 'BG color', 'formidable' ) ?></label> |
113 | - <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name('bg_color_disabled') ) ?>" id="frm_bg_color_disabled" class="hex" value="<?php echo esc_attr( $style->post_content['bg_color_disabled'] ) ?>" /> |
|
113 | + <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name( 'bg_color_disabled' ) ) ?>" id="frm_bg_color_disabled" class="hex" value="<?php echo esc_attr( $style->post_content['bg_color_disabled'] ) ?>" /> |
|
114 | 114 | </div> |
115 | 115 | <div class="field-group clearfix"> |
116 | 116 | <label><?php _e( 'Text', 'formidable' ) ?></label> |
117 | - <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name('text_color_disabled') ) ?>" id="frm_text_color_disabled" class="hex" value="<?php echo esc_attr( $style->post_content['text_color_disabled'] ) ?>" /> |
|
117 | + <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name( 'text_color_disabled' ) ) ?>" id="frm_text_color_disabled" class="hex" value="<?php echo esc_attr( $style->post_content['text_color_disabled'] ) ?>" /> |
|
118 | 118 | </div> |
119 | 119 | |
120 | 120 | <div class="field-group clearfix"> |
121 | 121 | <label><?php _e( 'Border', 'formidable' ) ?></label> |
122 | - <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name('border_color_disabled') ) ?>" id="frm_border_color_disabled" class="hex" value="<?php echo esc_attr( $style->post_content['border_color_disabled'] ) ?>" /> |
|
122 | + <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name( 'border_color_disabled' ) ) ?>" id="frm_border_color_disabled" class="hex" value="<?php echo esc_attr( $style->post_content['border_color_disabled'] ) ?>" /> |
|
123 | 123 | </div> |
124 | 124 | <div class="clear"></div> |
125 | 125 | </div><!-- /.tabs-panel --> |
@@ -1,59 +1,59 @@ |
||
1 | 1 | <p> |
2 | - <label><input type="checkbox" name="<?php echo esc_attr( $frm_style->get_field_name('center_form') ) ?>" id="frm_center_form" value="1" <?php checked($style->post_content['center_form'], 1) ?> /> |
|
2 | + <label><input type="checkbox" name="<?php echo esc_attr( $frm_style->get_field_name( 'center_form' ) ) ?>" id="frm_center_form" value="1" <?php checked( $style->post_content['center_form'], 1 ) ?> /> |
|
3 | 3 | <?php _e( 'Center form on page', 'formidable' ) ?> <span class="frm_help frm_icon_font frm_tooltip_icon" title="<?php esc_attr_e( 'This will center your form on the page where it is published if the form width is less than the available width on the page.', 'formidable' ) ?>" ></span> |
4 | 4 | </label> |
5 | 5 | </p> |
6 | 6 | |
7 | 7 | <div class="field-group clearfix frm-first-row"> |
8 | 8 | <label><?php _e( 'Alignment', 'formidable' ) ?></label> |
9 | - <select name="<?php echo esc_attr( $frm_style->get_field_name('form_align') ) ?>" id="frm_form_align"> |
|
10 | - <option value="left" <?php selected($style->post_content['form_align'], 'left') ?>><?php _e( 'left', 'formidable' ) ?></option> |
|
11 | - <option value="right" <?php selected($style->post_content['form_align'], 'right') ?>><?php _e( 'right', 'formidable' ) ?></option> |
|
12 | - <option value="center" <?php selected($style->post_content['form_align'], 'center') ?>><?php _e( 'center', 'formidable' ) ?></option> |
|
9 | + <select name="<?php echo esc_attr( $frm_style->get_field_name( 'form_align' ) ) ?>" id="frm_form_align"> |
|
10 | + <option value="left" <?php selected( $style->post_content['form_align'], 'left' ) ?>><?php _e( 'left', 'formidable' ) ?></option> |
|
11 | + <option value="right" <?php selected( $style->post_content['form_align'], 'right' ) ?>><?php _e( 'right', 'formidable' ) ?></option> |
|
12 | + <option value="center" <?php selected( $style->post_content['form_align'], 'center' ) ?>><?php _e( 'center', 'formidable' ) ?></option> |
|
13 | 13 | </select> |
14 | 14 | </div> |
15 | 15 | |
16 | 16 | <div class="field-group clearfix frm-first-row"> |
17 | 17 | <label><?php _e( 'Max Width', 'formidable' ) ?></label> |
18 | - <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name('form_width') ) ?>" value="<?php echo esc_attr( $style->post_content['form_width'] ) ?>"/> |
|
18 | + <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name( 'form_width' ) ) ?>" value="<?php echo esc_attr( $style->post_content['form_width'] ) ?>"/> |
|
19 | 19 | </div> |
20 | 20 | |
21 | 21 | <div class="field-group clearfix frm-first-row"> |
22 | 22 | <label><?php _e( 'Background', 'formidable' ) ?></label> |
23 | - <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name('fieldset_bg_color') ) ?>" id="frm_fieldset_bg_color" class="hex" value="<?php echo esc_attr( $style->post_content['fieldset_bg_color'] ) ?>" size="4" /> |
|
23 | + <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name( 'fieldset_bg_color' ) ) ?>" id="frm_fieldset_bg_color" class="hex" value="<?php echo esc_attr( $style->post_content['fieldset_bg_color'] ) ?>" size="4" /> |
|
24 | 24 | </div> |
25 | 25 | |
26 | 26 | <div class="field-group field-group-border clearfix"> |
27 | 27 | <label><?php _e( 'Border', 'formidable' ) ?></label> |
28 | - <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name('fieldset') ) ?>" id="frm_fieldset" value="<?php echo esc_attr( $style->post_content['fieldset'] ) ?>" size="4" /> |
|
28 | + <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name( 'fieldset' ) ) ?>" id="frm_fieldset" value="<?php echo esc_attr( $style->post_content['fieldset'] ) ?>" size="4" /> |
|
29 | 29 | </div> |
30 | 30 | |
31 | 31 | <div class="field-group clearfix"> |
32 | 32 | <label><?php _e( 'Color', 'formidable' ) ?></label> |
33 | - <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name('fieldset_color') ) ?>" id="frm_fieldset_color" class="hex" value="<?php echo esc_attr( $style->post_content['fieldset_color'] ) ?>" /> |
|
33 | + <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name( 'fieldset_color' ) ) ?>" id="frm_fieldset_color" class="hex" value="<?php echo esc_attr( $style->post_content['fieldset_color'] ) ?>" /> |
|
34 | 34 | </div> |
35 | 35 | |
36 | 36 | <div class="field-group clearfix"> |
37 | 37 | <label><?php _e( 'Padding', 'formidable' ) ?></label> |
38 | - <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name('fieldset_padding') ) ?>" id="frm_fieldset_padding" value="<?php echo esc_attr( $style->post_content['fieldset_padding'] ) ?>" size="4" /> |
|
38 | + <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name( 'fieldset_padding' ) ) ?>" id="frm_fieldset_padding" value="<?php echo esc_attr( $style->post_content['fieldset_padding'] ) ?>" size="4" /> |
|
39 | 39 | </div> |
40 | 40 | |
41 | 41 | <div id="frm_gen_font_box" class="field-group clearfix"> |
42 | 42 | <label><?php _e( 'Font Family', 'formidable' ) ?></label> |
43 | - <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name('font') ) ?>" id="frm_font" value="<?php echo esc_attr( $style->post_content['font'] ) ?>" class="frm_full_width" /> |
|
43 | + <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name( 'font' ) ) ?>" id="frm_font" value="<?php echo esc_attr( $style->post_content['font'] ) ?>" class="frm_full_width" /> |
|
44 | 44 | </div> |
45 | 45 | |
46 | 46 | <div class="field-group clearfix frm-half"> |
47 | 47 | <label><?php _e( 'Direction', 'formidable' ) ?></label> |
48 | - <select name="<?php echo esc_attr( $frm_style->get_field_name('direction') ) ?>" id="frm_direction"> |
|
49 | - <option value="ltr" <?php selected($style->post_content['direction'], 'ltr') ?>><?php _e( 'Left to Right', 'formidable' ) ?></option> |
|
50 | - <option value="rtl" <?php selected($style->post_content['direction'], 'rtl') ?>><?php _e( 'Right to Left', 'formidable' ) ?></option> |
|
48 | + <select name="<?php echo esc_attr( $frm_style->get_field_name( 'direction' ) ) ?>" id="frm_direction"> |
|
49 | + <option value="ltr" <?php selected( $style->post_content['direction'], 'ltr' ) ?>><?php _e( 'Left to Right', 'formidable' ) ?></option> |
|
50 | + <option value="rtl" <?php selected( $style->post_content['direction'], 'rtl' ) ?>><?php _e( 'Right to Left', 'formidable' ) ?></option> |
|
51 | 51 | </select> |
52 | 52 | </div> |
53 | 53 | |
54 | 54 | <div class="clear"></div> |
55 | 55 | <p class="frm_no_bottom_margin"> |
56 | - <label><input type="checkbox" name="<?php echo esc_attr( $frm_style->get_field_name('important_style') ) ?>" id="frm_important_style" value="1" <?php checked($style->post_content['important_style'], 1) ?> /> |
|
56 | + <label><input type="checkbox" name="<?php echo esc_attr( $frm_style->get_field_name( 'important_style' ) ) ?>" id="frm_important_style" value="1" <?php checked( $style->post_content['important_style'], 1 ) ?> /> |
|
57 | 57 | <?php _e( 'Override theme styling', 'formidable' ) ?> <span class="frm_help frm_icon_font frm_tooltip_icon" title="<?php esc_attr_e( 'This will add !important to many of the lines in the Formidable styling to make sure it will be used.', 'formidable' ) ?>" ></span> |
58 | 58 | </label> |
59 | 59 | </p> |