PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 5.2.02.01
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v5.2.02.01
6.35 6.34 6.33.1 6.33 6.32.1 6.32 6.31 6.25 6.25.1 6.26 6.26.1 6.27 6.28 6.29 6.3 6.3.1 6.3.2 6.30 6.4 6.4.1 6.4.2 6.5 6.5.1 6.5.2 6.5.3 All 141 releases
← All changes | classes/helpers/FrmFormsHelper.php +366 -888 6.355.2.02.01 View file →
@@ -5,43 +5,21 @@
5 5
6 6 class FrmFormsHelper {
7 7
8 8 /**
9 - * Store and re-use field type data for the insert_opt_html function (to avoid multiple calls to FrmField::all_field_selection).
10 - *
11 - * @since 6.10
12 - *
13 - * @var array|null
14 - */
15 - private static $field_type_data_for_insert_opt_html;
16 -
17 - /**
18 9 * @since 2.2.10
19 - *
20 - * @return string
21 10 */
22 11 public static function form_error_class() {
23 12 return apply_filters( 'frm_form_error_class', 'frm_error_style' );
24 13 }
25 14
26 - /**
27 - * @param string $key
28 - * @param false|object $form
29 - *
30 - * @return string
31 - */
32 15 public static function get_direct_link( $key, $form = false ) {
33 16 $target_url = esc_url( admin_url( 'admin-ajax.php?action=frm_forms_preview&form=' . $key ) );
34 - return apply_filters( 'frm_direct_link', $target_url, $key, $form );
17 + $target_url = apply_filters( 'frm_direct_link', $target_url, $key, $form );
18 +
19 + return $target_url;
35 20 }
36 21
37 - /**
38 - * @param string $field_name
39 - * @param int|string $field_value
40 - * @param array $args
41 - *
42 - * @return void
43 - */
44 22 public static function forms_dropdown( $field_name, $field_value = '', $args = array() ) {
45 23 $defaults = array(
46 24 'blank' => true,
47 25 'field_id' => false,
@@ -56,9 +34,8 @@
56 34 $args['field_id'] = $field_name;
57 35 }
58 36
59 37 $query = array();
60 -
61 38 if ( $args['exclude'] ) {
62 39 $query['id !'] = $args['exclude'];
63 40 }
64 41
@@ -67,47 +44,41 @@
67 44 $add_html = array();
68 45 self::add_html_attr( $args['onchange'], 'onchange', $add_html );
69 46 self::add_html_attr( $args['class'], 'class', $add_html );
70 47
71 - // phpcs:disable Generic.WhiteSpace.ScopeIndent
72 48 ?>
73 49 <select name="<?php echo esc_attr( $field_name ); ?>"
74 50 id="<?php echo esc_attr( $args['field_id'] ); ?>"
75 51 <?php echo wp_strip_all_tags( implode( ' ', $add_html ) ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>>
76 52 <?php if ( $args['blank'] ) { ?>
77 - <option value=""><?php echo $args['blank'] == 1 ? ' ' : '- ' . esc_attr( $args['blank'] ) . ' -'; // phpcs:ignore Universal.Operators.StrictComparisons ?></option>
53 + <option value=""><?php echo ( $args['blank'] == 1 ) ? ' ' : '- ' . esc_attr( $args['blank'] ) . ' -'; ?></option>
78 54 <?php } ?>
79 55 <?php foreach ( $forms as $form ) { ?>
80 56 <option value="<?php echo esc_attr( $form->id ); ?>" <?php selected( $field_value, $form->id ); ?>>
81 - <?php echo esc_html( '' === $form->name ? self::get_no_title_text() : FrmAppHelper::truncate( $form->name, 50 ) . ( $form->parent_form_id ? __( ' (child)', 'formidable' ) : '' ) ); // phpcs:ignore SlevomatCodingStandard.Files.LineLength.LineTooLong ?>
57 + <?php echo esc_html( '' === $form->name ? __( '(no title)', 'formidable' ) : FrmAppHelper::truncate( $form->name, 50 ) . ( $form->parent_form_id ? __( ' (child)', 'formidable' ) : '' ) ); ?>
82 58 </option>
83 59 <?php } ?>
84 60 </select>
85 61 <?php
86 - // phpcs:enable Generic.WhiteSpace.ScopeIndent
87 62 }
88 63
89 64 /**
90 - * @since 2.0.6
91 - *
92 65 * @param string $class
93 66 * @param string $param
94 - * @param array $add_html
67 + * @param array $add_html
95 68 *
96 - * @return void
69 + * @since 2.0.6
97 70 */
98 71 public static function add_html_attr( $class, $param, &$add_html ) {
99 - if ( $class ) {
100 - $add_html[ $param ] = sanitize_title( $param ) . '="' . esc_attr( sanitize_text_field( $class ) ) . '"';
72 + if ( ! empty( $class ) ) {
73 + $add_html[ $param ] = sanitize_title( $param ) . '="' . esc_attr( trim( sanitize_text_field( $class ) ) ) . '"';
101 74 }
102 75 }
103 76
104 77 /**
105 - * @param false|object|string $selected - The label for the placeholder, or the form object.
106 - *
107 - * @return void
78 + * @param string|object|false $selected - The label for the placeholder, or the form object.
108 79 */
109 - public static function form_switcher( $selected = false ) { // phpcs:ignore SlevomatCodingStandard.Complexity.Cognitive.ComplexityTooHigh, Generic.Metrics.CyclomaticComplexity.MaxExceeded, SlevomatCodingStandard.Files.LineLength.LineTooLong
80 + public static function form_switcher( $selected = false ) {
110 81 $where = apply_filters( 'frm_forms_dropdown', array(), '' );
111 82 $forms = FrmForm::get_published_forms( $where );
112 83
113 84 $args = array(
@@ -113,9 +84,8 @@
113 84 $args = array(
114 85 'id' => 0,
115 86 'form' => 0,
116 87 );
117 -
118 88 if ( isset( $_GET['id'] ) && ! isset( $_GET['form'] ) ) {
119 89 unset( $args['form'] );
120 90 } elseif ( isset( $_GET['form'] ) && ! isset( $_GET['id'] ) ) {
121 91 unset( $args['id'] );
@@ -121,43 +91,28 @@
121 91 unset( $args['id'] );
122 92 }
123 93
124 94 $frm_action = FrmAppHelper::simple_get( 'frm_action', 'sanitize_title' );
125 -
126 - if ( FrmAppHelper::is_admin_page( 'formidable-entries' ) && in_array( $frm_action, array( 'edit', 'show', 'destroy', 'destroy_all' ), true ) ) {
95 + if ( FrmAppHelper::is_admin_page( 'formidable-entries' ) && in_array( $frm_action, array( 'edit', 'show', 'destroy', 'destroy_all' ) ) ) {
127 96 $args['frm_action'] = 'list';
128 97 $args['form'] = 0;
129 - } elseif ( FrmAppHelper::is_admin_page( 'formidable' ) && in_array( $frm_action, array( 'new', 'duplicate' ), true ) ) {
98 + } elseif ( FrmAppHelper::is_admin_page( 'formidable' ) && in_array( $frm_action, array( 'new', 'duplicate' ) ) ) {
130 99 $args['frm_action'] = 'edit';
131 - } elseif ( FrmAppHelper::is_style_editor_page() ) {
132 - // Avoid passing style into form switcher on style page.
133 - unset( $args['id'] );
134 - $query_args = array(
135 - 'page' => 'formidable-styles',
136 - );
137 -
138 - if ( $frm_action ) {
139 - $query_args['frm_action'] = $frm_action;
140 - }
141 -
142 - $base = add_query_arg( $query_args, admin_url( 'admin.php' ) );
143 100 } elseif ( isset( $_GET['post'] ) ) {
144 101 $args['form'] = 0;
145 102 $base = admin_url( 'edit.php?post_type=frm_display' );
146 - }//end if
103 + }
147 104
148 105 $form_id = 0;
149 -
150 106 if ( is_object( $selected ) ) {
151 107 $form_id = $selected->id;
152 108 $selected = $selected->name;
153 109 }
154 110
155 - $name = $selected === false ? __( 'Switch Form', 'formidable' ) : $selected;
156 - $name = '' === $name || is_null( $name ) ? self::get_no_title_text() : strip_tags( $name );
111 + $name = ( $selected === false ) ? __( 'Switch Form', 'formidable' ) : $selected;
112 + $name = '' === $name ? __( '(no title)', 'formidable' ) : strip_tags( $name );
157 113 $truncated_name = FrmAppHelper::truncate( $name, 25 );
158 114
159 - // phpcs:disable Generic.WhiteSpace.ScopeIndent
160 115 if ( count( $forms ) < 2 ) {
161 116 ?>
162 117 <div id="frm_bs_dropdown">
163 118 <h1>
@@ -169,15 +124,15 @@
169 124 <?php
170 125 return;
171 126 }
172 127 ?>
173 - <div id="frm_bs_dropdown" class="dropdown <?php echo esc_attr( is_rtl() ? 'dropdown-menu-right' : 'dropdown-menu-left' ); ?>">
128 + <div id="frm_bs_dropdown" class="dropdown <?php echo esc_attr( is_rtl() ? 'pull-right' : 'pull-left' ); ?>">
174 129 <a href="#" id="frm-navbarDrop" class="frm-dropdown-toggle" data-toggle="dropdown">
175 130 <h1>
176 131 <span class="frm_bstooltip" title="<?php echo esc_attr( $truncated_name === $name ? '' : $name ); ?>" data-placement="right">
177 132 <?php echo esc_html( $name ); ?>
178 133 </span>
179 - <?php FrmAppHelper::icon_by_class( 'frmfont frm_arrowdown6_icon', array( 'aria-hidden' => 'true' ) ); ?>
134 + <?php FrmAppHelper::icon_by_class( 'frmfont frm_arrowdown4_icon', array( 'aria-hidden' => 'true' ) ); ?>
180 135 </h1>
181 136 </a>
182 137 <ul class="frm-dropdown-menu frm-on-top frm-inline-modal frm_code_list frm-full-hover" role="menu" aria-labelledby="frm-navbarDrop">
183 138 <?php if ( count( $forms ) > 8 ) { ?>
@@ -187,10 +142,8 @@
187 142 array(
188 143 'input_id' => 'dropform',
189 144 'placeholder' => __( 'Search Forms', 'formidable' ),
190 145 'tosearch' => 'frm-dropdown-form',
191 - // Specify a value to avoid the $_REQUEST['s'] default value.
192 - 'value' => '',
193 146 )
194 147 );
195 148 ?>
196 149 </li>
@@ -204,20 +157,18 @@
204 157
205 158 if ( isset( $args['id'] ) ) {
206 159 $args['id'] = $form->id;
207 160 }
208 -
209 161 if ( isset( $args['form'] ) ) {
210 162 $args['form'] = $form->id;
211 163 }
212 164
213 165 $url = isset( $base ) ? add_query_arg( $args, $base ) : add_query_arg( $args );
214 - $form_name = ! empty( $form->name ) ? $form->name : self::get_no_title_text();
166 + $form_name = empty( $form->name ) ? __( '(no title)', 'formidable' ) : $form->name;
215 167 ?>
216 168 <li class="frm-dropdown-form">
217 - <a href="<?php echo esc_url( $url ); ?>" tabindex="-1" class="frm-justify-between">
218 - <?php echo esc_html( $form_name ); ?>
219 - <span>
169 + <a href="<?php echo esc_url( $url ); ?>" tabindex="-1">
170 + <span class="frm-sub-label">
220 171 <?php
221 172 printf(
222 173 /* translators: %d: Form ID */
223 174 esc_html__( '(ID %d)', 'formidable' ),
@@ -224,53 +175,60 @@
224 175 esc_attr( $form->id )
225 176 );
226 177 ?>
227 178 </span>
179 + <?php echo esc_html( $form_name ); ?>
228 180 <span class="frm_hidden"><?php echo esc_html( $form->form_key ); ?></span>
229 181 </a>
230 182 </li>
231 183 <?php
232 184 unset( $form );
233 - }//end foreach
185 + }
234 186 ?>
235 187 </ul>
236 188 </div>
237 189 <?php
238 - // phpcs:enable Generic.WhiteSpace.ScopeIndent
239 190 }
240 191
241 192 /**
242 - * @param string $col
243 - * @param string $sort_col
244 - * @param string $sort_dir
193 + * @since 3.05
194 + * @deprecated 4.0
245 195 *
246 - * @return void
196 + * @param array $values - The form array
247 197 */
198 + public static function builder_submit_button( $values ) {
199 + FrmDeprecated::builder_submit_button( $values );
200 + }
201 +
248 202 public static function get_sortable_classes( $col, $sort_col, $sort_dir ) {
249 - echo $sort_col == $col ? 'sorted' : 'sortable'; // phpcs:ignore Universal.Operators.StrictComparisons
250 - echo $sort_col == $col && $sort_dir === 'desc' ? ' asc' : ' desc'; // phpcs:ignore Universal.Operators.StrictComparisons
203 + echo ( $sort_col == $col ) ? 'sorted' : 'sortable';
204 + echo ( $sort_col == $col && $sort_dir == 'desc' ) ? ' asc' : ' desc';
251 205 }
252 206
253 207 /**
254 208 * @since 3.0
255 - *
256 - * @param array|string $field_type
257 - *
258 - * @return string
259 209 */
260 210 public static function get_field_link_name( $field_type ) {
261 - return is_array( $field_type ) ? $field_type['name'] : $field_type;
211 + if ( is_array( $field_type ) ) {
212 + $field_label = $field_type['name'];
213 + } else {
214 + $field_label = $field_type;
215 + }
216 +
217 + return $field_label;
262 218 }
263 219
264 220 /**
265 221 * @since 3.0
266 - *
267 - * @param array|string $field_type
268 - *
269 - * @return string
270 222 */
271 223 public static function get_field_link_icon( $field_type ) {
272 - return is_array( $field_type ) && isset( $field_type['icon'] ) ? $field_type['icon'] : 'frmfont frm_pencil_icon';
224 + if ( is_array( $field_type ) && isset( $field_type['icon'] ) ) {
225 + $icon = $field_type['icon'];
226 + } else {
227 + $icon = 'frm_icon_font frm_pencil_icon';
228 + }
229 +
230 + return $icon;
273 231 }
274 232
275 233 /**
276 234 * Get the invalid form error message
@@ -282,71 +240,36 @@
282 240 * @return string
283 241 */
284 242 public static function get_invalid_error_message( $args ) {
285 243 $settings_args = $args;
286 -
287 244 if ( isset( $args['form'] ) ) {
288 245 $settings_args['current_form'] = $args['form']->id;
289 246 }
290 247
291 248 $frm_settings = FrmAppHelper::get_settings( $settings_args );
292 - $invalid_msg = do_shortcode( $frm_settings->invalid_msg );
249 + $invalid_msg = do_shortcode( $frm_settings->invalid_msg );
293 250 return apply_filters( 'frm_invalid_error_message', $invalid_msg, $args );
294 251 }
295 252
296 - /**
297 - * @param array $atts {
298 - * The success message details.
299 - *
300 - * @type string $message
301 - * @type stdClass $form
302 - * @type int $entry_id
303 - * @type string $class
304 - * }
305 - *
306 - * @return string
307 - */
308 253 public static function get_success_message( $atts ) {
309 254 $message = apply_filters( 'frm_content', $atts['message'], $atts['form'], $atts['entry_id'] );
255 + $message = do_shortcode( FrmAppHelper::use_wpautop( $message ) );
256 + $message = '<div class="' . esc_attr( $atts['class'] ) . '" role="status">' . $message . '</div>';
310 257
311 - // Only autop if the message includes line breaks.
312 - $autop = str_contains( $message, "\n" );
313 -
314 - /**
315 - * Filters whether to autop the success message.
316 - * This is false by default if the message does not include line breaks.
317 - *
318 - * @since 6.23
319 - *
320 - * @param bool $autop
321 - * @param string $message
322 - * @param object $form
323 - */
324 - $autop = (bool) apply_filters( 'frm_wpautop_success_message', $autop, $message, $atts['form'] );
325 -
326 - if ( $autop ) {
327 - $message = FrmAppHelper::use_wpautop( $message );
328 - }
329 -
330 - $message = do_shortcode( $message );
331 - return '<div class="' . esc_attr( $atts['class'] ) . '" role="status">' . $message . '</div>';
258 + return $message;
332 259 }
333 260
334 261 /**
335 262 * Used when a form is created
336 - *
337 - * @param array $values
338 - *
339 - * @return array
340 263 */
341 264 public static function setup_new_vars( $values = array() ) {
342 265 global $wpdb;
343 266
344 - if ( $values ) {
267 + if ( ! empty( $values ) ) {
345 268 $post_values = $values;
346 269 } else {
347 270 $values = array();
348 - $post_values = ! empty( $_POST ) ? $_POST : array(); // phpcs:ignore WordPress.Security.NonceVerification.Missing
271 + $post_values = isset( $_POST ) ? $_POST : array(); // phpcs:ignore WordPress.Security.NonceVerification.Missing
349 272 }
350 273
351 274 $defaults = array(
352 275 'name' => '',
@@ -351,9 +274,8 @@
351 274 $defaults = array(
352 275 'name' => '',
353 276 'description' => '',
354 277 );
355 -
356 278 foreach ( $defaults as $var => $default ) {
357 279 if ( ! isset( $values[ $var ] ) ) {
358 280 $values[ $var ] = FrmAppHelper::get_param( $var, $default, 'get', 'sanitize_text_field' );
359 281 }
@@ -368,9 +290,8 @@
368 290 'is_template' => 0,
369 291 'status' => 'published',
370 292 'parent_form_id' => 0,
371 293 );
372 -
373 294 foreach ( $defaults as $var => $default ) {
374 295 if ( ! isset( $values[ $var ] ) ) {
375 296 $values[ $var ] = FrmAppHelper::get_param( $var, $default, 'get', 'sanitize_text_field' );
376 297 }
@@ -377,9 +298,9 @@
377 298 }
378 299 unset( $defaults );
379 300
380 301 if ( ! isset( $values['form_key'] ) ) {
381 - $values['form_key'] = $post_values && isset( $post_values['form_key'] ) ? $post_values['form_key'] : FrmAppHelper::get_unique_key( '', $wpdb->prefix . 'frm_forms', 'form_key' ); // phpcs:ignore SlevomatCodingStandard.Files.LineLength.LineTooLong
302 + $values['form_key'] = ( $post_values && isset( $post_values['form_key'] ) ) ? $post_values['form_key'] : FrmAppHelper::get_unique_key( '', $wpdb->prefix . 'frm_forms', 'form_key' );
382 303 }
383 304
384 305 $values = self::fill_default_opts( $values, false, $post_values );
385 306 $values['custom_style'] = FrmAppHelper::custom_style_value( $post_values );
@@ -388,22 +309,16 @@
388 309 }
389 310
390 311 /**
391 312 * Used when editing a form
392 - *
393 - * @param array $values
394 - * @param object $record
395 - * @param array $post_values
396 - *
397 - * @return array
398 313 */
399 314 public static function setup_edit_vars( $values, $record, $post_values = array() ) {
400 - if ( ! $post_values ) {
315 + if ( empty( $post_values ) ) {
401 316 $post_values = wp_unslash( $_POST ); // phpcs:ignore WordPress.Security.NonceVerification.Missing
402 317 }
403 318
404 - $values['form_key'] = $post_values['form_key'] ?? $record->form_key;
405 - $values['is_template'] = $post_values['is_template'] ?? $record->is_template;
319 + $values['form_key'] = isset( $post_values['form_key'] ) ? $post_values['form_key'] : $record->form_key;
320 + $values['is_template'] = isset( $post_values['is_template'] ) ? $post_values['is_template'] : $record->is_template;
406 321 $values['status'] = $record->status;
407 322
408 323 $values = self::fill_default_opts( $values, $record, $post_values );
409 324
@@ -409,29 +324,23 @@
409 324
410 325 return apply_filters( 'frm_setup_edit_form_vars', $values );
411 326 }
412 327
413 - /**
414 - * @param array $values
415 - * @param false|object $record
416 - * @param array|false $post_values
417 - *
418 - * @return array
419 - */
420 - public static function fill_default_opts( $values, $record, $post_values ) { // phpcs:ignore SlevomatCodingStandard.Complexity.Cognitive.ComplexityTooHigh
328 + public static function fill_default_opts( $values, $record, $post_values ) {
421 329
422 - foreach ( self::get_default_opts() as $var => $default ) {
330 + $defaults = self::get_default_opts();
331 + foreach ( $defaults as $var => $default ) {
423 332 if ( is_array( $default ) ) {
424 333 if ( ! isset( $values[ $var ] ) ) {
425 - $values[ $var ] = $record && isset( $record->options[ $var ] ) ? $record->options[ $var ] : array();
334 + $values[ $var ] = ( $record && isset( $record->options[ $var ] ) ) ? $record->options[ $var ] : array();
426 335 }
427 336
428 337 foreach ( $default as $k => $v ) {
429 - $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 ); // phpcs:ignore SlevomatCodingStandard.Files.LineLength.LineTooLong
338 + $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 );
430 339
431 340 if ( is_array( $v ) ) {
432 341 foreach ( $v as $k1 => $v1 ) {
433 - $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 ); // phpcs:ignore SlevomatCodingStandard.Files.LineLength.LineTooLong
342 + $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 );
434 343 unset( $k1, $v1 );
435 344 }
436 345 }
437 346
@@ -437,13 +346,13 @@
437 346
438 347 unset( $k, $v );
439 348 }
440 349 } else {
441 - $values[ $var ] = $post_values && isset( $post_values['options'][ $var ] ) ? $post_values['options'][ $var ] : ( $record && isset( $record->options[ $var ] ) ? $record->options[ $var ] : $default ); // phpcs:ignore SlevomatCodingStandard.Files.LineLength.LineTooLong
350 + $values[ $var ] = ( $post_values && isset( $post_values['options'][ $var ] ) ) ? $post_values['options'][ $var ] : ( ( $record && isset( $record->options[ $var ] ) ) ? $record->options[ $var ] : $default );
442 351 }
443 352
444 353 unset( $var, $default );
445 - }//end foreach
354 + }
446 355
447 356 return $values;
448 357 }
449 358
@@ -458,9 +367,9 @@
458 367 'success_action' => 'message',
459 368 'success_msg' => $frm_settings->success_msg,
460 369 'show_form' => 0,
461 370 'akismet' => '',
462 - 'stopforumspam' => 0,
371 + 'honeypot' => 'basic',
463 372 'antispam' => 0,
464 373 'no_save' => 0,
465 374 'ajax_load' => 0,
466 375 'js_validate' => 0,
@@ -470,23 +379,21 @@
470 379 'after_html' => '',
471 380 'submit_html' => self::get_default_html( 'submit' ),
472 381 'show_title' => 0,
473 382 'show_description' => 0,
474 - 'ajax_submit' => 0,
475 383 );
476 384 }
477 385
478 386 /**
479 - * @since 2.0.6
480 - *
481 387 * @param array $options
482 388 * @param array $values
483 389 *
484 - * @return void
390 + * @since 2.0.6
485 391 */
486 392 public static function fill_form_options( &$options, $values ) {
487 - foreach ( self::get_default_opts() as $var => $default ) {
488 - $options[ $var ] = $values['options'][ $var ] ?? $default;
393 + $defaults = self::get_default_opts();
394 + foreach ( $defaults as $var => $default ) {
395 + $options[ $var ] = isset( $values['options'][ $var ] ) ? $values['options'][ $var ] : $default;
489 396 unset( $var, $default );
490 397 }
491 398 }
492 399
@@ -491,24 +398,20 @@
491 398 }
492 399
493 400 /**
494 401 * @param string $loc
495 - *
496 - * @return string
497 402 */
498 403 public static function get_default_html( $loc ) {
499 - if ( $loc === 'submit' ) {
404 + if ( $loc == 'submit' ) {
500 405 $draft_link = self::get_draft_link();
501 - $start_over = self::get_start_over_shortcode();
502 406 $default_html = <<<SUBMIT_HTML
503 -<div class="frm_submit frm_flex">
407 +<div class="frm_submit">
408 +[if back_button]<button type="submit" name="frm_prev_page" formnovalidate="formnovalidate" class="frm_prev_page" [back_hook]>[back_label]</button>[/if back_button]
504 409 <button class="frm_button_submit" type="submit" [button_action]>[button_label]</button>
505 -[if back_button]<button type="submit" name="frm_prev_page" formnovalidate="formnovalidate" class="frm_prev_page" [back_hook]>[back_label]</button>[/if back_button]
506 410 $draft_link
507 -$start_over
508 411 </div>
509 412 SUBMIT_HTML;
510 - } elseif ( $loc === 'before' ) {
413 + } elseif ( $loc == 'before' ) {
511 414 $default_html = <<<BEFORE_HTML
512 415 <legend class="frm_screen_reader">[form_name]</legend>
513 416 [if form_name]<h3 class="frm_form_title">[form_name]</h3>[/if form_name]
514 417 [if form_description]<div class="frm_description">[form_description]</div>[/if form_description]
@@ -519,39 +422,17 @@
519 422
520 423 return $default_html;
521 424 }
522 425
523 - /**
524 - * @return string
525 - */
526 426 public static function get_draft_link() {
527 - return '[if save_draft]<button class="frm_save_draft" [draft_hook]>[draft_label]</button>[/if save_draft]';
528 - }
427 + $link = '[if save_draft]<a href="#" tabindex="0" class="frm_save_draft" [draft_hook]>[draft_label]</a>[/if save_draft]';
529 428
530 - /**
531 - * Gets start over button shortcode.
532 - *
533 - * @since 5.4
534 - *
535 - * @return string
536 - */
537 - public static function get_start_over_shortcode() {
538 - return '[if start_over]<a href="#" tabindex="0" class="frm_start_over" [start_over_hook]>[start_over_label]</a>[/if start_over]';
429 + return $link;
539 430 }
540 431
541 - /**
542 - * @param string $html
543 - * @param object $form
544 - * @param string $submit
545 - * @param object|null $form_action
546 - * @param array $values
547 - *
548 - * @return void
549 - */
550 432 public static function get_custom_submit( $html, $form, $submit, $form_action, $values ) {
551 433 $button = self::replace_shortcodes( $html, $form, $submit, $form_action, $values );
552 -
553 - if ( ! str_contains( $button, '[button_action]' ) ) {
434 + if ( ! strpos( $button, '[button_action]' ) ) {
554 435 echo FrmAppHelper::maybe_kses( $button ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
555 436 return;
556 437 }
557 438
@@ -558,21 +439,18 @@
558 439 /**
559 440 * @since 5.0.06
560 441 */
561 442 $button = apply_filters( 'frm_submit_button_html', $button, compact( 'form' ) );
562 -
563 443 if ( FrmAppHelper::should_never_allow_unfiltered_html() ) {
564 444 $button = FrmAppHelper::kses_submit_button( $button );
565 445 }
566 -
567 446 $button_parts = explode( '[button_action]', $button );
568 - $classes = apply_filters( 'frm_submit_button_class', array(), $form );
569 447
570 - if ( $classes ) {
448 + $classes = apply_filters( 'frm_submit_button_class', array(), $form );
449 + if ( ! empty( $classes ) ) {
571 450 $classes = implode( ' ', $classes );
572 - $button_class = 'frm_button_submit';
573 -
574 - if ( preg_match( '/\bclass="[^"]*?\b' . preg_quote( $button_class, '/' ) . '\b[^"]*?"/', $button_parts[0] ) ) {
451 + $button_class = ' class="frm_button_submit';
452 + if ( strpos( $button_parts[0], $button_class ) !== false ) {
575 453 $button_parts[0] = str_replace( $button_class, $button_class . ' ' . esc_attr( $classes ), $button_parts[0] );
576 454 } else {
577 455 $button_parts[0] .= ' class="' . esc_attr( $classes ) . '"';
578 456 }
@@ -584,56 +462,54 @@
584 462 }
585 463
586 464 /**
587 465 * @since 4.0
588 - *
589 - * @return array
590 466 */
591 467 public static function html_shortcodes() {
592 468 $codes = array(
593 - 'id' => array(
469 + 'id' => array(
594 470 'label' => __( 'Field ID', 'formidable' ),
595 471 'class' => 'show_field_custom_html',
596 472 ),
597 - 'key' => array(
473 + 'key' => array(
598 474 'label' => __( 'Field Key', 'formidable' ),
599 475 'class' => 'show_field_custom_html',
600 476 ),
601 - 'field_name' => array(
477 + 'field_name' => array(
602 478 'label' => __( 'Field Name', 'formidable' ),
603 479 'class' => 'show_field_custom_html',
604 480 ),
605 - 'description' => array(
481 + 'description' => array(
606 482 'label' => __( 'Field Description', 'formidable' ),
607 483 'class' => 'show_field_custom_html',
608 484 ),
609 - 'label_position' => array(
485 + 'label_position' => array(
610 486 'label' => __( 'Label Position', 'formidable' ),
611 487 'class' => 'show_field_custom_html',
612 488 ),
613 - 'required_label' => array(
489 + 'required_label' => array(
614 490 'label' => __( 'Required Label', 'formidable' ),
615 491 'class' => 'show_field_custom_html',
616 492 ),
617 - 'input' => array(
493 + 'input' => array(
618 494 'label' => __( 'Input Field', 'formidable' ),
619 495 'class' => 'show_field_custom_html',
620 496 ),
621 - 'input opt=1' => array(
497 + 'input opt=1' => array(
622 498 'label' => __( 'Single Option', 'formidable' ),
623 499 'title' => __( 'Show a single radio or checkbox option by replacing 1 with the order of the option', 'formidable' ),
624 500 'class' => 'show_field_custom_html',
625 501 ),
626 - 'input label=0' => array(
502 + 'input label=0' => array(
627 503 'label' => __( 'Hide Option Label', 'formidable' ),
628 504 'class' => 'show_field_custom_html',
629 505 ),
630 - 'required_class' => array(
506 + 'required_class' => array(
631 507 'label' => __( 'Required Class', 'formidable' ),
632 508 'title' => __( 'Add class name if field is required', 'formidable' ),
633 509 'class' => 'show_field_custom_html',
634 510 ),
635 - 'error_class' => array(
511 + 'error_class' => array(
636 512 'label' => __( 'Error Class', 'formidable' ),
637 513 'title' => __( 'Add class name if field has an error on form submit', 'formidable' ),
638 514 'class' => 'show_field_custom_html',
639 515 ),
@@ -654,13 +530,13 @@
654 530 'label' => __( 'Delete Entry Link', 'formidable' ),
655 531 'class' => 'show_before_html show_after_html',
656 532 ),
657 533
658 - 'button_label' => array(
534 + 'button_label' => array(
659 535 'label' => __( 'Button Label', 'formidable' ),
660 536 'class' => 'show_submit_html',
661 537 ),
662 - 'button_action' => array(
538 + 'button_action' => array(
663 539 'label' => __( 'Button Hook', 'formidable' ),
664 540 'class' => 'show_submit_html',
665 541 ),
666 542 );
@@ -672,20 +548,14 @@
672 548 }
673 549
674 550 /**
675 551 * @since 4.0
676 - *
677 - * @param array $args Includes 'id', 'key', 'name', 'type' and 'class'. Optionally 'id_label'
678 - * and 'key_label' to show something other than the id or key, and
679 - * 'name_suffix'/'key_suffix' for text appended after the name or key is
680 - * truncated, so a shortcode option like ' show=first' survives the truncation.
681 - *
682 - * @return void
552 + * @param array $args
683 553 */
684 554 public static function insert_opt_html( $args ) {
685 - $class = $args['class'] ?? '';
686 - $fields = self::get_field_type_data_for_insert_opt_html();
687 - $field = $fields[ $args['type'] ] ?? array();
555 + $class = isset( $args['class'] ) ? $args['class'] : '';
556 + $fields = FrmField::all_field_selection();
557 + $field = isset( $fields[ $args['type'] ] ) ? $fields[ $args['type'] ] : array();
688 558
689 559 self::prepare_field_type( $field );
690 560
691 561 if ( ! isset( $field['icon'] ) ) {
@@ -692,9 +562,8 @@
692 562 $field['icon'] = 'frmfont frm_pencil_icon';
693 563 }
694 564
695 565 $possible_email_field = FrmFieldFactory::field_has_property( $args['type'], 'holds_email_values' );
696 -
697 566 if ( $possible_email_field ) {
698 567 $class .= ' show_frm_not_email_to';
699 568 }
700 569
@@ -700,69 +569,31 @@
700 569
701 570 if ( 'url' === $args['type'] ) {
702 571 $class .= ' frm_insert_url';
703 572 }
704 -
705 - $full_name = $args['name'] . ( $args['name_suffix'] ?? '' );
706 - $truncated_name = FrmAppHelper::truncate( $args['name'], 60 ) . ( $args['name_suffix'] ?? '' );
707 -
708 - // phpcs:disable Generic.WhiteSpace.ScopeIndent
709 573 ?>
710 574 <li class="<?php echo esc_attr( $class ); ?>">
711 - <a href="javascript:void(0)" class="frmids frm_insert_code" data-code="<?php echo esc_attr( $args['id'] ); ?>">
712 - <?php
713 - if ( isset( $field['icon'] ) ) {
714 - FrmAppHelper::icon_by_class( $field['icon'], array( 'aria-hidden' => 'true' ) );
715 - }
716 -
717 - printf(
718 - '<span title="%s">%s</span>',
719 - esc_attr( $full_name ),
720 - esc_html( $truncated_name )
721 - );
722 - ?>
723 - <span>[<?php echo esc_html( $args['id_label'] ?? $args['id'] ); ?>]</span>
575 + <a href="javascript:void(0)" class="frmids frm_insert_code"
576 + data-code="<?php echo esc_attr( $args['id'] ); ?>">
577 + <span>[<?php echo esc_attr( isset( $args['id_label'] ) ? $args['id_label'] : $args['id'] ); ?>]</span>
578 + <?php FrmAppHelper::icon_by_class( $field['icon'], array( 'aria-hidden' => 'true' ) ); ?>
579 + <?php echo esc_attr( FrmAppHelper::truncate( $args['name'], 60 ) ); ?>
724 580 </a>
725 - <a href="javascript:void(0)" class="frmkeys frm_insert_code frm_hidden" data-code="<?php echo esc_attr( $args['key'] ); ?>">
726 - <?php
727 - if ( isset( $field['icon'] ) ) {
728 - FrmAppHelper::icon_by_class( $field['icon'], array( 'aria-hidden' => 'true' ) );
729 - }
730 -
731 - printf(
732 - '<span title="%s">%s</span>',
733 - esc_attr( $full_name ),
734 - esc_html( $truncated_name )
735 - );
736 - ?>
737 - <span>[<?php echo esc_html( FrmAppHelper::truncate( $args['key_label'] ?? $args['key'], 7 ) . ( $args['key_suffix'] ?? '' ) ); ?>]</span>
581 + <a href="javascript:void(0)" class="frmkeys frm_insert_code frm_hidden"
582 + data-code="<?php echo esc_attr( $args['key'] ); ?>">
583 + <span>[<?php echo esc_attr( FrmAppHelper::truncate( isset( $args['key_label'] ) ? $args['key_label'] : $args['key'], 7 ) ); ?>]</span>
584 + <?php if ( isset( $field['icon'] ) ) { ?>
585 + <?php FrmAppHelper::icon_by_class( $field['icon'], array( 'aria-hidden' => 'true' ) ); ?>
586 + <?php } ?>
587 + <?php echo esc_attr( FrmAppHelper::truncate( $args['name'], 60 ) ); ?>
738 588 </a>
739 589 </li>
740 590 <?php
741 - // phpcs:enable Generic.WhiteSpace.ScopeIndent
742 591 }
743 592
744 593 /**
745 - * Store and re-use field selection data for use when outputting shortcodes options in shortcode pop up.
746 - * This significantly improves performance by avoiding repeat calls to FrmField::all_field_selection.
747 - *
748 - * @since 6.10
749 - *
750 - * @return array
751 - */
752 - private static function get_field_type_data_for_insert_opt_html() {
753 - if ( ! isset( self::$field_type_data_for_insert_opt_html ) ) {
754 - self::$field_type_data_for_insert_opt_html = FrmField::all_field_selection();
755 - }
756 - return self::$field_type_data_for_insert_opt_html;
757 - }
758 -
759 - /**
760 594 * @since 4.0
761 - *
762 595 * @param array $args
763 - *
764 - * @return void
765 596 */
766 597 public static function insert_code_html( $args ) {
767 598 $defaults = array(
768 599 'class' => '',
@@ -773,22 +604,20 @@
773 604
774 605 $args = array_merge( $defaults, $args );
775 606 $has_tooltip = ! empty( $args['title'] );
776 607
777 - // phpcs:disable Generic.WhiteSpace.ScopeIndent
778 608 ?>
779 609 <li class="<?php echo esc_attr( $args['class'] ); ?>">
780 610 <a href="javascript:void(0)" class="frm_insert_code <?php echo $has_tooltip ? 'frm_help' : ''; ?>"
781 611 <?php echo $has_tooltip ? 'title="' . esc_attr( $args['title'] ) . '"' : ''; ?>
782 612 data-code="<?php echo esc_attr( $args['code'] ); ?>">
783 - <?php echo esc_html( FrmAppHelper::truncate( $args['label'], 60 ) ); ?>
784 613 <span>
785 - [<?php echo esc_html( FrmAppHelper::truncate( $args['code'], 10 ) ); ?>]
614 + [<?php echo esc_attr( FrmAppHelper::truncate( $args['code'], 10 ) ); ?>]
786 615 </span>
616 + <?php echo esc_attr( FrmAppHelper::truncate( $args['label'], 60 ) ); ?>
787 617 </a>
788 618 </li>
789 619 <?php
790 - // phpcs:enable Generic.WhiteSpace.ScopeIndent
791 620 }
792 621
793 622 /**
794 623 * Some field types in add-ons may have been added with only
@@ -794,18 +623,14 @@
794 623 * Some field types in add-ons may have been added with only
795 624 * a field type and name.
796 625 *
797 626 * @since 4.0
798 - *
799 - * @param array|string $field
800 - *
801 - * @return void
802 627 */
803 628 public static function prepare_field_type( &$field ) {
804 629 if ( ! is_array( $field ) ) {
805 630 $field = array(
806 631 'name' => $field,
807 - 'icon' => 'frmfont frm_pencil_icon',
632 + 'icon' => 'frm_icon_font frm_pencil_icon',
808 633 );
809 634 }
810 635 }
811 636
@@ -813,16 +638,12 @@
813 638 * Automatically add end section fields if they don't exist (2.0 migration)
814 639 *
815 640 * @since 2.0
816 641 *
817 - * @param object $form
818 - * @param array $fields
819 - * @param bool $reset_fields
820 - *
821 - * @return void
642 + * @param boolean $reset_fields
822 643 */
823 644 public static function auto_add_end_section_fields( $form, $fields, &$reset_fields ) {
824 - if ( ! $fields ) {
645 + if ( empty( $fields ) ) {
825 646 return;
826 647 }
827 648
828 649 $end_section_values = apply_filters( 'frm_before_field_created', FrmFieldsHelper::setup_new_vars( 'end_divider', $form->id ) );
@@ -829,12 +650,11 @@
829 650 $open = false;
830 651 $prev_order = false;
831 652 $add_order = 0;
832 653 $last_field = false;
833 -
834 654 foreach ( $fields as $field ) {
835 655 if ( $prev_order === $field->field_order ) {
836 - ++$add_order;
656 + $add_order ++;
837 657 }
838 658
839 659 if ( $add_order ) {
840 660 $reset_fields = true;
@@ -861,14 +681,14 @@
861 681 }
862 682
863 683 // There is already an end section here, so there is no need to create one.
864 684 $open = false;
865 - }//end switch
685 + }
866 686 $prev_order = $field->field_order;
867 687
868 688 $last_field = $field;
869 689 unset( $field );
870 - }//end foreach
690 + }
871 691
872 692 self::maybe_create_end_section( $open, $reset_fields, $add_order, $end_section_values, $last_field );
873 693 }
874 694
@@ -874,17 +694,8 @@
874 694
875 695 /**
876 696 * Create end section field if it doesn't exist. This is for migration from < 2.0
877 697 * Fix any ordering that may be messed up
878 - *
879 - * @param bool $open
880 - * @param bool $reset_fields
881 - * @param int $add_order
882 - * @param array $end_section_values
883 - * @param object $field
884 - * @param string $move
885 - *
886 - * @return void
887 698 */
888 699 public static function maybe_create_end_section( &$open, &$reset_fields, &$add_order, $end_section_values, $field, $move = 'no' ) {
889 700 if ( ! $open ) {
890 701 return;
@@ -893,27 +704,18 @@
893 704 $end_section_values['field_order'] = $field->field_order + 1;
894 705
895 706 FrmField::create( $end_section_values );
896 707
897 - if ( $move === 'move' ) {
898 - // Bump the order of current field unless we're at the end of the form
708 + if ( $move == 'move' ) {
709 + // bump the order of current field unless we're at the end of the form
899 710 FrmField::update( $field->id, array( 'field_order' => $field->field_order + 2 ) );
900 711 }
901 712
902 - $add_order += 2;
713 + $add_order += 2;
903 714 $open = false;
904 715 $reset_fields = true;
905 716 }
906 717
907 - /**
908 - * @param string $html
909 - * @param object $form
910 - * @param bool $title
911 - * @param bool $description
912 - * @param array $values
913 - *
914 - * @return string
915 - */
916 718 public static function replace_shortcodes( $html, $form, $title = false, $description = false, $values = array() ) {
917 719 $codes = array(
918 720 'form_name' => $title,
919 721 'form_description' => $description,
@@ -918,30 +720,29 @@
918 720 'form_name' => $title,
919 721 'form_description' => $description,
920 722 'entry_key' => true,
921 723 );
922 -
923 724 foreach ( $codes as $code => $show ) {
924 725 if ( $code === 'form_name' ) {
925 726 $replace_with = $form->name;
926 727 } elseif ( $code === 'form_description' ) {
927 728 $replace_with = FrmAppHelper::use_wpautop( $form->description );
928 - } elseif ( $code === 'entry_key' && ! empty( $_GET ) && isset( $_GET['entry'] ) ) {
929 - $replace_with = FrmAppHelper::simple_get( 'entry', 'sanitize_title' );
729 + } elseif ( $code === 'entry_key' && isset( $_GET ) && isset( $_GET['entry'] ) ) {
730 + $replace_with = FrmAppHelper::simple_get( 'entry' );
930 731 } else {
931 732 $replace_with = '';
932 733 }
933 734
934 - FrmShortcodeHelper::remove_inline_conditions( FrmAppHelper::is_true( $show ) && $replace_with != '', $code, $replace_with, $html ); // phpcs:ignore Universal.Operators.StrictComparisons, SlevomatCodingStandard.Files.LineLength.LineTooLong
735 + FrmShortcodeHelper::remove_inline_conditions( ( FrmAppHelper::is_true( $show ) && $replace_with != '' ), $code, $replace_with, $html );
935 736 }
936 737
937 - // Replace [form_key].
738 + //replace [form_key]
938 739 $html = str_replace( '[form_key]', $form->form_key, $html );
939 740
940 - // Replace [frmurl].
741 + //replace [frmurl]
941 742 $html = str_replace( '[frmurl]', FrmFieldsHelper::dynamic_default_values( 'frmurl' ), $html );
942 743
943 - if ( str_contains( $html, '[button_label]' ) ) {
744 + if ( strpos( $html, '[button_label]' ) ) {
944 745 add_filter( 'frm_submit_button', 'FrmFormsHelper::submit_button_label', 1 );
945 746 $submit_label = apply_filters( 'frm_submit_button', $title, $form );
946 747 $submit_label = esc_attr( do_shortcode( $submit_label ) );
947 748 $html = str_replace( '[button_label]', $submit_label, $html );
@@ -948,32 +749,23 @@
948 749 }
949 750
950 751 $html = apply_filters( 'frm_form_replace_shortcodes', $html, $form, $values );
951 752
952 - if ( str_contains( $html, '[if back_button]' ) ) {
753 + if ( strpos( $html, '[if back_button]' ) ) {
953 754 $html = preg_replace( '/(\[if\s+back_button\])(.*?)(\[\/if\s+back_button\])/mis', '', $html );
954 755 }
955 756
956 - if ( str_contains( $html, '[if save_draft]' ) ) {
757 + if ( strpos( $html, '[if save_draft]' ) ) {
957 758 $html = preg_replace( '/(\[if\s+save_draft\])(.*?)(\[\/if\s+save_draft\])/mis', '', $html );
958 759 }
959 760
960 - if ( str_contains( $html, '[if start_over]' ) ) {
961 - $html = preg_replace( '/(\[if\s+start_over\])(.*?)(\[\/if\s+start_over\])/mis', '', $html );
962 - }
963 -
964 761 if ( apply_filters( 'frm_do_html_shortcodes', true ) ) {
965 - return do_shortcode( $html );
762 + $html = do_shortcode( $html );
966 763 }
967 764
968 765 return $html;
969 766 }
970 767
971 - /**
972 - * @param string $submit
973 - *
974 - * @return string
975 - */
976 768 public static function submit_button_label( $submit ) {
977 769 if ( ! $submit ) {
978 770 $frm_settings = FrmAppHelper::get_settings();
979 771 $submit = $frm_settings->submit_value;
@@ -986,32 +778,28 @@
986 778 * If the Formidable styling isn't being loaded,
987 779 * use inline styling to hide the element
988 780 *
989 781 * @since 2.03.05
990 - *
991 - * @return void
992 782 */
993 783 public static function maybe_hide_inline() {
994 784 $frm_settings = FrmAppHelper::get_settings();
995 -
996 - if ( $frm_settings->load_style === 'none' ) {
785 + if ( $frm_settings->load_style == 'none' ) {
997 786 echo ' style="display:none;"';
998 - } elseif ( $frm_settings->load_style === 'dynamic' ) {
787 + } elseif ( $frm_settings->load_style == 'dynamic' ) {
999 788 FrmStylesController::enqueue_style();
1000 789 }
1001 790 }
1002 791
1003 - /**
1004 - * @param array|bool|int|object|string $form
1005 - *
1006 - * @return string|null
1007 - */
1008 792 public static function get_form_style_class( $form = false ) {
1009 793 $style = self::get_form_style( $form );
1010 794 $class = ' with_frm_style';
1011 795
1012 - if ( ! $style ) {
1013 - return FrmAppHelper::is_admin_page( 'formidable-entries' ) ? $class : null;
796 + if ( empty( $style ) ) {
797 + if ( FrmAppHelper::is_admin_page( 'formidable-entries' ) ) {
798 + return $class;
799 + } else {
800 + return;
801 + }
1014 802 }
1015 803
1016 804 // If submit button needs to be inline or centered.
1017 805 if ( is_object( $form ) ) {
@@ -1032,9 +820,11 @@
1032 820 } elseif ( 'center' === $submit_align ) {
1033 821 $class .= ' frm_center_submit';
1034 822 }
1035 823
1036 - return apply_filters( 'frm_add_form_style_class', $class, $style, compact( 'form' ) );
824 + $class = apply_filters( 'frm_add_form_style_class', $class, $style, compact( 'form' ) );
825 +
826 + return $class;
1037 827 }
1038 828
1039 829 /**
1040 830 * In order for frm_inline_submit to inline the submit button the form must also have the frm_inline_form that adds the grid-column style rules required for it to work.
@@ -1041,23 +831,22 @@
1041 831 *
1042 832 * @since 5.0.12
1043 833 *
1044 834 * @param array $form
1045 - *
1046 835 * @return bool
1047 836 */
1048 837 private static function form_should_be_inline_and_missing_class( $form ) {
1049 - if ( isset( $form['form_class'] ) && str_contains( ' ' . $form['form_class'] . ' ', ' frm_inline_form ' ) ) {
1050 - // Not missing class, avoid adding it twice.
838 + if ( isset( $form['form_class'] ) && false !== strpos( ' ' . $form['form_class'] . ' ', ' frm_inline_form ' ) ) {
839 + // not missing class, avoid adding it twice.
1051 840 return false;
1052 841 }
1053 - return ! empty( $form['submit_html'] ) && str_contains( $form['submit_html'], 'frm_inline_submit' );
842 + return ! empty( $form['submit_html'] ) && false !== strpos( $form['submit_html'], 'frm_inline_submit' );
1054 843 }
1055 844
1056 845 /**
1057 846 * Returns appropriate class if form has top labels
1058 847 *
1059 - * @param array $form
848 + * @param $form
1060 849 *
1061 850 * @return string
1062 851 */
1063 852 private static function maybe_align_fields_top( $form ) {
@@ -1066,9 +855,9 @@
1066 855
1067 856 /**
1068 857 * Determine if a form has fields with top labels so submit button can be aligned properly
1069 858 *
1070 - * @param array $form
859 + * @param $form
1071 860 *
1072 861 * @return bool
1073 862 */
1074 863 private static function form_has_top_labels( $form ) {
@@ -1076,20 +865,16 @@
1076 865 return false;
1077 866 }
1078 867
1079 868 $fields = $form['fields'];
1080 -
1081 869 if ( count( $fields ) <= 0 ) {
1082 870 return false;
1083 871 }
1084 872
1085 - // Start from the fields closest to the submit button.
1086 - $fields = array_reverse( $fields );
1087 -
873 + $fields = array_reverse( $fields ); // start from the fields closest to the submit button
1088 874 foreach ( $fields as $field ) {
1089 - $type = $field['original_type'] ?? $field['type'];
875 + $type = isset( $field['original_type'] ) ? $field['original_type'] : $field['type'];
1090 876 $has_input = FrmFieldFactory::field_has_property( $type, 'has_input' );
1091 -
1092 877 if ( $has_input ) {
1093 878 return self::field_has_top_label( $field, $form );
1094 879 }
1095 880 }
@@ -1099,63 +884,61 @@
1099 884
1100 885 /**
1101 886 * Check if a field's label position is set to "top"
1102 887 *
1103 - * @param array $field
1104 - * @param bool|object|string $form
888 + * @param $field
889 + * @param $form
1105 890 *
1106 891 * @return bool
1107 892 */
1108 893 private static function field_has_top_label( $field, $form ) {
1109 894 $label_position = FrmFieldsHelper::label_position( $field['label'], $field, $form );
1110 - return in_array( $label_position, array( 'top', 'inside', 'hidden' ), true );
895 +
896 + return in_array( $label_position, array( 'top', 'inside', 'hidden' ) );
1111 897 }
1112 898
1113 899 /**
1114 - * @param array|bool|int|object|string $form
900 + * @param object|string|boolean $form
1115 901 *
1116 - * @return int|string
902 + * @return string
1117 903 */
1118 904 public static function get_form_style( $form ) {
1119 905 $style = 1;
1120 -
1121 - if ( ! $form || 'default' === $form ) {
906 + if ( empty( $form ) || 'default' === $form ) {
1122 907 return $style;
1123 - }
1124 -
1125 - if ( is_object( $form ) && $form->parent_form_id ) {
1126 - // Get the parent form if this is a child
908 + } elseif ( is_object( $form ) && $form->parent_form_id ) {
909 + // get the parent form if this is a child
1127 910 $form = $form->parent_form_id;
1128 - } elseif ( is_array( $form ) && ! empty( $form['parent_form_id'] ) ) {
911 + } elseif ( is_array( $form ) && isset( $form['parent_form_id'] ) && $form['parent_form_id'] ) {
1129 912 $form = $form['parent_form_id'];
1130 913 } elseif ( is_array( $form ) && isset( $form['custom_style'] ) ) {
1131 914 $style = $form['custom_style'];
1132 915 }
1133 916
1134 - if ( $form && ( is_string( $form ) || is_int( $form ) ) ) {
917 + if ( $form && is_string( $form ) ) {
1135 918 $form = FrmForm::getOne( $form );
1136 919 }
1137 920
1138 - return $form && is_object( $form ) && isset( $form->options['custom_style'] ) ? $form->options['custom_style'] : $style;
921 + $style = ( $form && is_object( $form ) && isset( $form->options['custom_style'] ) ) ? $form->options['custom_style'] : $style;
922 +
923 + return $style;
1139 924 }
1140 925
1141 926 /**
1142 927 * Display the validation error messages when an entry is submitted
1143 928 *
929 + * @param array $args - includes img, errors
930 + *
1144 931 * @since 2.0.6
1145 - *
1146 - * @param array $args Includes img, errors.
1147 - *
1148 - * @return void
1149 932 */
1150 933 public static function show_errors( $args ) {
1151 934 $invalid_msg = self::get_invalid_error_message( $args );
1152 935
1153 - if ( $invalid_msg ) {
936 + if ( empty( $invalid_msg ) ) {
937 + $show_img = false;
938 + } else {
1154 939 echo wp_kses_post( $invalid_msg );
1155 940 $show_img = true;
1156 - } else {
1157 - $show_img = false;
1158 941 }
1159 942
1160 943 self::show_error(
1161 944 array(
@@ -1170,22 +953,19 @@
1170 953 * Display the error message in the front-end along with the image if set
1171 954 * The image was removed from the styling settings, but it may still be set with a hook
1172 955 * If the message in the global settings is empty, show every validation message in the error box
1173 956 *
957 + * @param array $args - includes img, errors, and show_img
958 + *
1174 959 * @since 2.0.6
1175 - *
1176 - * @param array $args Includes img, errors, and show_img.
1177 - *
1178 - * @return void
1179 960 */
1180 961 public static function show_error( $args ) {
1181 - // Remove any blank messages
962 + // remove any blank messages
1182 963 $args['errors'] = array_filter( (array) $args['errors'] );
1183 964
1184 965 $line_break_first = $args['show_img'];
1185 -
1186 966 foreach ( $args['errors'] as $error_key => $error ) {
1187 - if ( $line_break_first && ! is_numeric( $error_key ) && ( $error_key === 'cptch_number' || str_starts_with( $error_key, 'field' ) ) ) {
967 + if ( $line_break_first && ! is_numeric( $error_key ) && ( $error_key == 'cptch_number' || strpos( $error_key, 'field' ) === 0 ) ) {
1188 968 continue;
1189 969 }
1190 970
1191 971 $id = str_replace( 'field', 'field_', $error_key );
@@ -1191,9 +971,9 @@
1191 971 $id = str_replace( 'field', 'field_', $error_key );
1192 972 echo '<div id="' . esc_attr( $id ) . '_error">';
1193 973
1194 974 if ( $args['show_img'] && ! empty( $args['img'] ) ) {
1195 - echo '<img src="' . esc_url( $args['img'] ) . '" alt="" />';
975 + echo '<img src="' . esc_attr( $args['img'] ) . '" alt="" />';
1196 976 } else {
1197 977 $args['show_img'] = true;
1198 978 }
1199 979
@@ -1202,38 +982,34 @@
1202 982 echo '</div>';
1203 983 }
1204 984 }
1205 985
1206 - /**
1207 - * @param int|string $id
1208 - *
1209 - * @return void
1210 - */
1211 986 public static function maybe_get_scroll_js( $id ) {
1212 987 $offset = apply_filters( 'frm_scroll_offset', 4, array( 'form_id' => $id ) );
1213 -
1214 - // phpcs:ignore Universal.Operators.StrictComparisons
1215 988 if ( $offset != - 1 ) {
1216 989 self::get_scroll_js( $id );
1217 990 }
1218 991 }
1219 992
993 + public static function get_scroll_js( $form_id ) {
994 + echo '<script type="text/javascript">document.addEventListener(\'DOMContentLoaded\',function(){frmFrontForm.scrollMsg(' . (int) $form_id . ');})</script>';
995 + }
996 +
1220 997 /**
1221 - * @param int|string $form_id
1222 - *
1223 - * @return void
998 + * @since 3.0
1224 999 */
1225 - public static function get_scroll_js( $form_id ) {
1226 - echo '<script type="text/javascript">document.addEventListener(\'DOMContentLoaded\',function(){frmFrontForm.scrollMsg(' . (int) $form_id . ');})</script>';
1000 + public static function actions_dropdown( $atts ) {
1001 + if ( FrmAppHelper::is_admin_page( 'formidable' ) ) {
1002 + $status = $atts['status'];
1003 + $form_id = isset( $atts['id'] ) ? $atts['id'] : FrmAppHelper::get_param( 'id', 0, 'get', 'absint' );
1004 + $trash_link = self::delete_trash_info( $form_id, $status );
1005 + $links = self::get_action_links( $form_id, $status );
1006 + include( FrmAppHelper::plugin_path() . '/classes/views/frm-forms/actions-dropdown.php' );
1007 + }
1227 1008 }
1228 1009
1229 1010 /**
1230 1011 * @since 3.0
1231 - *
1232 - * @param int|object|string $form_id
1233 - * @param mixed $form
1234 - *
1235 - * @return array
1236 1012 */
1237 1013 public static function get_action_links( $form_id, $form ) {
1238 1014 if ( ! is_object( $form ) ) {
1239 1015 $form = FrmForm::getOne( $form_id );
@@ -1240,10 +1016,9 @@
1240 1016 }
1241 1017
1242 1018 $actions = array();
1243 1019 $trash_links = self::delete_trash_links( $form_id );
1244 -
1245 - if ( 'trash' === $form->status ) {
1020 + if ( 'trash' == $form->status ) {
1246 1021 $actions['restore'] = $trash_links['restore'];
1247 1022
1248 1023 if ( current_user_can( 'frm_delete_forms' ) ) {
1249 1024 $actions['trash'] = $trash_links['delete'];
@@ -1249,34 +1024,28 @@
1249 1024 $actions['trash'] = $trash_links['delete'];
1250 1025 }
1251 1026 } elseif ( current_user_can( 'frm_edit_forms' ) ) {
1252 1027 $duplicate_link = '?page=formidable&frm_action=duplicate&id=' . $form_id;
1253 -
1254 1028 if ( $form->is_template ) {
1255 1029 $actions['frm_duplicate'] = array(
1256 1030 'url' => wp_nonce_url( $duplicate_link ),
1257 1031 'label' => __( 'Create Form from Template', 'formidable' ),
1258 - 'icon' => 'frmfont frm_clone_icon',
1032 + 'icon' => 'frm_icon_font frm_clone_icon',
1259 1033 );
1260 1034 } else {
1261 1035 $actions['duplicate'] = array(
1262 1036 'url' => wp_nonce_url( $duplicate_link ),
1263 - 'label' => __( 'Duplicate', 'formidable' ),
1264 - 'icon' => 'frmfont frm_clone_icon',
1037 + 'label' => __( 'Duplicate Form', 'formidable' ),
1038 + 'icon' => 'frm_icon_font frm_clone_icon',
1265 1039 );
1266 1040 }
1267 1041
1268 1042 $actions['trash'] = self::delete_trash_info( $form_id, $form->status );
1269 - }//end if
1043 + }
1270 1044
1271 1045 return $actions;
1272 1046 }
1273 1047
1274 - /**
1275 - * @param int|object|string $data
1276 - *
1277 - * @return string
1278 - */
1279 1048 public static function edit_form_link( $data ) {
1280 1049 $form_id = self::get_form_id_from_data( $data );
1281 1050
1282 1051 if ( ! $form_id ) {
@@ -1283,122 +1052,94 @@
1283 1052 return '';
1284 1053 }
1285 1054
1286 1055 $label = self::edit_form_link_label( $data );
1287 - return '<a href="' . esc_url( FrmForm::get_edit_link( $form_id ) ) . '">' . esc_html( $label ) . '</a>';
1056 + $link = '<a href="' . esc_url( FrmForm::get_edit_link( $form_id ) ) . '">' . esc_html( $label ) . '</a>';
1057 + return $link;
1288 1058 }
1289 1059
1290 - /**
1291 - * Returns a text used when no title is set.
1292 - *
1293 - * @since 6.16.1
1294 - *
1295 - * @return string
1296 - */
1297 - public static function get_no_title_text() {
1298 - return __( '(no title)', 'formidable' );
1299 - }
1300 -
1301 - /**
1302 - * @param int|object|string $data
1303 - *
1304 - * @return string
1305 - */
1306 1060 public static function edit_form_link_label( $data ) {
1307 1061 $name = self::get_form_name_from_data( $data );
1308 -
1309 1062 if ( ! $name ) {
1310 - return self::get_no_title_text();
1063 + return __( '(no title)', 'formidable' );
1311 1064 }
1312 -
1313 1065 return FrmAppHelper::truncate( $name, 40 );
1314 1066 }
1315 1067
1316 1068 /**
1317 - * @param int|object|string $data
1318 - *
1319 - * @return int|string
1069 + * @param mixed data
1070 + * @return int
1320 1071 */
1321 1072 private static function get_form_id_from_data( $data ) {
1322 - return is_object( $data ) ? $data->id : $data;
1073 + if ( is_object( $data ) ) {
1074 + $form_id = $data->id;
1075 + } else {
1076 + $form_id = $data;
1077 + }
1078 + return $form_id;
1323 1079 }
1324 1080
1325 1081 /**
1326 1082 * @param mixed $data
1327 - *
1328 1083 * @return string
1329 1084 */
1330 1085 private static function get_form_name_from_data( $data ) {
1331 1086 if ( is_object( $data ) ) {
1332 - return $data->name;
1087 + $form_name = $data->name;
1088 + } else {
1089 + $form_id = $data;
1090 + $form_name = FrmForm::getName( $form_id );
1333 1091 }
1334 -
1335 - $form_id = $data;
1336 - return FrmForm::getName( $form_id );
1092 + return $form_name;
1337 1093 }
1338 1094
1339 - /**
1340 - * @param int $id
1341 - * @param string $status
1342 - * @param string $length
1343 - *
1344 - * @return string
1345 - */
1346 1095 public static function delete_trash_link( $id, $status, $length = 'label' ) {
1347 1096 $link_details = self::delete_trash_info( $id, $status );
1097 +
1348 1098 return self::format_link_html( $link_details, $length );
1349 1099 }
1350 1100
1351 1101 /**
1352 1102 * @since 3.0
1353 - *
1354 - * @param array $link_details
1355 - * @param string $length
1356 - *
1357 - * @return string
1358 1103 */
1359 1104 public static function format_link_html( $link_details, $length = 'label' ) {
1360 1105 $link = '';
1106 + if ( ! empty( $link_details ) ) {
1107 + $link = '<a href="' . esc_url( $link_details['url'] ) . '" class="frm-trash-link"';
1108 + if ( isset( $link_details['data'] ) ) {
1109 + foreach ( $link_details['data'] as $data => $value ) {
1110 + $link .= ' data-' . esc_attr( $data ) . '="' . esc_attr( $value ) . '"';
1111 + }
1112 + } elseif ( isset( $link_details['confirm'] ) ) {
1113 + $link .= ' onclick="return confirm(\'' . esc_attr( $link_details['confirm'] ) . '\')"';
1114 + }
1361 1115
1362 - if ( ! $link_details ) {
1363 - return $link;
1364 - }
1365 -
1366 - $link = '<a href="' . esc_url( $link_details['url'] ) . '" class="frm-trash-link"';
1367 -
1368 - if ( isset( $link_details['data'] ) ) {
1369 - foreach ( $link_details['data'] as $data => $value ) {
1370 - $link .= ' data-' . esc_attr( $data ) . '="' . esc_attr( $value ) . '"';
1116 + $label = ( isset( $link_details[ $length ] ) ? $link_details[ $length ] : $link_details['label'] );
1117 + if ( $length == 'icon' && isset( $link_details[ $length ] ) ) {
1118 + $label = '<span class="' . $label . '" title="' . esc_attr( $link_details['label'] ) . '" aria-hidden="true"></span>';
1119 + $link .= ' aria-label="' . esc_attr( $link_details['label'] ) . '"';
1371 1120 }
1372 - } elseif ( isset( $link_details['confirm'] ) ) {
1373 - $link .= ' onclick="return confirm(\'' . esc_attr( $link_details['confirm'] ) . '\')"';
1374 - }
1375 1121
1376 - $label = $link_details[ $length ] ?? $link_details['label'];
1377 -
1378 - if ( $length === 'icon' && isset( $link_details[ $length ] ) ) {
1379 - $label = '<span class="' . $label . '" title="' . esc_attr( $link_details['label'] ) . '" aria-hidden="true"></span>';
1380 - $link .= ' aria-label="' . esc_attr( $link_details['label'] ) . '"';
1122 + $link .= '>' . $label . '</a>';
1381 1123 }
1382 1124
1383 - return $link . ( '>' . $label . '</a>' );
1125 + return $link;
1384 1126 }
1385 1127
1386 1128 /**
1387 1129 * @since 3.0
1388 - *
1389 - * @param int $id
1390 - * @param string $status
1391 - *
1392 - * @return array
1393 1130 */
1394 1131 public static function delete_trash_info( $id, $status ) {
1395 1132 $labels = self::delete_trash_links( $id );
1396 1133
1397 - if ( 'trash' === $status ) {
1134 + if ( 'trash' == $status ) {
1398 1135 $info = $labels['restore'];
1399 1136 } elseif ( current_user_can( 'frm_delete_forms' ) ) {
1400 - $info = EMPTY_TRASH_DAYS ? $labels['trash'] : $labels['delete'];
1137 + if ( EMPTY_TRASH_DAYS ) {
1138 + $info = $labels['trash'];
1139 + } else {
1140 + $info = $labels['delete'];
1141 + }
1401 1142 } else {
1402 1143 $info = array();
1403 1144 }
1404 1145
@@ -1406,14 +1147,10 @@
1406 1147 }
1407 1148
1408 1149 /**
1409 1150 * @since 3.0
1410 - *
1411 - * @param int $id
1412 - *
1413 - * @return array
1414 1151 */
1415 - public static function delete_trash_links( $id ) {
1152 + private static function delete_trash_links( $id ) {
1416 1153 $current_page = FrmAppHelper::get_simple_request( array( 'param' => 'form_type' ) );
1417 1154 $base_url = '?page=formidable&form_type=' . $current_page . '&id=' . $id;
1418 1155
1419 1156 return array(
@@ -1425,13 +1162,10 @@
1425 1162 'trash' => array(
1426 1163 'label' => __( 'Move Form to Trash', 'formidable' ),
1427 1164 'short' => __( 'Trash', 'formidable' ),
1428 1165 'url' => wp_nonce_url( $base_url . '&frm_action=trash', 'trash_form_' . absint( $id ) ),
1429 - 'icon' => 'frmfont frm_delete_icon',
1430 - 'data' => array(
1431 - 'frmverify' => __( 'Do you want to move this form to the trash?', 'formidable' ),
1432 - 'frmverify-btn' => 'frm-button-red',
1433 - ),
1166 + 'icon' => 'frm_icon_font frm_delete_icon',
1167 + 'data' => array( 'frmverify' => __( 'Do you want to move this form to the trash?', 'formidable' ) ),
1434 1168 ),
1435 1169 'delete' => array(
1436 1170 'label' => __( 'Delete Permanently', 'formidable' ),
1437 1171 'short' => __( 'Delete', 'formidable' ),
@@ -1436,13 +1170,10 @@
1436 1170 'label' => __( 'Delete Permanently', 'formidable' ),
1437 1171 'short' => __( 'Delete', 'formidable' ),
1438 1172 'url' => wp_nonce_url( $base_url . '&frm_action=destroy', 'destroy_form_' . absint( $id ) ),
1439 1173 'confirm' => __( 'Are you sure you want to delete this form and all its entries?', 'formidable' ),
1440 - 'icon' => 'frmfont frm_delete_icon',
1441 - 'data' => array(
1442 - 'frmverify' => __( 'This will permanently delete the form and all its entries. This is irreversible. Are you sure you want to continue?', 'formidable' ),
1443 - 'frmverify-btn' => 'frm-button-red',
1444 - ),
1174 + 'icon' => 'frm_icon_font frm_delete_icon',
1175 + 'data' => array( 'frmverify' => __( 'This will permanently delete the form and all its entries. This is irreversible. Are you sure you want to continue?', 'formidable' ) ),
1445 1176 ),
1446 1177 );
1447 1178 }
1448 1179
@@ -1447,38 +1178,36 @@
1447 1178 }
1448 1179
1449 1180 /**
1450 1181 * @since 3.0
1451 - *
1452 - * @return array
1453 1182 */
1454 1183 public static function css_classes() {
1455 1184 $classes = array(
1456 - 'frm_total' => array(
1185 + 'frm_total' => array(
1457 1186 'label' => __( 'Total', 'formidable' ),
1458 1187 'title' => __( 'Add this to a read-only field to display the text in bold without a border or background.', 'formidable' ),
1459 1188 ),
1460 - 'frm_total_big' => array(
1189 + 'frm_total_big' => array(
1461 1190 'label' => __( 'Big Total', 'formidable' ),
1462 1191 'title' => __( 'Add this to a read-only field to display the text in large, bold text without a border or background.', 'formidable' ),
1463 1192 ),
1464 - 'frm_scroll_box' => array(
1193 + 'frm_scroll_box' => array(
1465 1194 'label' => __( 'Scroll Box', 'formidable' ),
1466 - 'title' => __( 'If you have many checkbox or radio button options, you may add this class to allow your user to easily scroll through the options. Or add a scrolling area around content in an HTML field.', 'formidable' ), // phpcs:ignore SlevomatCodingStandard.Files.LineLength.LineTooLong
1195 + 'title' => __( 'If you have many checkbox or radio button options, you may add this class to allow your user to easily scroll through the options. Or add a scrolling area around content in an HTML field.', 'formidable' ),
1467 1196 ),
1468 - 'frm_first' => array(
1197 + 'frm_first' => array(
1469 1198 'label' => __( 'First', 'formidable' ),
1470 1199 'title' => __( 'Add this to the first field in each row along with a width. ie frm_first frm4', 'formidable' ),
1471 1200 ),
1472 - 'frm_alignright' => __( 'Right', 'formidable' ),
1473 - 'frm_grid_first' => __( 'First Grid Row', 'formidable' ),
1474 - 'frm_grid' => __( 'Even Grid Row', 'formidable' ),
1475 - 'frm_grid_odd' => __( 'Odd Grid Row', 'formidable' ),
1201 + 'frm_alignright' => __( 'Right', 'formidable' ),
1202 + 'frm_grid_first' => __( 'First Grid Row', 'formidable' ),
1203 + 'frm_grid' => __( 'Even Grid Row', 'formidable' ),
1204 + 'frm_grid_odd' => __( 'Odd Grid Row', 'formidable' ),
1476 1205 'frm_color_block' => array(
1477 1206 'label' => __( 'Color Block', 'formidable' ),
1478 1207 'title' => __( 'Add a background color to the field or section.', 'formidable' ),
1479 1208 ),
1480 - 'frm_capitalize' => array(
1209 + 'frm_capitalize' => array(
1481 1210 'label' => __( 'Capitalize', 'formidable' ),
1482 1211 'title' => __( 'Automatically capitalize the first letter in each word.', 'formidable' ),
1483 1212 ),
1484 1213 );
@@ -1485,11 +1214,8 @@
1485 1214
1486 1215 return apply_filters( 'frm_layout_classes', $classes );
1487 1216 }
1488 1217
1489 - /**
1490 - * @return array
1491 - */
1492 1218 public static function grid_classes() {
1493 1219 return array(
1494 1220 'frm_half' => '1/2',
1495 1221 'frm_third' => '1/3',
@@ -1503,18 +1229,12 @@
1503 1229 }
1504 1230
1505 1231 /**
1506 1232 * @since 3.0
1507 - *
1508 - * @param mixed $style
1509 - * @param string $class
1510 - *
1511 - * @return string
1512 1233 */
1513 1234 public static function style_class_label( $style, $class ) {
1514 1235 $label = '';
1515 -
1516 - if ( ! $style ) {
1236 + if ( empty( $style ) ) {
1517 1237 $label = $class;
1518 1238 } elseif ( ! is_array( $style ) ) {
1519 1239 $label = $style;
1520 1240 } elseif ( isset( $style['label'] ) ) {
@@ -1523,13 +1243,8 @@
1523 1243
1524 1244 return $label;
1525 1245 }
1526 1246
1527 - /**
1528 - * @param string $status
1529 - *
1530 - * @return string
1531 - */
1532 1247 public static function status_nice_name( $status ) {
1533 1248 $nice_names = array(
1534 1249 'draft' => __( 'Draft', 'formidable' ),
1535 1250 'trash' => __( 'Trash', 'formidable' ),
@@ -1535,107 +1250,79 @@
1535 1250 'trash' => __( 'Trash', 'formidable' ),
1536 1251 'publish' => __( 'Published', 'formidable' ),
1537 1252 );
1538 1253
1539 - if ( ! array_key_exists( $status, $nice_names ) ) {
1254 + if ( ! in_array( $status, array_keys( $nice_names ) ) ) {
1540 1255 $status = 'publish';
1541 1256 }
1542 1257
1543 - return $nice_names[ $status ];
1258 + $name = $nice_names[ $status ];
1259 +
1260 + return $name;
1544 1261 }
1545 1262
1546 - /**
1547 - * Renders a template icon based on the given categories.
1548 - *
1549 - * @param array $categories The categories to render the icon for.
1550 - * @param array $atts {
1551 - * Optional. An array of attributes for rendering.
1552 - *
1553 - * @type string $html 'span' or 'div'. Default 'span'.
1554 - * @type bool $bg Whether to add a background color or not. Default false.
1555 - * }
1556 - *
1557 - * @return void
1558 - */
1559 - public static function template_icon( $categories, $atts = array() ) {
1560 - // Define defaults.
1561 - $defaults = array(
1562 - 'bg' => true,
1563 - );
1564 - $atts = array_merge( $defaults, $atts );
1565 -
1566 - // Filter out ignored categories.
1567 - $ignore = self::get_license_types();
1263 + public static function template_icon( $categories ) {
1264 + $ignore = self::ignore_template_categories();
1568 1265 $categories = array_diff( $categories, $ignore );
1569 1266
1570 - // Define icons mapping.
1571 1267 $icons = array(
1572 - 'WooCommerce' => array( 'woocommerce', 'var(--purple)' ),
1573 - 'Post' => array( 'wordpress', 'rgb(0,160,210)' ),
1574 - 'User Registration' => array( 'register', 'var(--pink)' ),
1575 - 'Registration and Signup' => array( 'register', 'var(--pink)' ),
1576 - 'PayPal' => array( 'paypal' ),
1577 - 'Stripe' => array( 'credit_card', 'var(--green)' ),
1578 - 'Twilio' => array( 'sms' ),
1579 - 'Payment' => array( 'credit_card' ),
1580 - 'Order Form' => array( 'product' ),
1581 - 'Finance' => array( 'total' ),
1582 - 'Health and Wellness' => array( 'heart', 'var(--pink)' ),
1583 - 'Event Planning' => array( 'calendar', 'var(--orange)' ),
1584 - 'Real Estate' => array( 'house' ),
1585 - 'Nonprofit' => array( 'heart_solid' ),
1586 - 'Calculator' => array( 'calculator', 'var(--purple)' ),
1587 - 'Quiz' => array( 'percent' ),
1588 - 'Registrations' => array( 'address_card' ),
1589 - 'Customer Service' => array( 'users_solid' ),
1590 - 'Education' => array( 'pencil' ),
1591 - 'Marketing' => array( 'eye' ),
1592 - 'Feedback' => array( 'smile' ),
1593 - 'Business Operations' => array( 'case' ),
1594 - 'Contact Form' => array( 'email' ),
1595 - 'Conversational Forms' => array( 'chat_forms' ),
1596 - 'Survey' => array( 'chat_forms', 'var(--orange)' ),
1597 - 'Application' => array( 'align_right' ),
1598 - 'Signature' => array( 'signature' ),
1599 - '' => array( 'align_right' ),
1268 + 'WooCommerce' => array( 'woocommerce', 'var(--purple)' ),
1269 + 'Post' => array( 'wordpress', 'rgb(0,160,210)' ),
1270 + 'User Registration' => array( 'register', 'var(--pink)' ),
1271 + 'PayPal' => array( 'paypal' ),
1272 + 'Stripe' => array( 'credit_card', 'var(--green)' ),
1273 + 'Twilio' => array( 'sms', 'rgb(0,160,210)' ),
1274 + 'Payment' => array( 'credit_card', 'var(--green)' ),
1275 + 'Health and Wellness' => array( 'heart', 'var(--pink)' ),
1276 + 'Event Planning' => array( 'calendar', 'var(--orange)' ),
1277 + 'Real Estate' => array( 'house', 'var(--purple)' ),
1278 + 'Calculator' => array( 'calculator', 'var(--purple)' ),
1279 + 'Registrations' => array( 'address_card' ),
1280 + 'Customer Service' => array( 'users_solid', 'var(--pink)' ),
1281 + 'Education' => array( 'pencil', 'var(--primary-color)' ),
1282 + 'Marketing' => array( 'eye', 'rgb(0,160,210)' ),
1283 + 'Feedback' => array( 'smile', 'var(--green)' ),
1284 + 'Business Operations' => array( 'case' ),
1285 + 'Contact Form' => array( 'email' ),
1286 + 'Survey' => array( 'comment', 'var(--primary-color)' ),
1287 + 'Application Form' => array( 'align_right', 'rgb(0,160,210)' ),
1288 + 'Quiz' => array( 'percent' ),
1289 + '' => array( 'align_right' ),
1600 1290 );
1601 1291
1602 - // Determine the icon to be used.
1292 + $icons[ __( 'My Templates', 'formidable' ) ] = array( 'user', 'var(--orange)' );
1293 +
1603 1294 $icon = $icons[''];
1604 1295
1605 1296 if ( count( $categories ) === 1 ) {
1606 1297 $category = reset( $categories );
1607 - $icon = $icons[ $category ] ?? $icon;
1608 - } elseif ( $categories ) {
1609 - $icons = array_intersect_key( $icons, array_flip( $categories ) );
1610 - $icon = reset( $icons );
1298 + $icon = isset( $icons[ $category ] ) ? $icons[ $category ] : $icon;
1299 + } elseif ( ! empty( $categories ) ) {
1300 + foreach ( $icons as $cat => $icon ) {
1301 + if ( ! in_array( $cat, $categories ) ) {
1302 + unset( $icons[ $cat ] );
1303 + }
1304 + }
1305 + $icon = reset( $icons );
1611 1306 }
1612 1307
1613 - // Prepare variables for output.
1614 - $icon_name = $icon[0];
1615 - $bg_color = $icon[1] ?? '';
1308 + echo '<span class="frm-inner-circle" ' . ( isset( $icon[1] ) ? 'style="background-color:' . esc_attr( $icon[1] ) : '' ) . '">';
1309 + FrmAppHelper::icon_by_class( 'frmfont frm_' . $icon[0] . '_icon' );
1310 + echo '<span class="frm_hidden">';
1311 + FrmAppHelper::icon_by_class( 'frmfont frm_lock_icon' );
1312 + echo '</span>';
1313 + echo '</span>';
1314 + }
1616 1315
1617 - // Render the icon.
1618 - echo '<span class="frm-category-icon frm-icon-wrapper"';
1619 -
1620 - if ( $bg_color && $atts['bg'] ) {
1621 - echo ' style="background-color:' . esc_attr( $bg_color ) . '"';
1622 - }
1623 -
1624 - echo '>';
1625 - FrmAppHelper::icon_by_class( 'frmfont frm_' . $icon_name . '_icon' );
1626 - echo '</span>';
1316 + /**
1317 + * @since 4.03.01
1318 + */
1319 + public static function ignore_template_categories() {
1320 + return array( 'Business', 'Elite', 'Personal', 'Creator', 'Basic', 'free' );
1627 1321 }
1628 1322
1629 1323 /**
1630 - * Get template install link.
1631 - *
1632 1324 * @since 4.02
1633 - *
1634 - * @param array $template Template details.
1635 - * @param array $args Additional arguments.
1636 - *
1637 - * @return array The link attributes.
1638 1325 */
1639 1326 public static function get_template_install_link( $template, $args ) {
1640 1327 $defaults = array(
1641 1328 'class' => 'install-now',
@@ -1650,8 +1337,13 @@
1650 1337 'class' => 'frm-install-template',
1651 1338 'href' => 'rel',
1652 1339 'atts' => '',
1653 1340 );
1341 + } elseif ( self::plan_is_allowed( $args ) ) {
1342 + $link = array(
1343 + 'url' => FrmAppHelper::admin_upgrade_link( 'addons', 'account/downloads/' ) . '&utm_content=' . $template['slug'],
1344 + 'label' => __( 'Renew', 'formidable' ),
1345 + );
1654 1346 } else {
1655 1347 $link = array(
1656 1348 'url' => $args['pricing'],
1657 1349 'label' => __( 'Upgrade', 'formidable' ),
@@ -1674,23 +1366,20 @@
1674 1366 if ( empty( $args['license_type'] ) ) {
1675 1367 return false;
1676 1368 }
1677 1369
1678 - $plans = array( 'free', 'personal', 'business', 'elite' );
1679 - $license_type = strtolower( $args['license_type'] );
1680 - $plan_required = strtolower( $args['plan_required'] );
1681 - $included = $license_type === $plan_required;
1370 + $included = $args['license_type'] === strtolower( $args['plan_required'] );
1682 1371
1683 - if ( $included || ! in_array( $plan_required, $plans, true ) ) {
1372 + $plans = array( 'free', 'personal', 'business', 'elite' );
1373 + if ( $included || ! in_array( strtolower( $args['plan_required'] ), $plans, true ) ) {
1684 1374 return $included;
1685 1375 }
1686 1376
1687 1377 foreach ( $plans as $plan ) {
1688 - if ( $included || $plan === $license_type ) {
1378 + if ( $included || $plan === $args['license_type'] ) {
1689 1379 break;
1690 1380 }
1691 -
1692 - $included = $plan === $plan_required;
1381 + $included = $plan === strtolower( $args['plan_required'] );
1693 1382 }
1694 1383
1695 1384 return $included;
1696 1385 }
@@ -1695,33 +1384,34 @@
1695 1384 return $included;
1696 1385 }
1697 1386
1698 1387 /**
1388 + * @since 4.02
1389 + */
1390 + public static function template_install_html( $link, $class = '' ) {
1391 + $link['class'] .= ' ' . $class;
1392 + echo '<a ' . esc_attr( $link['href'] ) . '="' . esc_url( $link['url'] ) . '" class="' . esc_attr( $link['class'] ) . ' " aria-label="' . esc_attr( $link['label'] ) . '"' . ( $link['atts'] ? ' target="_blank" rel="noopener"' : '' ) . '>';
1393 + }
1394 +
1395 + /**
1699 1396 * If a template or add-on cannot be installed, show a message
1700 1397 * about which plan is required.
1701 1398 *
1702 1399 * @since 4.0
1703 - *
1704 - * @param string $requires
1705 - * @param string $link
1706 - *
1707 - * @return void
1708 1400 */
1709 1401 public static function show_plan_required( $requires, $link ) {
1710 - if ( ! $requires ) {
1402 + if ( empty( $requires ) ) {
1711 1403 return;
1712 1404 }
1713 1405
1714 - // phpcs:disable Generic.WhiteSpace.ScopeIndent
1715 1406 ?>
1716 1407 <p class="frm_plan_required">
1717 - <?php esc_html_e( 'Plan required:', 'formidable' ); ?>
1408 + <?php esc_html_e( 'License plan required:', 'formidable' ); ?>
1718 1409 <a href="<?php echo esc_url( $link ); ?>" target="_blank" rel="noopener">
1719 1410 <?php echo esc_html( $requires ); ?>
1720 1411 </a>
1721 1412 </p>
1722 1413 <?php
1723 - // phpcs:enable Generic.WhiteSpace.ScopeIndent
1724 1414 }
1725 1415
1726 1416 /**
1727 1417 * @since 4.0
@@ -1726,10 +1416,9 @@
1726 1416 /**
1727 1417 * @since 4.0
1728 1418 *
1729 1419 * @param array $item
1730 - *
1731 - * @return false|string
1420 + * @return string|false
1732 1421 */
1733 1422 public static function get_plan_required( &$item ) {
1734 1423 if ( ! isset( $item['categories'] ) || ! is_array( $item['categories'] ) || ! empty( $item['url'] ) ) {
1735 1424 return false;
@@ -1734,14 +1423,20 @@
1734 1423 if ( ! isset( $item['categories'] ) || ! is_array( $item['categories'] ) || ! empty( $item['url'] ) ) {
1735 1424 return false;
1736 1425 }
1737 1426
1738 - $plans = self::get_license_types();
1427 + $plans = array( 'free', 'Basic', 'Personal', 'Plus', 'Creator', 'Business', 'Elite' );
1739 1428
1740 1429 foreach ( $item['categories'] as $k => $category ) {
1741 1430 if ( in_array( $category, $plans, true ) ) {
1742 1431 unset( $item['categories'][ $k ] );
1743 - return self::convert_legacy_package_names( $category );
1432 +
1433 + if ( in_array( $category, array( 'Creator', 'Personal' ), true ) ) {
1434 + // Show the current package name.
1435 + $category = 'Plus';
1436 + }
1437 +
1438 + return $category;
1744 1439 }
1745 1440 }
1746 1441
1747 1442 return false;
@@ -1747,53 +1442,8 @@
1747 1442 return false;
1748 1443 }
1749 1444
1750 1445 /**
1751 - * Converts legacy package names to the current standard package name.
1752 - *
1753 - * @since 6.15
1754 - *
1755 - * @param string $package_name
1756 - *
1757 - * @return string The updated package name.
1758 - */
1759 - public static function convert_legacy_package_names( $package_name ) {
1760 - if ( in_array( $package_name, array( 'Creator', 'Personal' ), true ) ) {
1761 - return 'Plus';
1762 - }
1763 -
1764 - return $package_name;
1765 - }
1766 -
1767 - /**
1768 - * Get the license types.
1769 - *
1770 - * @since 6.15
1771 - *
1772 - * @param array $args
1773 - *
1774 - * @return array
1775 - */
1776 - public static function get_license_types( $args = array() ) {
1777 - $defaults = array(
1778 - 'include_all' => true,
1779 - 'case_lower' => false,
1780 - );
1781 - $args = wp_parse_args( $args, $defaults );
1782 - $license_types = array( 'Basic', 'Plus', 'Business', 'Elite' );
1783 -
1784 - if ( $args['include_all'] ) {
1785 - $license_types = array_merge( array( 'free', 'Personal', 'Creator' ), $license_types );
1786 - }
1787 -
1788 - if ( $args['case_lower'] ) {
1789 - return array_map( 'strtolower', $license_types );
1790 - }
1791 -
1792 - return $license_types;
1793 - }
1794 -
1795 - /**
1796 1446 * Checks for warnings to be displayed after form settings are saved.
1797 1447 *
1798 1448 * @since 4.04
1799 1449 *
@@ -1801,9 +1451,10 @@
1801 1451 *
1802 1452 * @return array An array of warnings or an empty array.
1803 1453 */
1804 1454 public static function check_for_warnings( $values ) {
1805 - $warnings = array();
1455 + $warnings = array();
1456 +
1806 1457 $redirect_warning = self::check_redirect_url_for_unsafe_params( $values );
1807 1458
1808 1459 if ( $redirect_warning ) {
1809 1460 $warnings[] = $redirect_warning;
@@ -1828,9 +1479,9 @@
1828 1479
1829 1480 $options = $values['options'];
1830 1481 FrmAppHelper::sanitize_with_html( $options );
1831 1482
1832 - if ( ! isset( $options['success_action'] ) || $options['success_action'] !== 'redirect' || ! isset( $options['success_url'] ) ) {
1483 + if ( ( ! isset( $options['success_action'] ) ) || $options['success_action'] !== 'redirect' || ! isset( $options['success_url'] ) ) {
1833 1484 return false;
1834 1485 }
1835 1486
1836 1487 $unsafe_params_in_redirect = self::get_unsafe_params( $options['success_url'] );
@@ -1848,16 +1499,15 @@
1848 1499 * @return array An array of params whose names are reserved words or an empty array.
1849 1500 */
1850 1501 private static function get_unsafe_params( $url ) {
1851 1502 $redirect_components = parse_url( $url );
1852 -
1853 1503 if ( empty( $redirect_components['query'] ) ) {
1854 1504 return array();
1855 1505 }
1856 -
1857 1506 parse_str( $redirect_components['query'], $redirect_params );
1858 1507 $redirect_param_names = array_keys( $redirect_params );
1859 - $unsafe_params_in_redirect = array_intersect( $redirect_param_names, self::reserved_words() );
1508 + $reserved_words = self::reserved_words();
1509 + $unsafe_params_in_redirect = array_intersect( $redirect_param_names, $reserved_words );
1860 1510
1861 1511 return array_values( $unsafe_params_in_redirect );
1862 1512 }
1863 1513
@@ -1870,27 +1520,26 @@
1870 1520 *
1871 1521 * @return bool|string A string with an unsafe param message or false.
1872 1522 */
1873 1523 private static function create_unsafe_param_warning( $unsafe_params_in_redirect ) {
1874 - $count = count( $unsafe_params_in_redirect );
1524 + $count = count( $unsafe_params_in_redirect );
1525 + $caution = esc_html__( 'Is this intentional?', 'formidable' );
1526 + $reserved_words_intro = esc_html__( 'See the list of reserved words in WordPress.', 'formidable' );
1527 + $reserved_words_link = '<a href="https://codex.wordpress.org/WordPress_Query_Vars" target="_blank"> ' . $reserved_words_intro . '</a>';
1875 1528
1876 1529 if ( $count === 0 ) {
1877 1530 return false;
1878 1531 }
1879 1532
1880 - $caution = esc_html__( 'Is this intentional?', 'formidable' );
1881 - $reserved_words_intro = esc_html__( 'See the list of reserved words in WordPress.', 'formidable' );
1882 - $reserved_words_link = '<a href="https://codex.wordpress.org/WordPress_Query_Vars" target="_blank"> ' . $reserved_words_intro . '</a>';
1883 -
1884 - if ( $count === 1 ) {
1533 + if ( $count == 1 ) {
1885 1534 /* translators: %s: the name of a single parameter in the redirect URL */
1886 - return sprintf( esc_html__( 'The redirect URL is using the parameter "%s", which is reserved by WordPress. ', 'formidable' ), $unsafe_params_in_redirect[0] ) . $caution . $reserved_words_link; // phpcs:ignore SlevomatCodingStandard.Files.LineLength.LineTooLong
1535 + return sprintf( esc_html__( 'The redirect URL is using the parameter "%s", which is reserved by WordPress. ', 'formidable' ), $unsafe_params_in_redirect[0] ) . $caution . $reserved_words_link;
1887 1536 }
1888 1537
1889 1538 $unsafe_params_string = implode( '", "', $unsafe_params_in_redirect );
1890 1539
1891 1540 /* translators: %s: the names of two or more parameters in the redirect URL, separated by commas */
1892 - return sprintf( esc_html__( 'The redirect URL is using the parameters "%s", which are reserved by WordPress. ', 'formidable' ), $unsafe_params_string ) . $caution . $reserved_words_link; // phpcs:ignore SlevomatCodingStandard.Files.LineLength.LineTooLong
1541 + return sprintf( esc_html__( 'The redirect URL is using the parameters "%s", which are reserved by WordPress. ', 'formidable' ), $unsafe_params_string ) . $caution . $reserved_words_link;
1893 1542 }
1894 1543
1895 1544 /**
1896 1545 * Returns an array of common reserved words in WordPress.
@@ -1949,8 +1598,34 @@
1949 1598 );
1950 1599 }
1951 1600
1952 1601 /**
1602 + * Check an array of templates, determine how many the logged in user can use
1603 + *
1604 + * @param array $templates
1605 + * @param array $args
1606 + * @return int
1607 + */
1608 + public static function available_count( $templates, $args ) {
1609 + return array_reduce(
1610 + $templates,
1611 + function( $total, $template ) use ( $args ) {
1612 + if ( ! empty( $template['url'] ) ) {
1613 + return $total + 1;
1614 + }
1615 +
1616 + $args['plan_required'] = self::get_plan_required( $template );
1617 + if ( self::plan_is_allowed( $args ) ) {
1618 + return $total + 1;
1619 + }
1620 +
1621 + return $total;
1622 + },
1623 + 0
1624 + );
1625 + }
1626 +
1627 + /**
1953 1628 * Make sure the field shortcodes in a url always add the sanitize_url=1 option if nothing is defined.
1954 1629 * This is to prevent some field characters like ', @, and | from being stripped from the redirect URL.
1955 1630 *
1956 1631 * @since 5.0.16
@@ -1956,19 +1631,17 @@
1956 1631 * @since 5.0.16
1957 1632 *
1958 1633 * @param string $url
1959 1634 * @param int $form_id
1960 - *
1961 1635 * @return string
1962 1636 */
1963 1637 public static function maybe_add_sanitize_url_attr( $url, $form_id ) {
1964 - if ( ! str_contains( $url, '[' ) ) {
1638 + if ( false === strpos( $url, '[' ) ) {
1965 1639 // Do nothing if no shortcodes are detected.
1966 1640 return $url;
1967 1641 }
1968 1642
1969 1643 $parsed = wp_parse_url( $url );
1970 -
1971 1644 if ( empty( $parsed['query'] ) ) {
1972 1645 // Do nothing if no query can be detected in the url string.
1973 1646 return $url;
1974 1647 }
@@ -1974,10 +1647,10 @@
1974 1647 }
1975 1648
1976 1649 $original_query = $parsed['query'];
1977 1650 $query = $parsed['query'];
1978 - $shortcodes = FrmFieldsHelper::get_shortcodes( $query, $form_id );
1979 1651
1652 + $shortcodes = FrmFieldsHelper::get_shortcodes( $query, $form_id );
1980 1653 if ( empty( $shortcodes[0] ) ) {
1981 1654 // No shortcodes found, do nothing.
1982 1655 return $url;
1983 1656 }
@@ -1989,22 +1662,21 @@
1989 1662 // Skip if shortcodes.
1990 1663 continue;
1991 1664 }
1992 1665
1993 - if ( str_contains( $options, 'sanitize_url=' ) || str_contains( $options, 'sanitize=' ) ) {
1666 + if ( false !== strpos( $options, 'sanitize_url=' ) || false !== strpos( $options, 'sanitize=' ) ) {
1994 1667 // A sanitize option is already set so leave it alone.
1995 1668 continue;
1996 1669 }
1997 1670
1998 1671 $new_shortcode = '[' . $shortcodes[2][ $key ];
1999 -
2000 1672 if ( $options ) {
2001 1673 $new_shortcode .= ' ' . $options;
2002 1674 }
1675 + $new_shortcode .= ' sanitize_url=1]';
2003 1676
2004 - $new_shortcode .= ' sanitize_url=1]';
2005 - $query = str_replace( $shortcode, $new_shortcode, $query );
2006 - }//end foreach
1677 + $query = str_replace( $shortcode, $new_shortcode, $query );
1678 + }
2007 1679
2008 1680 if ( $query === $original_query ) {
2009 1681 return $url;
2010 1682 }
@@ -2009,200 +1681,6 @@
2009 1681 return $url;
2010 1682 }
2011 1683
2012 1684 return str_replace( $original_query, $query, $url );
2013 - }
2014 -
2015 - /**
2016 - * Outputs the appropriate button text in the publish box.
2017 - *
2018 - * @return void
2019 - */
2020 - public static function publish_box_button_text() {
2021 - $is_new_template = FrmAppHelper::simple_get( 'new_template' );
2022 - $action = FrmAppHelper::simple_get( 'frm_action' );
2023 -
2024 - if ( ( 'edit' === $action || 'settings' === $action ) && $is_new_template ) {
2025 - esc_html_e( 'Save', 'formidable' );
2026 - } else {
2027 - esc_html_e( 'Update', 'formidable' );
2028 - }
2029 - }
2030 -
2031 - /**
2032 - * Strip characters similar to the WordPress sanitize_html_class function, but allow for [ and ].
2033 - * This allows shortcodes inside of the layout classes setting.
2034 - *
2035 - * @since 6.16
2036 - *
2037 - * @param string $classname
2038 - *
2039 - * @return string
2040 - */
2041 - public static function sanitize_layout_class( $classname ) {
2042 - // Strip out any percent-encoded characters.
2043 - $sanitized = preg_replace( '|%[a-fA-F0-9][a-fA-F0-9]|', '', $classname );
2044 -
2045 - // Limit to A-Z, a-z, 0-9, '_', '-', '[', ']'.
2046 - return preg_replace( '/[^A-Za-z0-9_\-\[\]]/', '', $sanitized );
2047 - }
2048 -
2049 - /**
2050 - * Returns true if the preview should be blocked.
2051 - *
2052 - * @since 6.20
2053 - *
2054 - * @param string $form_key
2055 - *
2056 - * @return bool
2057 - */
2058 - public static function should_block_preview( $form_key ) {
2059 - $should_block = in_array( $form_key, array( 'contact-form', 'contact-us' ), true ) && ! current_user_can( 'frm_view_forms' );
2060 - /**
2061 - * Filters whether the form preview should be blocked.
2062 - *
2063 - * @since 6.20
2064 - *
2065 - * @param bool $should_block
2066 - * @param string $form_key
2067 - */
2068 - return (bool) apply_filters( 'frm_block_preview', $should_block, $form_key );
2069 - }
2070 -
2071 - /**
2072 - * Checks if the form is loaded by API.
2073 - *
2074 - * @since 6.21
2075 - *
2076 - * @return bool
2077 - */
2078 - public static function form_is_loaded_by_api() {
2079 - global $frm_vars;
2080 -
2081 - if ( ! empty( $frm_vars['inplace_edit'] ) ) {
2082 - return true;
2083 - }
2084 -
2085 - return self::is_formidable_api_form() || self::is_block_or_page_builder_preview();
2086 - }
2087 -
2088 - /**
2089 - * Checks if the form is rendered inside a block editor or page builder preview.
2090 - *
2091 - * @since 6.29
2092 - *
2093 - * @return bool
2094 - */
2095 - public static function is_block_or_page_builder_preview() {
2096 - return self::is_gutenberg_editor() || self::is_elementor_ajax() || self::is_visual_views_preview();
2097 - }
2098 -
2099 - /**
2100 - * @since 6.21
2101 - *
2102 - * @return bool
2103 - */
2104 - private static function is_visual_views_preview() {
2105 - return 'frm_views_process_box_preview' === FrmAppHelper::get_post_param( 'action' );
2106 - }
2107 -
2108 - /**
2109 - * @since 6.21
2110 - *
2111 - * @return bool
2112 - */
2113 - private static function is_elementor_ajax() {
2114 - return 'elementor_ajax' === FrmAppHelper::get_post_param( 'action' );
2115 - }
2116 -
2117 - /**
2118 - * @since 6.21
2119 - *
2120 - * @return bool
2121 - */
2122 - private static function is_gutenberg_editor() {
2123 - $url = FrmAppHelper::get_server_value( 'REQUEST_URI' );
2124 -
2125 - if ( str_contains( $url, '/wp-json/wp/v2/block-renderer/formidable/simple-form' ) ) {
2126 - return true;
2127 - }
2128 -
2129 - if ( str_contains( urldecode( $url ), 'rest_route=/wp/v2/block-renderer/formidable/' ) ) {
2130 - return true;
2131 - }
2132 -
2133 - global $pagenow;
2134 - return 'post.php' === $pagenow;
2135 - }
2136 -
2137 - /**
2138 - * @since 6.21
2139 - *
2140 - * @return bool
2141 - */
2142 - private static function is_formidable_api_form() {
2143 - if ( ! class_exists( 'FrmAPIAppController' ) ) {
2144 - return false;
2145 - }
2146 -
2147 - $url = FrmAppHelper::get_server_value( 'REQUEST_URI' );
2148 -
2149 - if ( str_contains( $url, '/wp-json/frm/v2/forms/' ) ) {
2150 - // Prevent the honeypot from appearing for an API loaded form.
2151 - // This is to prevent conflicts where the script is not working.
2152 - return true;
2153 - }
2154 -
2155 - if ( is_callable( 'FrmProFormState::get_from_request' ) ) {
2156 - $api = FrmProFormState::get_from_request( 'a', 0 );
2157 -
2158 - if ( $api ) {
2159 - return true;
2160 - }
2161 - }
2162 -
2163 - return false;
2164 - }
2165 -
2166 - /**
2167 - * @since 6.30
2168 - *
2169 - * @return void
2170 - */
2171 - public static function load_currency_js() {
2172 - global $frm_vars;
2173 -
2174 - if ( empty( $frm_vars['currency'] ) ) {
2175 - return;
2176 - }
2177 -
2178 - echo '<script>';
2179 - echo 'var frmcurrency=' . json_encode( $frm_vars['currency'] ) . ";\n";
2180 - echo 'if(typeof __FRMCURR == "undefined"){__FRMCURR=frmcurrency;}';
2181 - echo 'else{__FRMCURR=jQuery.extend(true,{},__FRMCURR,frmcurrency);}';
2182 - echo '</script>';
2183 - }
2184 -
2185 - /**
2186 - * Returns the form name or the no title text if the form name is empty.
2187 - *
2188 - * @since 6.30
2189 - *
2190 - * @param array|stdClass $form The form data.
2191 - * @param int $length The form name length to truncate to.
2192 - *
2193 - * @return string
2194 - */
2195 - public static function get_form_name( $form, $length = 0 ) {
2196 - $form_name = is_object( $form ) ? $form->name : $form['name'];
2197 -
2198 - if ( '' === $form_name || null === $form_name ) {
2199 - return self::get_no_title_text();
2200 - }
2201 -
2202 - if ( ! $length ) {
2203 - return $form_name;
2204 - }
2205 -
2206 - return FrmAppHelper::truncate( $form_name, $length );
2207 1685 }
2208 1686 }