@@ -172,6 +172,9 @@ discard block |
||
172 | 172 | return $response; |
173 | 173 | } |
174 | 174 | |
175 | + /** |
|
176 | + * @param string $source_form_name |
|
177 | + */ |
|
175 | 178 | protected function prepare_new_form( $source_id, $source_form_name ) { |
176 | 179 | return array( |
177 | 180 | 'import_form_id' => $source_id, |
@@ -307,6 +310,7 @@ discard block |
||
307 | 310 | * This switches the name field to individual fields. |
308 | 311 | * |
309 | 312 | * @since 4.04.03 |
313 | + * @param integer $remove |
|
310 | 314 | */ |
311 | 315 | protected function insert_fields_in_array( $subs, $start, $remove, &$fields ) { |
312 | 316 | array_splice( $fields, $start, $remove, $subs ); |
@@ -476,6 +480,9 @@ discard block |
||
476 | 480 | return array(); |
477 | 481 | } |
478 | 482 | |
483 | + /** |
|
484 | + * @param string $type |
|
485 | + */ |
|
479 | 486 | private function is_unsupported_field( $type ) { |
480 | 487 | $fields = $this->unsupported_field_types(); |
481 | 488 | |
@@ -491,6 +498,9 @@ discard block |
||
491 | 498 | return array(); |
492 | 499 | } |
493 | 500 | |
501 | + /** |
|
502 | + * @param string $type |
|
503 | + */ |
|
494 | 504 | protected function should_skip_field( $type ) { |
495 | 505 | $skip_pro_fields = $this->skip_pro_fields(); |
496 | 506 |
@@ -396,7 +396,7 @@ discard block |
||
396 | 396 | protected function create_fields( $form_id, &$form ) { |
397 | 397 | foreach ( $form['fields'] as $key => $new_field ) { |
398 | 398 | $new_field['form_id'] = $form_id; |
399 | - $form['fields'][ $key ]['id'] = FrmField::create( $new_field ); |
|
399 | + $form['fields'][$key]['id'] = FrmField::create( $new_field ); |
|
400 | 400 | } |
401 | 401 | } |
402 | 402 | |
@@ -426,9 +426,9 @@ discard block |
||
426 | 426 | } elseif ( $key === 'the_post_title' ) { |
427 | 427 | $new_action->post_content['post_title'] = $value; |
428 | 428 | } elseif ( is_string( $value ) ) { |
429 | - $new_action->post_content[ $key ] = $this->replace_smart_tags( $value, $form['fields'] ); |
|
429 | + $new_action->post_content[$key] = $this->replace_smart_tags( $value, $form['fields'] ); |
|
430 | 430 | } else { |
431 | - $new_action->post_content[ $key ] = $value; |
|
431 | + $new_action->post_content[$key] = $value; |
|
432 | 432 | } |
433 | 433 | } |
434 | 434 | |
@@ -447,7 +447,7 @@ discard block |
||
447 | 447 | |
448 | 448 | $imported = $this->get_tracked_import(); |
449 | 449 | |
450 | - $imported[ $this->slug ][ $new_form_id ] = $source_id; |
|
450 | + $imported[$this->slug][$new_form_id] = $source_id; |
|
451 | 451 | |
452 | 452 | update_option( $this->tracking, $imported, false ); |
453 | 453 | } |
@@ -467,11 +467,11 @@ discard block |
||
467 | 467 | private function is_imported( $source_id ) { |
468 | 468 | $imported = $this->get_tracked_import(); |
469 | 469 | $new_form_id = 0; |
470 | - if ( ! isset( $imported[ $this->slug ] ) || ! in_array( $source_id, $imported[ $this->slug ] ) ) { |
|
470 | + if ( ! isset( $imported[$this->slug] ) || ! in_array( $source_id, $imported[$this->slug] ) ) { |
|
471 | 471 | return $new_form_id; |
472 | 472 | } |
473 | 473 | |
474 | - $new_form_id = array_search( $source_id, array_reverse( $imported[ $this->slug ], true ) ); |
|
474 | + $new_form_id = array_search( $source_id, array_reverse( $imported[$this->slug], true ) ); |
|
475 | 475 | if ( ! empty( $new_form_id ) && empty( FrmForm::get_key_by_id( $new_form_id ) ) ) { |
476 | 476 | // Allow reimport if the form was deleted. |
477 | 477 | $new_form_id = 0; |
@@ -279,7 +279,7 @@ discard block |
||
279 | 279 | * |
280 | 280 | * @since 4.04.04 |
281 | 281 | * |
282 | - * @return array Step data. |
|
282 | + * @return string Step data. |
|
283 | 283 | */ |
284 | 284 | protected function get_data_step_install() { |
285 | 285 | |
@@ -326,7 +326,7 @@ discard block |
||
326 | 326 | * |
327 | 327 | * @since 4.04.04 |
328 | 328 | * |
329 | - * @return array Step data. |
|
329 | + * @return string Step data. |
|
330 | 330 | */ |
331 | 331 | protected function get_data_step_setup() { |
332 | 332 |
@@ -235,7 +235,7 @@ |
||
235 | 235 | if ( is_array( $upsell ) ) { |
236 | 236 | foreach ( $upsell as $k => $plugin ) { |
237 | 237 | if ( strpos( $plugin['slug'], 'wpforms' ) !== false ) { |
238 | - unset( $upsell[ $k ] ); |
|
238 | + unset( $upsell[$k] ); |
|
239 | 239 | } |
240 | 240 | } |
241 | 241 | } |
@@ -129,11 +129,11 @@ discard block |
||
129 | 129 | <?php } ?> |
130 | 130 | |
131 | 131 | .<?php echo esc_html( $style_class ); ?> .frm_icon_font.frm_minus_icon:before{ |
132 | - content:"\e<?php echo esc_html( isset( $minus_icons[ $repeat_icon ] ) ? $minus_icons[ $repeat_icon ]['-'] : $minus_icons[1]['-'] ); ?>"; |
|
132 | + content:"\e<?php echo esc_html( isset( $minus_icons[$repeat_icon] ) ? $minus_icons[$repeat_icon]['-'] : $minus_icons[1]['-'] ); ?>"; |
|
133 | 133 | } |
134 | 134 | |
135 | 135 | .<?php echo esc_html( $style_class ); ?> .frm_icon_font.frm_plus_icon:before{ |
136 | - content:"\e<?php echo esc_html( isset( $minus_icons[ $repeat_icon ] ) ? $minus_icons[ $repeat_icon ]['+'] : $minus_icons[1]['+'] ); ?>"; |
|
136 | + content:"\e<?php echo esc_html( isset( $minus_icons[$repeat_icon] ) ? $minus_icons[$repeat_icon]['+'] : $minus_icons[1]['+'] ); ?>"; |
|
137 | 137 | } |
138 | 138 | |
139 | 139 | .<?php echo esc_html( $style_class ); ?> .frm_icon_font.frm_minus_icon:before, |
@@ -145,14 +145,14 @@ discard block |
||
145 | 145 | } |
146 | 146 | |
147 | 147 | .<?php echo esc_html( $style_class ); ?> .frm_trigger.active .frm_icon_font.frm_arrow_icon:before{ |
148 | - content:"\e<?php echo esc_html( isset( $arrow_icons[ $collapse_icon ] ) ? $arrow_icons[ $collapse_icon ]['-'] : $arrow_icons[1]['-'] ); ?>"; |
|
148 | + content:"\e<?php echo esc_html( isset( $arrow_icons[$collapse_icon] ) ? $arrow_icons[$collapse_icon]['-'] : $arrow_icons[1]['-'] ); ?>"; |
|
149 | 149 | <?php if ( ! empty( $section_color ) ) { ?> |
150 | 150 | color:<?php echo esc_html( $section_color . $important ); ?>; |
151 | 151 | <?php } ?> |
152 | 152 | } |
153 | 153 | |
154 | 154 | .<?php echo esc_html( $style_class ); ?> .frm_trigger .frm_icon_font.frm_arrow_icon:before{ |
155 | - content:"\e<?php echo esc_html( isset( $arrow_icons[ $collapse_icon ] ) ? $arrow_icons[ $collapse_icon ]['+'] : $arrow_icons[1]['+'] ); ?>"; |
|
155 | + content:"\e<?php echo esc_html( isset( $arrow_icons[$collapse_icon] ) ? $arrow_icons[$collapse_icon]['+'] : $arrow_icons[1]['+'] ); ?>"; |
|
156 | 156 | <?php if ( ! empty( $section_color ) ) { ?> |
157 | 157 | color:<?php echo esc_html( $section_color . $important ); ?>; |
158 | 158 | <?php } ?> |
@@ -24,7 +24,7 @@ |
||
24 | 24 | private static function get_notice_count() { |
25 | 25 | FrmFormMigratorsHelper::maybe_add_to_inbox(); |
26 | 26 | |
27 | - $inbox = new FrmInbox(); |
|
27 | + $inbox = new FrmInbox(); |
|
28 | 28 | return $inbox->unread_html(); |
29 | 29 | } |
30 | 30 |
@@ -69,6 +69,9 @@ discard block |
||
69 | 69 | return $url; |
70 | 70 | } |
71 | 71 | |
72 | + /** |
|
73 | + * @return string |
|
74 | + */ |
|
72 | 75 | public static function get_affiliate() { |
73 | 76 | return absint( apply_filters( 'frm_affiliate_id', 0 ) ); |
74 | 77 | } |
@@ -134,6 +137,9 @@ discard block |
||
134 | 137 | return $frm_settings; |
135 | 138 | } |
136 | 139 | |
140 | + /** |
|
141 | + * @return string |
|
142 | + */ |
|
137 | 143 | public static function get_menu_name() { |
138 | 144 | $frm_settings = self::get_settings(); |
139 | 145 | |
@@ -1063,6 +1069,8 @@ discard block |
||
1063 | 1069 | * This is for reverse compatibility with switching 3 params to 1. |
1064 | 1070 | * |
1065 | 1071 | * @since 4.03.06 |
1072 | + * @param string $page_id |
|
1073 | + * @param boolean $truncate |
|
1066 | 1074 | */ |
1067 | 1075 | private static function prep_page_dropdown_params( $page_id, $truncate, &$args ) { |
1068 | 1076 | if ( ! is_array( $args ) ) { |
@@ -1300,6 +1308,9 @@ discard block |
||
1300 | 1308 | return ( is_array( $values ) && in_array( $current, $values ) ) || ( ! is_array( $values ) && $values == $current ); |
1301 | 1309 | } |
1302 | 1310 | |
1311 | + /** |
|
1312 | + * @param string $function |
|
1313 | + */ |
|
1303 | 1314 | public static function recursive_function_map( $value, $function ) { |
1304 | 1315 | if ( is_array( $value ) ) { |
1305 | 1316 | $original_function = $function; |
@@ -1348,6 +1359,9 @@ discard block |
||
1348 | 1359 | return $return; |
1349 | 1360 | } |
1350 | 1361 | |
1362 | + /** |
|
1363 | + * @return string |
|
1364 | + */ |
|
1351 | 1365 | public static function esc_textarea( $text, $is_rich_text = false ) { |
1352 | 1366 | $safe_text = str_replace( '"', '"', $text ); |
1353 | 1367 | if ( ! $is_rich_text ) { |
@@ -1548,6 +1562,9 @@ discard block |
||
1548 | 1562 | return $values; |
1549 | 1563 | } |
1550 | 1564 | |
1565 | + /** |
|
1566 | + * @param string $fields |
|
1567 | + */ |
|
1551 | 1568 | private static function prepare_field_arrays( $fields, $record, array &$values, $args ) { |
1552 | 1569 | if ( ! empty( $fields ) ) { |
1553 | 1570 | foreach ( (array) $fields as $field ) { |
@@ -1754,6 +1771,9 @@ discard block |
||
1754 | 1771 | return $sub . ( ( $len < $original_len ) ? $continue : '' ); |
1755 | 1772 | } |
1756 | 1773 | |
1774 | + /** |
|
1775 | + * @param string[] $function_names |
|
1776 | + */ |
|
1757 | 1777 | public static function mb_function( $function_names, $args ) { |
1758 | 1778 | $mb_function_name = $function_names[0]; |
1759 | 1779 | $function_name = $function_names[1]; |
@@ -1788,6 +1808,9 @@ discard block |
||
1788 | 1808 | return $formatted; |
1789 | 1809 | } |
1790 | 1810 | |
1811 | + /** |
|
1812 | + * @param string $time_format |
|
1813 | + */ |
|
1791 | 1814 | private static function add_time_to_date( $time_format, $date ) { |
1792 | 1815 | if ( empty( $time_format ) ) { |
1793 | 1816 | $time_format = get_option( 'time_format' ); |
@@ -1898,6 +1921,7 @@ discard block |
||
1898 | 1921 | |
1899 | 1922 | /** |
1900 | 1923 | * @since 4.05.01 |
1924 | + * @param string $from |
|
1901 | 1925 | */ |
1902 | 1926 | private static function convert_time( $from, $to ) { |
1903 | 1927 | $convert = array( |
@@ -2371,6 +2395,7 @@ discard block |
||
2371 | 2395 | * If Pro is far outdated, show a message. |
2372 | 2396 | * |
2373 | 2397 | * @since 4.0.01 |
2398 | + * @param string $min_version |
|
2374 | 2399 | */ |
2375 | 2400 | public static function min_pro_version_notice( $min_version ) { |
2376 | 2401 | if ( ! self::is_formidable_admin() ) { |
@@ -150,7 +150,7 @@ discard block |
||
150 | 150 | 'fill' => '#4d4d4d', |
151 | 151 | 'orange' => '#f05a24', |
152 | 152 | ); |
153 | - $atts = array_merge( $defaults, $atts ); |
|
153 | + $atts = array_merge( $defaults, $atts ); |
|
154 | 154 | |
155 | 155 | return '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 599.68 601.37" width="' . esc_attr( $atts['width'] ) . '" height="' . esc_attr( $atts['height'] ) . '"> |
156 | 156 | <path fill="' . esc_attr( $atts['orange'] ) . '" d="M289.6 384h140v76h-140z"/> |
@@ -349,7 +349,7 @@ discard block |
||
349 | 349 | * @return string |
350 | 350 | */ |
351 | 351 | public static function get_server_value( $value ) { |
352 | - return isset( $_SERVER[ $value ] ) ? wp_strip_all_tags( wp_unslash( $_SERVER[ $value ] ) ) : ''; |
|
352 | + return isset( $_SERVER[$value] ) ? wp_strip_all_tags( wp_unslash( $_SERVER[$value] ) ) : ''; |
|
353 | 353 | } |
354 | 354 | |
355 | 355 | /** |
@@ -372,7 +372,7 @@ discard block |
||
372 | 372 | ); |
373 | 373 | $ip = ''; |
374 | 374 | foreach ( $ip_options as $key ) { |
375 | - if ( ! isset( $_SERVER[ $key ] ) ) { |
|
375 | + if ( ! isset( $_SERVER[$key] ) ) { |
|
376 | 376 | continue; |
377 | 377 | } |
378 | 378 | |
@@ -397,10 +397,10 @@ discard block |
||
397 | 397 | |
398 | 398 | if ( $src == 'get' ) { |
399 | 399 | // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized |
400 | - $value = isset( $_POST[ $param ] ) ? wp_unslash( $_POST[ $param ] ) : ( isset( $_GET[ $param ] ) ? wp_unslash( $_GET[ $param ] ) : $default ); |
|
401 | - if ( ! isset( $_POST[ $param ] ) && isset( $_GET[ $param ] ) && ! is_array( $value ) ) { |
|
400 | + $value = isset( $_POST[$param] ) ? wp_unslash( $_POST[$param] ) : ( isset( $_GET[$param] ) ? wp_unslash( $_GET[$param] ) : $default ); |
|
401 | + if ( ! isset( $_POST[$param] ) && isset( $_GET[$param] ) && ! is_array( $value ) ) { |
|
402 | 402 | // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized |
403 | - $value = htmlspecialchars_decode( wp_unslash( $_GET[ $param ] ) ); |
|
403 | + $value = htmlspecialchars_decode( wp_unslash( $_GET[$param] ) ); |
|
404 | 404 | } |
405 | 405 | self::sanitize_value( $sanitize, $value ); |
406 | 406 | } else { |
@@ -421,7 +421,7 @@ discard block |
||
421 | 421 | } |
422 | 422 | |
423 | 423 | $p = trim( $p, ']' ); |
424 | - $value = isset( $value[ $p ] ) ? $value[ $p ] : $default; |
|
424 | + $value = isset( $value[$p] ) ? $value[$p] : $default; |
|
425 | 425 | } |
426 | 426 | } |
427 | 427 | |
@@ -477,26 +477,26 @@ discard block |
||
477 | 477 | 'sanitize' => 'sanitize_text_field', |
478 | 478 | 'serialized' => false, |
479 | 479 | ); |
480 | - $args = wp_parse_args( $args, $defaults ); |
|
480 | + $args = wp_parse_args( $args, $defaults ); |
|
481 | 481 | |
482 | 482 | $value = $args['default']; |
483 | 483 | if ( $args['type'] == 'get' ) { |
484 | - if ( $_GET && isset( $_GET[ $args['param'] ] ) ) { |
|
484 | + if ( $_GET && isset( $_GET[$args['param']] ) ) { |
|
485 | 485 | // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized |
486 | - $value = wp_unslash( $_GET[ $args['param'] ] ); |
|
486 | + $value = wp_unslash( $_GET[$args['param']] ); |
|
487 | 487 | } |
488 | 488 | } elseif ( $args['type'] == 'post' ) { |
489 | - if ( isset( $_POST[ $args['param'] ] ) ) { |
|
489 | + if ( isset( $_POST[$args['param']] ) ) { |
|
490 | 490 | // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized |
491 | - $value = wp_unslash( $_POST[ $args['param'] ] ); |
|
491 | + $value = wp_unslash( $_POST[$args['param']] ); |
|
492 | 492 | if ( $args['serialized'] === true && is_serialized_string( $value ) && is_serialized( $value ) ) { |
493 | 493 | self::unserialize_or_decode( $value ); |
494 | 494 | } |
495 | 495 | } |
496 | 496 | } else { |
497 | - if ( isset( $_REQUEST[ $args['param'] ] ) ) { |
|
497 | + if ( isset( $_REQUEST[$args['param']] ) ) { |
|
498 | 498 | // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized |
499 | - $value = wp_unslash( $_REQUEST[ $args['param'] ] ); |
|
499 | + $value = wp_unslash( $_REQUEST[$args['param']] ); |
|
500 | 500 | } |
501 | 501 | } |
502 | 502 | |
@@ -528,7 +528,7 @@ discard block |
||
528 | 528 | if ( is_array( $value ) ) { |
529 | 529 | $temp_values = $value; |
530 | 530 | foreach ( $temp_values as $k => $v ) { |
531 | - self::sanitize_value( $sanitize, $value[ $k ] ); |
|
531 | + self::sanitize_value( $sanitize, $value[$k] ); |
|
532 | 532 | } |
533 | 533 | } else { |
534 | 534 | $value = call_user_func( $sanitize, $value ); |
@@ -539,8 +539,8 @@ discard block |
||
539 | 539 | public static function sanitize_request( $sanitize_method, &$values ) { |
540 | 540 | $temp_values = $values; |
541 | 541 | foreach ( $temp_values as $k => $val ) { |
542 | - if ( isset( $sanitize_method[ $k ] ) ) { |
|
543 | - $values[ $k ] = call_user_func( $sanitize_method[ $k ], $val ); |
|
542 | + if ( isset( $sanitize_method[$k] ) ) { |
|
543 | + $values[$k] = call_user_func( $sanitize_method[$k], $val ); |
|
544 | 544 | } |
545 | 545 | } |
546 | 546 | } |
@@ -563,7 +563,7 @@ discard block |
||
563 | 563 | if ( is_array( $value ) ) { |
564 | 564 | $temp_values = $value; |
565 | 565 | foreach ( $temp_values as $k => $v ) { |
566 | - self::decode_specialchars( $value[ $k ] ); |
|
566 | + self::decode_specialchars( $value[$k] ); |
|
567 | 567 | } |
568 | 568 | } else { |
569 | 569 | self::decode_amp( $value ); |
@@ -640,7 +640,7 @@ discard block |
||
640 | 640 | $allowed_html = $html; |
641 | 641 | } elseif ( ! empty( $allowed ) ) { |
642 | 642 | foreach ( (array) $allowed as $a ) { |
643 | - $allowed_html[ $a ] = isset( $html[ $a ] ) ? $html[ $a ] : array(); |
|
643 | + $allowed_html[$a] = isset( $html[$a] ) ? $html[$a] : array(); |
|
644 | 644 | } |
645 | 645 | } |
646 | 646 | |
@@ -797,8 +797,8 @@ discard block |
||
797 | 797 | } |
798 | 798 | |
799 | 799 | global $wp_query; |
800 | - if ( isset( $wp_query->query_vars[ $param ] ) ) { |
|
801 | - $value = $wp_query->query_vars[ $param ]; |
|
800 | + if ( isset( $wp_query->query_vars[$param] ) ) { |
|
801 | + $value = $wp_query->query_vars[$param]; |
|
802 | 802 | } |
803 | 803 | |
804 | 804 | return $value; |
@@ -965,7 +965,7 @@ discard block |
||
965 | 965 | 'new_file_path' => self::plugin_path() . '/js', |
966 | 966 | ) |
967 | 967 | ); |
968 | - $new_file = new FrmCreateFile( $file_atts ); |
|
968 | + $new_file = new FrmCreateFile( $file_atts ); |
|
969 | 969 | |
970 | 970 | $files = array( |
971 | 971 | self::plugin_path() . '/js/jquery/jquery.placeholder.min.js', |
@@ -1277,8 +1277,8 @@ discard block |
||
1277 | 1277 | return $error; |
1278 | 1278 | } |
1279 | 1279 | |
1280 | - $nonce_value = ( $_REQUEST && isset( $_REQUEST[ $nonce_name ] ) ) ? sanitize_text_field( wp_unslash( $_REQUEST[ $nonce_name ] ) ) : ''; |
|
1281 | - if ( $_REQUEST && ( ! isset( $_REQUEST[ $nonce_name ] ) || ! wp_verify_nonce( $nonce_value, $nonce ) ) ) { |
|
1280 | + $nonce_value = ( $_REQUEST && isset( $_REQUEST[$nonce_name] ) ) ? sanitize_text_field( wp_unslash( $_REQUEST[$nonce_name] ) ) : ''; |
|
1281 | + if ( $_REQUEST && ( ! isset( $_REQUEST[$nonce_name] ) || ! wp_verify_nonce( $nonce_value, $nonce ) ) ) { |
|
1282 | 1282 | $frm_settings = self::get_settings(); |
1283 | 1283 | $error = $frm_settings->admin_permission; |
1284 | 1284 | } |
@@ -1313,7 +1313,7 @@ discard block |
||
1313 | 1313 | } else { |
1314 | 1314 | foreach ( $value as $k => $v ) { |
1315 | 1315 | if ( ! is_array( $v ) ) { |
1316 | - $value[ $k ] = call_user_func( $original_function, $v ); |
|
1316 | + $value[$k] = call_user_func( $original_function, $v ); |
|
1317 | 1317 | } |
1318 | 1318 | } |
1319 | 1319 | } |
@@ -1338,7 +1338,7 @@ discard block |
||
1338 | 1338 | $return = array_merge( $return, self::array_flatten( $value, $keys ) ); |
1339 | 1339 | } else { |
1340 | 1340 | if ( $keys == 'keep' ) { |
1341 | - $return[ $key ] = $value; |
|
1341 | + $return[$key] = $value; |
|
1342 | 1342 | } else { |
1343 | 1343 | $return[] = $value; |
1344 | 1344 | } |
@@ -1402,11 +1402,11 @@ discard block |
||
1402 | 1402 | } |
1403 | 1403 | |
1404 | 1404 | $ver = $default; |
1405 | - if ( ! isset( $wp_scripts->registered[ $handle ] ) ) { |
|
1405 | + if ( ! isset( $wp_scripts->registered[$handle] ) ) { |
|
1406 | 1406 | return $ver; |
1407 | 1407 | } |
1408 | 1408 | |
1409 | - $query = $wp_scripts->registered[ $handle ]; |
|
1409 | + $query = $wp_scripts->registered[$handle]; |
|
1410 | 1410 | if ( is_object( $query ) && ! empty( $query->ver ) ) { |
1411 | 1411 | $ver = $query->ver; |
1412 | 1412 | } |
@@ -1529,7 +1529,7 @@ discard block |
||
1529 | 1529 | |
1530 | 1530 | foreach ( array( 'name', 'description' ) as $var ) { |
1531 | 1531 | $default_val = isset( $record->{$var} ) ? $record->{$var} : ''; |
1532 | - $values[ $var ] = self::get_param( $var, $default_val, 'get', 'wp_kses_post' ); |
|
1532 | + $values[$var] = self::get_param( $var, $default_val, 'get', 'wp_kses_post' ); |
|
1533 | 1533 | unset( $var, $default_val ); |
1534 | 1534 | } |
1535 | 1535 | |
@@ -1587,9 +1587,9 @@ discard block |
||
1587 | 1587 | } |
1588 | 1588 | } |
1589 | 1589 | |
1590 | - $field_type = isset( $post_values['field_options'][ 'type_' . $field->id ] ) ? $post_values['field_options'][ 'type_' . $field->id ] : $field->type; |
|
1591 | - if ( isset( $post_values['item_meta'][ $field->id ] ) ) { |
|
1592 | - $new_value = $post_values['item_meta'][ $field->id ]; |
|
1590 | + $field_type = isset( $post_values['field_options']['type_' . $field->id] ) ? $post_values['field_options']['type_' . $field->id] : $field->type; |
|
1591 | + if ( isset( $post_values['item_meta'][$field->id] ) ) { |
|
1592 | + $new_value = $post_values['item_meta'][$field->id]; |
|
1593 | 1593 | self::unserialize_or_decode( $new_value ); |
1594 | 1594 | } else { |
1595 | 1595 | $new_value = $meta_value; |
@@ -1610,7 +1610,7 @@ discard block |
||
1610 | 1610 | |
1611 | 1611 | $field_array = array_merge( (array) $field->field_options, $field_array ); |
1612 | 1612 | |
1613 | - $values['fields'][ $field->id ] = $field_array; |
|
1613 | + $values['fields'][$field->id] = $field_array; |
|
1614 | 1614 | } |
1615 | 1615 | |
1616 | 1616 | /** |
@@ -1657,11 +1657,11 @@ discard block |
||
1657 | 1657 | } |
1658 | 1658 | |
1659 | 1659 | foreach ( $form->options as $opt => $value ) { |
1660 | - if ( isset( $post_values[ $opt ] ) ) { |
|
1661 | - $values[ $opt ] = $post_values[ $opt ]; |
|
1662 | - self::unserialize_or_decode( $values[ $opt ] ); |
|
1660 | + if ( isset( $post_values[$opt] ) ) { |
|
1661 | + $values[$opt] = $post_values[$opt]; |
|
1662 | + self::unserialize_or_decode( $values[$opt] ); |
|
1663 | 1663 | } else { |
1664 | - $values[ $opt ] = $value; |
|
1664 | + $values[$opt] = $value; |
|
1665 | 1665 | } |
1666 | 1666 | } |
1667 | 1667 | |
@@ -1675,8 +1675,8 @@ discard block |
||
1675 | 1675 | $form_defaults = FrmFormsHelper::get_default_opts(); |
1676 | 1676 | |
1677 | 1677 | foreach ( $form_defaults as $opt => $default ) { |
1678 | - if ( ! isset( $values[ $opt ] ) || $values[ $opt ] == '' ) { |
|
1679 | - $values[ $opt ] = ( $post_values && isset( $post_values['options'][ $opt ] ) ) ? $post_values['options'][ $opt ] : $default; |
|
1678 | + if ( ! isset( $values[$opt] ) || $values[$opt] == '' ) { |
|
1679 | + $values[$opt] = ( $post_values && isset( $post_values['options'][$opt] ) ) ? $post_values['options'][$opt] : $default; |
|
1680 | 1680 | } |
1681 | 1681 | |
1682 | 1682 | unset( $opt, $default ); |
@@ -1687,8 +1687,8 @@ discard block |
||
1687 | 1687 | } |
1688 | 1688 | |
1689 | 1689 | foreach ( array( 'before', 'after', 'submit' ) as $h ) { |
1690 | - if ( ! isset( $values[ $h . '_html' ] ) ) { |
|
1691 | - $values[ $h . '_html' ] = ( isset( $post_values['options'][ $h . '_html' ] ) ? $post_values['options'][ $h . '_html' ] : FrmFormsHelper::get_default_html( $h ) ); |
|
1690 | + if ( ! isset( $values[$h . '_html'] ) ) { |
|
1691 | + $values[$h . '_html'] = ( isset( $post_values['options'][$h . '_html'] ) ? $post_values['options'][$h . '_html'] : FrmFormsHelper::get_default_html( $h ) ); |
|
1692 | 1692 | } |
1693 | 1693 | unset( $h ); |
1694 | 1694 | } |
@@ -1840,25 +1840,25 @@ discard block |
||
1840 | 1840 | if ( ! is_numeric( $levels ) ) { |
1841 | 1841 | // Show time in specified unit. |
1842 | 1842 | $levels = self::get_unit( $levels ); |
1843 | - if ( isset( $time_strings[ $levels ] ) ) { |
|
1843 | + if ( isset( $time_strings[$levels] ) ) { |
|
1844 | 1844 | $diff = array( |
1845 | 1845 | $levels => self::time_format( $levels, $diff ), |
1846 | 1846 | ); |
1847 | 1847 | $time_strings = array( |
1848 | - $levels => $time_strings[ $levels ], |
|
1848 | + $levels => $time_strings[$levels], |
|
1849 | 1849 | ); |
1850 | 1850 | } |
1851 | 1851 | $levels = 1; |
1852 | 1852 | } |
1853 | 1853 | |
1854 | 1854 | foreach ( $time_strings as $k => $v ) { |
1855 | - if ( isset( $diff[ $k ] ) && $diff[ $k ] ) { |
|
1856 | - $time_strings[ $k ] = $diff[ $k ] . ' ' . ( $diff[ $k ] > 1 ? $v[1] : $v[0] ); |
|
1857 | - } elseif ( isset( $diff[ $k ] ) && count( $time_strings ) === 1 ) { |
|
1855 | + if ( isset( $diff[$k] ) && $diff[$k] ) { |
|
1856 | + $time_strings[$k] = $diff[$k] . ' ' . ( $diff[$k] > 1 ? $v[1] : $v[0] ); |
|
1857 | + } elseif ( isset( $diff[$k] ) && count( $time_strings ) === 1 ) { |
|
1858 | 1858 | // Account for 0. |
1859 | - $time_strings[ $k ] = $diff[ $k ] . ' ' . $v[1]; |
|
1859 | + $time_strings[$k] = $diff[$k] . ' ' . $v[1]; |
|
1860 | 1860 | } else { |
1861 | - unset( $time_strings[ $k ] ); |
|
1861 | + unset( $time_strings[$k] ); |
|
1862 | 1862 | } |
1863 | 1863 | } |
1864 | 1864 | |
@@ -1877,8 +1877,8 @@ discard block |
||
1877 | 1877 | 'y' => 'y', |
1878 | 1878 | 'd' => 'days', |
1879 | 1879 | ); |
1880 | - if ( isset( $return[ $unit ] ) ) { |
|
1881 | - return $diff[ $return[ $unit ] ]; |
|
1880 | + if ( isset( $return[$unit] ) ) { |
|
1881 | + return $diff[$return[$unit]]; |
|
1882 | 1882 | } |
1883 | 1883 | |
1884 | 1884 | $total = $diff['days'] * self::convert_time( 'd', $unit ); |
@@ -1886,11 +1886,11 @@ discard block |
||
1886 | 1886 | $times = array( 'h', 'i', 's' ); |
1887 | 1887 | |
1888 | 1888 | foreach ( $times as $time ) { |
1889 | - if ( ! isset( $diff[ $time ] ) ) { |
|
1889 | + if ( ! isset( $diff[$time] ) ) { |
|
1890 | 1890 | continue; |
1891 | 1891 | } |
1892 | 1892 | |
1893 | - $total += $diff[ $time ] * self::convert_time( $time, $unit ); |
|
1893 | + $total += $diff[$time] * self::convert_time( $time, $unit ); |
|
1894 | 1894 | } |
1895 | 1895 | |
1896 | 1896 | return floor( $total ); |
@@ -1910,7 +1910,7 @@ discard block |
||
1910 | 1910 | 'y' => DAY_IN_SECONDS * 365.25, |
1911 | 1911 | ); |
1912 | 1912 | |
1913 | - return $convert[ $from ] / $convert[ $to ]; |
|
1913 | + return $convert[$from] / $convert[$to]; |
|
1914 | 1914 | } |
1915 | 1915 | |
1916 | 1916 | /** |
@@ -1918,7 +1918,7 @@ discard block |
||
1918 | 1918 | */ |
1919 | 1919 | private static function get_unit( $unit ) { |
1920 | 1920 | $units = self::get_time_strings(); |
1921 | - if ( isset( $units[ $unit ] ) || is_numeric( $unit ) ) { |
|
1921 | + if ( isset( $units[$unit] ) || is_numeric( $unit ) ) { |
|
1922 | 1922 | return $unit; |
1923 | 1923 | } |
1924 | 1924 | |
@@ -1999,17 +1999,17 @@ discard block |
||
1999 | 1999 | |
2000 | 2000 | case 1: |
2001 | 2001 | $l2 = $name; |
2002 | - self::add_value_to_array( $name, $l2, $this_val, $vars[ $l1 ] ); |
|
2002 | + self::add_value_to_array( $name, $l2, $this_val, $vars[$l1] ); |
|
2003 | 2003 | break; |
2004 | 2004 | |
2005 | 2005 | case 2: |
2006 | 2006 | $l3 = $name; |
2007 | - self::add_value_to_array( $name, $l3, $this_val, $vars[ $l1 ][ $l2 ] ); |
|
2007 | + self::add_value_to_array( $name, $l3, $this_val, $vars[$l1][$l2] ); |
|
2008 | 2008 | break; |
2009 | 2009 | |
2010 | 2010 | case 3: |
2011 | 2011 | $l4 = $name; |
2012 | - self::add_value_to_array( $name, $l4, $this_val, $vars[ $l1 ][ $l2 ][ $l3 ] ); |
|
2012 | + self::add_value_to_array( $name, $l4, $this_val, $vars[$l1][$l2][$l3] ); |
|
2013 | 2013 | } |
2014 | 2014 | |
2015 | 2015 | unset( $this_val, $n ); |
@@ -2028,8 +2028,8 @@ discard block |
||
2028 | 2028 | public static function add_value_to_array( $name, $l1, $val, &$vars ) { |
2029 | 2029 | if ( $name == '' ) { |
2030 | 2030 | $vars[] = $val; |
2031 | - } elseif ( ! isset( $vars[ $l1 ] ) ) { |
|
2032 | - $vars[ $l1 ] = $val; |
|
2031 | + } elseif ( ! isset( $vars[$l1] ) ) { |
|
2032 | + $vars[$l1] = $val; |
|
2033 | 2033 | } |
2034 | 2034 | } |
2035 | 2035 | |
@@ -2045,7 +2045,7 @@ discard block |
||
2045 | 2045 | 'email_subject' => esc_attr( sprintf( __( 'If you leave the subject blank, the default will be used: %1$s Form submitted on %2$s', 'formidable' ), $form_name, self::site_name() ) ), |
2046 | 2046 | ); |
2047 | 2047 | |
2048 | - if ( ! isset( $tooltips[ $name ] ) ) { |
|
2048 | + if ( ! isset( $tooltips[$name] ) ) { |
|
2049 | 2049 | return; |
2050 | 2050 | } |
2051 | 2051 | |
@@ -2055,7 +2055,7 @@ discard block |
||
2055 | 2055 | echo ' class="frm_help"'; |
2056 | 2056 | } |
2057 | 2057 | |
2058 | - echo ' title="' . esc_attr( $tooltips[ $name ] ); |
|
2058 | + echo ' title="' . esc_attr( $tooltips[$name] ); |
|
2059 | 2059 | |
2060 | 2060 | if ( 'open' != $class ) { |
2061 | 2061 | echo '"'; |
@@ -2108,13 +2108,13 @@ discard block |
||
2108 | 2108 | } |
2109 | 2109 | |
2110 | 2110 | private static function prepare_action_slashes( $val, $key, &$post_content ) { |
2111 | - if ( ! isset( $post_content[ $key ] ) ) { |
|
2111 | + if ( ! isset( $post_content[$key] ) ) { |
|
2112 | 2112 | return; |
2113 | 2113 | } |
2114 | 2114 | |
2115 | 2115 | if ( is_array( $val ) ) { |
2116 | 2116 | foreach ( $val as $k1 => $v1 ) { |
2117 | - self::prepare_action_slashes( $v1, $k1, $post_content[ $key ] ); |
|
2117 | + self::prepare_action_slashes( $v1, $k1, $post_content[$key] ); |
|
2118 | 2118 | unset( $k1, $v1 ); |
2119 | 2119 | } |
2120 | 2120 | } else { |
@@ -2122,7 +2122,7 @@ discard block |
||
2122 | 2122 | $val = stripslashes( $val ); |
2123 | 2123 | |
2124 | 2124 | // Add backslashes before double quotes and forward slashes only |
2125 | - $post_content[ $key ] = addcslashes( $val, '"\\/' ); |
|
2125 | + $post_content[$key] = addcslashes( $val, '"\\/' ); |
|
2126 | 2126 | } |
2127 | 2127 | } |
2128 | 2128 | |
@@ -2181,14 +2181,14 @@ discard block |
||
2181 | 2181 | continue; |
2182 | 2182 | } |
2183 | 2183 | $key = $input['name']; |
2184 | - if ( isset( $formatted[ $key ] ) ) { |
|
2185 | - if ( is_array( $formatted[ $key ] ) ) { |
|
2186 | - $formatted[ $key ][] = $input['value']; |
|
2184 | + if ( isset( $formatted[$key] ) ) { |
|
2185 | + if ( is_array( $formatted[$key] ) ) { |
|
2186 | + $formatted[$key][] = $input['value']; |
|
2187 | 2187 | } else { |
2188 | - $formatted[ $key ] = array( $formatted[ $key ], $input['value'] ); |
|
2188 | + $formatted[$key] = array( $formatted[$key], $input['value'] ); |
|
2189 | 2189 | } |
2190 | 2190 | } else { |
2191 | - $formatted[ $key ] = $input['value']; |
|
2191 | + $formatted[$key] = $input['value']; |
|
2192 | 2192 | } |
2193 | 2193 | } |
2194 | 2194 |
@@ -71,12 +71,12 @@ discard block |
||
71 | 71 | $show_intervals = array( 50, 200, 500 ); |
72 | 72 | $asked = $this->review_status['asked']; |
73 | 73 | |
74 | - if ( ! isset( $show_intervals[ $asked ] ) ) { |
|
74 | + if ( ! isset( $show_intervals[$asked] ) ) { |
|
75 | 75 | return; |
76 | 76 | } |
77 | 77 | |
78 | 78 | $entries = FrmEntry::getRecordCount(); |
79 | - $count = $show_intervals[ $asked ]; |
|
79 | + $count = $show_intervals[$asked]; |
|
80 | 80 | $user = wp_get_current_user(); |
81 | 81 | |
82 | 82 | // Only show review request if the site has collected enough entries |
@@ -118,7 +118,7 @@ discard block |
||
118 | 118 | $requests = $message->get_messages(); |
119 | 119 | $key = $this->inbox_key . ( $asked ? $asked : '' ); |
120 | 120 | |
121 | - if ( isset( $requests[ $key ] ) ) { |
|
121 | + if ( isset( $requests[$key] ) ) { |
|
122 | 122 | return; |
123 | 123 | } |
124 | 124 | |
@@ -154,7 +154,7 @@ discard block |
||
154 | 154 | * @since 4.05.02 |
155 | 155 | */ |
156 | 156 | private function has_later_request( $requests, $asked ) { |
157 | - return isset( $requests[ $this->inbox_key . ( $asked + 1 ) ] ) || isset( $requests[ $this->inbox_key . ( $asked + 2 ) ] ); |
|
157 | + return isset( $requests[$this->inbox_key . ( $asked + 1 )] ) || isset( $requests[$this->inbox_key . ( $asked + 2 )] ); |
|
158 | 158 | } |
159 | 159 | |
160 | 160 | /** |
@@ -125,7 +125,8 @@ |
||
125 | 125 | } |
126 | 126 | |
127 | 127 | // Only do this for single site installs. |
128 | - if ( isset( $_GET['activate-multi'] ) || is_network_admin() ) { // WPCS: CSRF ok. |
|
128 | + if ( isset( $_GET['activate-multi'] ) || is_network_admin() ) { |
|
129 | +// WPCS: CSRF ok. |
|
129 | 130 | return; |
130 | 131 | } |
131 | 132 |
@@ -546,6 +546,9 @@ |
||
546 | 546 | $this->show_import_options( $this->view_options(), 'view' ); |
547 | 547 | } |
548 | 548 | |
549 | + /** |
|
550 | + * @param string $importing |
|
551 | + */ |
|
549 | 552 | protected function show_import_options( $options, $importing, $xml = '' ) { |
550 | 553 | if ( empty( $options ) ) { |
551 | 554 | return; |
@@ -159,7 +159,7 @@ discard block |
||
159 | 159 | */ |
160 | 160 | public function add_settings( $sections ) { |
161 | 161 | wp_enqueue_style( 'formidable-pro-fields' ); |
162 | - $sections[ $this->plugin_slug ] = array( |
|
162 | + $sections[$this->plugin_slug] = array( |
|
163 | 163 | 'class' => $this, |
164 | 164 | 'function' => 'settings_page', |
165 | 165 | 'name' => $this->plugin_name(), |
@@ -316,9 +316,9 @@ discard block |
||
316 | 316 | // Set the current step. |
317 | 317 | if ( ! isset( $step['current'] ) ) { |
318 | 318 | if ( $step['complete'] ) { |
319 | - $steps[ $k ]['current'] = false; |
|
319 | + $steps[$k]['current'] = false; |
|
320 | 320 | } else { |
321 | - $steps[ $k ]['current'] = ! $has_current; |
|
321 | + $steps[$k]['current'] = ! $has_current; |
|
322 | 322 | $has_current = true; |
323 | 323 | } |
324 | 324 | } elseif ( $step['current'] ) { |
@@ -328,10 +328,10 @@ discard block |
||
328 | 328 | // Set disabled buttons. |
329 | 329 | $class = isset( $step['button_class'] ) ? $step['button_class'] : ''; |
330 | 330 | $class .= ' button-primary frm-button-primary'; |
331 | - if ( ! $steps[ $k ]['current'] ) { |
|
331 | + if ( ! $steps[$k]['current'] ) { |
|
332 | 332 | $class .= ' frm_grey disabled'; |
333 | 333 | } |
334 | - $steps[ $k ]['button_class'] = $class; |
|
334 | + $steps[$k]['button_class'] = $class; |
|
335 | 335 | } |
336 | 336 | |
337 | 337 | return $steps; |
@@ -353,7 +353,7 @@ discard block |
||
353 | 353 | if ( $plugin['status'] === 'active' ) { |
354 | 354 | continue; |
355 | 355 | } |
356 | - $links[ $plugin_key ] = $plugin; |
|
356 | + $links[$plugin_key] = $plugin; |
|
357 | 357 | if ( isset( $plugin['url'] ) ) { |
358 | 358 | $rel[] = $plugin['url']; |
359 | 359 | } else { |
@@ -468,7 +468,7 @@ discard block |
||
468 | 468 | $addons = $api->get_api_info(); |
469 | 469 | |
470 | 470 | $id = $this->download_id(); |
471 | - $has_file = isset( $addons[ $id ] ) && isset( $addons[ $id ]['beta'] ); |
|
471 | + $has_file = isset( $addons[$id] ) && isset( $addons[$id]['beta'] ); |
|
472 | 472 | |
473 | 473 | if ( ! $step['current'] ) { |
474 | 474 | ?> |
@@ -483,10 +483,10 @@ discard block |
||
483 | 483 | |
484 | 484 | if ( ! $has_file ) { |
485 | 485 | echo '<p class="frm_error_style">' . esc_html__( 'We didn\'t find anything to import. Please contact our team.', 'formidable' ) . '</p>'; |
486 | - } elseif ( ! isset( $addons[ $id ]['beta']['package'] ) ) { |
|
486 | + } elseif ( ! isset( $addons[$id]['beta']['package'] ) ) { |
|
487 | 487 | echo '<p class="frm_error_style">' . esc_html__( 'Looks like you may not have a current subscription for this solution. Please check your account.', 'formidable' ) . '</p>'; |
488 | 488 | } else { |
489 | - $xml = $addons[ $id ]['beta']['package']; |
|
489 | + $xml = $addons[$id]['beta']['package']; |
|
490 | 490 | if ( is_array( $xml ) ) { |
491 | 491 | $xml = reset( $xml ); |
492 | 492 | } |
@@ -624,7 +624,7 @@ discard block |
||
624 | 624 | foreach ( $forms as $form ) { |
625 | 625 | $was_imported = isset( $form['form'] ) ? FrmForm::get_id_by_key( $form['form'] ) : false; |
626 | 626 | if ( $was_imported ) { |
627 | - $imported[ $form['form'] ] = $was_imported; |
|
627 | + $imported[$form['form']] = $was_imported; |
|
628 | 628 | } |
629 | 629 | } |
630 | 630 |
@@ -29,7 +29,7 @@ |
||
29 | 29 | </h3> |
30 | 30 | <span class="frm_inbox_date"> |
31 | 31 | <?php |
32 | - if ( ! isset( $message['read'] ) || ! isset( $message['read'][ $user->ID ] ) ) { |
|
32 | + if ( ! isset( $message['read'] ) || ! isset( $message['read'][$user->ID] ) ) { |
|
33 | 33 | $inbox->mark_read( $key ); |
34 | 34 | ?> |
35 | 35 | <span class="frm_inbox_unread"></span> |
@@ -132,6 +132,9 @@ discard block |
||
132 | 132 | } |
133 | 133 | } |
134 | 134 | |
135 | + /** |
|
136 | + * @param boolean $messages |
|
137 | + */ |
|
135 | 138 | private function filter_messages( &$messages ) { |
136 | 139 | $user_id = get_current_user_id(); |
137 | 140 | foreach ( $messages as $k => $message ) { |
@@ -256,6 +259,7 @@ discard block |
||
256 | 259 | |
257 | 260 | /** |
258 | 261 | * @since 4.05.02 |
262 | + * @param string $key |
|
259 | 263 | */ |
260 | 264 | public function remove( $key ) { |
261 | 265 | if ( isset( $this->messages[ $key ] ) ) { |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | * @param array $message |
80 | 80 | */ |
81 | 81 | public function add_message( $message ) { |
82 | - if ( isset( $this->messages[ $message['key'] ] ) && ! isset( $message['force'] ) ) { |
|
82 | + if ( isset( $this->messages[$message['key']] ) && ! isset( $message['force'] ) ) { |
|
83 | 83 | // Don't replace messages unless required. |
84 | 84 | return; |
85 | 85 | } |
@@ -88,13 +88,13 @@ discard block |
||
88 | 88 | return; |
89 | 89 | } |
90 | 90 | |
91 | - if ( isset( $this->messages[ $message['key'] ] ) ) { |
|
91 | + if ( isset( $this->messages[$message['key']] ) ) { |
|
92 | 92 | // Move up and mark as new. |
93 | - unset( $this->messages[ $message['key'] ] ); |
|
93 | + unset( $this->messages[$message['key']] ); |
|
94 | 94 | } |
95 | 95 | |
96 | 96 | $this->fill_message( $message ); |
97 | - $this->messages[ $message['key'] ] = $message; |
|
97 | + $this->messages[$message['key']] = $message; |
|
98 | 98 | |
99 | 99 | $this->update_list(); |
100 | 100 | |
@@ -122,11 +122,11 @@ discard block |
||
122 | 122 | private function clean_messages() { |
123 | 123 | $removed = false; |
124 | 124 | foreach ( $this->messages as $t => $message ) { |
125 | - $read = isset( $message['read'] ) && ! empty( $message['read'] ) && isset( $message['read'][ get_current_user_id() ] ) && $message['read'][ get_current_user_id() ] < strtotime( '-1 month' ); |
|
126 | - $dismissed = isset( $message['dismissed'] ) && ! empty( $message['dismissed'] ) && isset( $message['dismissed'][ get_current_user_id() ] ) && $message['dismissed'][ get_current_user_id() ] < strtotime( '-1 week' ); |
|
125 | + $read = isset( $message['read'] ) && ! empty( $message['read'] ) && isset( $message['read'][get_current_user_id()] ) && $message['read'][get_current_user_id()] < strtotime( '-1 month' ); |
|
126 | + $dismissed = isset( $message['dismissed'] ) && ! empty( $message['dismissed'] ) && isset( $message['dismissed'][get_current_user_id()] ) && $message['dismissed'][get_current_user_id()] < strtotime( '-1 week' ); |
|
127 | 127 | $expired = $this->is_expired( $message ); |
128 | 128 | if ( $read || $expired || $dismissed ) { |
129 | - unset( $this->messages[ $t ] ); |
|
129 | + unset( $this->messages[$t] ); |
|
130 | 130 | $removed = true; |
131 | 131 | } |
132 | 132 | } |
@@ -139,11 +139,11 @@ discard block |
||
139 | 139 | private function filter_messages( &$messages ) { |
140 | 140 | $user_id = get_current_user_id(); |
141 | 141 | foreach ( $messages as $k => $message ) { |
142 | - $dismissed = isset( $message['dismissed'] ) && isset( $message['dismissed'][ $user_id ] ); |
|
142 | + $dismissed = isset( $message['dismissed'] ) && isset( $message['dismissed'][$user_id] ); |
|
143 | 143 | if ( $this->is_expired( $message ) || $dismissed ) { |
144 | - unset( $messages[ $k ] ); |
|
144 | + unset( $messages[$k] ); |
|
145 | 145 | } elseif ( ! $this->is_for_user( $message ) ) { |
146 | - unset( $messages[ $k ] ); |
|
146 | + unset( $messages[$k] ); |
|
147 | 147 | } |
148 | 148 | } |
149 | 149 | $messages = apply_filters( 'frm_filter_inbox', $messages ); |
@@ -176,14 +176,14 @@ discard block |
||
176 | 176 | * @param string $key |
177 | 177 | */ |
178 | 178 | public function mark_read( $key ) { |
179 | - if ( ! isset( $this->messages[ $key ] ) ) { |
|
179 | + if ( ! isset( $this->messages[$key] ) ) { |
|
180 | 180 | return; |
181 | 181 | } |
182 | 182 | |
183 | - if ( ! isset( $this->messages[ $key ]['read'] ) ) { |
|
184 | - $this->messages[ $key ]['read'] = array(); |
|
183 | + if ( ! isset( $this->messages[$key]['read'] ) ) { |
|
184 | + $this->messages[$key]['read'] = array(); |
|
185 | 185 | } |
186 | - $this->messages[ $key ]['read'][ get_current_user_id() ] = time(); |
|
186 | + $this->messages[$key]['read'][get_current_user_id()] = time(); |
|
187 | 187 | |
188 | 188 | $this->update_list(); |
189 | 189 | } |
@@ -194,9 +194,9 @@ discard block |
||
194 | 194 | * @since 4.05.02 |
195 | 195 | */ |
196 | 196 | public function mark_unread( $key ) { |
197 | - $is_read = isset( $this->messages[ $key ] ) && isset( $this->messages[ $key ]['read'] ) && isset( $this->messages[ $key ]['read'][ get_current_user_id() ] ); |
|
197 | + $is_read = isset( $this->messages[$key] ) && isset( $this->messages[$key]['read'] ) && isset( $this->messages[$key]['read'][get_current_user_id()] ); |
|
198 | 198 | if ( $is_read ) { |
199 | - unset( $this->messages[ $key ]['read'][ get_current_user_id() ] ); |
|
199 | + unset( $this->messages[$key]['read'][get_current_user_id()] ); |
|
200 | 200 | $this->update_list(); |
201 | 201 | } |
202 | 202 | } |
@@ -210,14 +210,14 @@ discard block |
||
210 | 210 | return; |
211 | 211 | } |
212 | 212 | |
213 | - if ( ! isset( $this->messages[ $key ] ) ) { |
|
213 | + if ( ! isset( $this->messages[$key] ) ) { |
|
214 | 214 | return; |
215 | 215 | } |
216 | 216 | |
217 | - if ( ! isset( $this->messages[ $key ]['dismissed'] ) ) { |
|
218 | - $this->messages[ $key ]['dismissed'] = array(); |
|
217 | + if ( ! isset( $this->messages[$key]['dismissed'] ) ) { |
|
218 | + $this->messages[$key]['dismissed'] = array(); |
|
219 | 219 | } |
220 | - $this->messages[ $key ]['dismissed'][ get_current_user_id() ] = time(); |
|
220 | + $this->messages[$key]['dismissed'][get_current_user_id()] = time(); |
|
221 | 221 | |
222 | 222 | $this->update_list(); |
223 | 223 | } |
@@ -229,11 +229,11 @@ discard block |
||
229 | 229 | $user_id = get_current_user_id(); |
230 | 230 | foreach ( $this->messages as $key => $message ) { |
231 | 231 | if ( ! isset( $message['dismissed'] ) ) { |
232 | - $this->messages[ $key ]['dismissed'] = array(); |
|
232 | + $this->messages[$key]['dismissed'] = array(); |
|
233 | 233 | } |
234 | 234 | |
235 | - if ( ! isset( $message['dismissed'][ $user_id ] ) ) { |
|
236 | - $this->messages[ $key ]['dismissed'][ $user_id ] = time(); |
|
235 | + if ( ! isset( $message['dismissed'][$user_id] ) ) { |
|
236 | + $this->messages[$key]['dismissed'][$user_id] = time(); |
|
237 | 237 | } |
238 | 238 | } |
239 | 239 | $this->update_list(); |
@@ -243,8 +243,8 @@ discard block |
||
243 | 243 | $messages = $this->get_messages( 'filter' ); |
244 | 244 | $user_id = get_current_user_id(); |
245 | 245 | foreach ( $messages as $t => $message ) { |
246 | - if ( isset( $message['read'] ) && isset( $message['read'][ $user_id ] ) ) { |
|
247 | - unset( $messages[ $t ] ); |
|
246 | + if ( isset( $message['read'] ) && isset( $message['read'][$user_id] ) ) { |
|
247 | + unset( $messages[$t] ); |
|
248 | 248 | } |
249 | 249 | } |
250 | 250 | return $messages; |
@@ -268,8 +268,8 @@ discard block |
||
268 | 268 | * @since 4.05.02 |
269 | 269 | */ |
270 | 270 | public function remove( $key ) { |
271 | - if ( isset( $this->messages[ $key ] ) ) { |
|
272 | - unset( $this->messages[ $key ] ); |
|
271 | + if ( isset( $this->messages[$key] ) ) { |
|
272 | + unset( $this->messages[$key] ); |
|
273 | 273 | $this->update_list(); |
274 | 274 | } |
275 | 275 | } |