@@ -59,8 +59,8 @@ |
||
59 | 59 | protected function init_saved_value( $entry ) { |
60 | 60 | if ( $this->field->type === 'html' ) { |
61 | 61 | $this->saved_value = $this->field->description; |
62 | - } elseif ( isset( $entry->metas[ $this->field->id ] ) ) { |
|
63 | - $this->saved_value = $entry->metas[ $this->field->id ]; |
|
62 | + } elseif ( isset( $entry->metas[$this->field->id] ) ) { |
|
63 | + $this->saved_value = $entry->metas[$this->field->id]; |
|
64 | 64 | } else { |
65 | 65 | $this->saved_value = ''; |
66 | 66 | } |
@@ -36,7 +36,7 @@ |
||
36 | 36 | $event_labels = FrmFormAction::trigger_labels(); |
37 | 37 | foreach ( $action_control->action_options['event'] as $event ) { |
38 | 38 | ?> |
39 | - <option value="<?php echo esc_attr( $event ); ?>" <?php echo in_array( $event, (array) $form_action->post_content['event'] ) ? ' selected="selected"' : ''; ?> ><?php echo esc_html( isset( $event_labels[ $event ] ) ? $event_labels[ $event ] : $event ); ?></option> |
|
39 | + <option value="<?php echo esc_attr( $event ); ?>" <?php echo in_array( $event, (array) $form_action->post_content['event'] ) ? ' selected="selected"' : ''; ?> ><?php echo esc_html( isset( $event_labels[$event] ) ? $event_labels[$event] : $event ); ?></option> |
|
40 | 40 | <?php } ?> |
41 | 41 | </select> |
42 | 42 | </p> |
@@ -3,7 +3,7 @@ discard block |
||
3 | 3 | class FrmDefPostAction extends FrmFormAction { |
4 | 4 | public function __construct() { |
5 | 5 | $action_ops = FrmFormAction::default_action_opts( 'frm_wordpress_icon frm-inverse frm_show_upgrade' ); |
6 | - $action_ops['color'] = 'rgb(0,160,210)'; |
|
6 | + $action_ops['color'] = 'rgb(0,160,210)'; |
|
7 | 7 | |
8 | 8 | parent::__construct( 'wppost', __( 'Create Post', 'formidable' ), $action_ops ); |
9 | 9 | } |
@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | class FrmDefMlcmpAction extends FrmFormAction { |
43 | 43 | public function __construct() { |
44 | 44 | $action_ops = FrmFormAction::default_action_opts( 'frm_mailchimp_icon frm_show_upgrade frm-inverse' ); |
45 | - $action_ops['color'] = 'var(--dark-grey)'; |
|
45 | + $action_ops['color'] = 'var(--dark-grey)'; |
|
46 | 46 | |
47 | 47 | parent::__construct( 'mailchimp', 'MailChimp', $action_ops ); |
48 | 48 | } |
@@ -296,7 +296,7 @@ discard block |
||
296 | 296 | } |
297 | 297 | |
298 | 298 | public static function get_banner_tip() { |
299 | - $tips = array( |
|
299 | + $tips = array( |
|
300 | 300 | array( |
301 | 301 | 'link' => array( |
302 | 302 | 'medium' => 'banner', |
@@ -323,7 +323,7 @@ discard block |
||
323 | 323 | ), |
324 | 324 | ); |
325 | 325 | $random = rand( 0, count( $tips ) - 1 ); |
326 | - $tip = $tips[ $random ]; |
|
326 | + $tip = $tips[$random]; |
|
327 | 327 | $tip['num'] = $random; |
328 | 328 | |
329 | 329 | return $tip; |
@@ -332,6 +332,6 @@ discard block |
||
332 | 332 | public static function get_random_tip( $tips ) { |
333 | 333 | $random = rand( 0, count( $tips ) - 1 ); |
334 | 334 | |
335 | - return $tips[ $random ]; |
|
335 | + return $tips[$random]; |
|
336 | 336 | } |
337 | 337 | } |
@@ -18,7 +18,7 @@ discard block |
||
18 | 18 | $page = $this->get_pagenum(); |
19 | 19 | $per_page = $this->get_items_per_page( 'formidable_page_formidable_per_page' ); |
20 | 20 | |
21 | - $mode = self::get_param( |
|
21 | + $mode = self::get_param( |
|
22 | 22 | array( |
23 | 23 | 'param' => 'mode', |
24 | 24 | 'default' => 'list', |
@@ -30,13 +30,13 @@ discard block |
||
30 | 30 | 'default' => 'name', |
31 | 31 | ) |
32 | 32 | ); |
33 | - $order = self::get_param( |
|
33 | + $order = self::get_param( |
|
34 | 34 | array( |
35 | 35 | 'param' => 'order', |
36 | 36 | 'default' => 'ASC', |
37 | 37 | ) |
38 | 38 | ); |
39 | - $start = self::get_param( |
|
39 | + $start = self::get_param( |
|
40 | 40 | array( |
41 | 41 | 'param' => 'start', |
42 | 42 | 'default' => ( $page - 1 ) * $per_page, |
@@ -177,7 +177,7 @@ discard block |
||
177 | 177 | |
178 | 178 | if ( $counts->{$status} || 'draft' !== $status ) { |
179 | 179 | /* translators: %1$s: Status, %2$s: Number of items */ |
180 | - $links[ $status ] = '<a href="' . esc_url( '?page=formidable&form_type=' . $status ) . '" ' . $class . '>' . sprintf( __( '%1$s <span class="count">(%2$s)</span>', 'formidable' ), $name, number_format_i18n( $counts->{$status} ) ) . '</a>'; |
|
180 | + $links[$status] = '<a href="' . esc_url( '?page=formidable&form_type=' . $status ) . '" ' . $class . '>' . sprintf( __( '%1$s <span class="count">(%2$s)</span>', 'formidable' ), $name, number_format_i18n( $counts->{$status} ) ) . '</a>'; |
|
181 | 181 | } |
182 | 182 | |
183 | 183 | unset( $status, $name ); |
@@ -282,7 +282,7 @@ discard block |
||
282 | 282 | private function get_actions( &$actions, $item, $edit_link ) { |
283 | 283 | $new_actions = FrmFormsHelper::get_action_links( $item->id, $item ); |
284 | 284 | foreach ( $new_actions as $link => $action ) { |
285 | - $new_actions[ $link ] = FrmFormsHelper::format_link_html( $action, 'short' ); |
|
285 | + $new_actions[$link] = FrmFormsHelper::format_link_html( $action, 'short' ); |
|
286 | 286 | } |
287 | 287 | |
288 | 288 | if ( 'trash' == $this->status ) { |
@@ -61,8 +61,8 @@ discard block |
||
61 | 61 | } |
62 | 62 | |
63 | 63 | $with_tags = $args['conditional_check'] ? 3 : 2; |
64 | - if ( ! empty( $shortcodes[ $with_tags ][ $short_key ] ) ) { |
|
65 | - $tag = str_replace( '[' . $prefix, '', $shortcodes[0][ $short_key ] ); |
|
64 | + if ( ! empty( $shortcodes[$with_tags][$short_key] ) ) { |
|
65 | + $tag = str_replace( '[' . $prefix, '', $shortcodes[0][$short_key] ); |
|
66 | 66 | $tag = str_replace( ']', '', $tag ); |
67 | 67 | $tag = str_replace( chr( 194 ) . chr( 160 ), ' ', $tag ); |
68 | 68 | $tags = preg_split( '/\s+/', $tag, 2 ); |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | $tag = $tags[0]; |
71 | 71 | } |
72 | 72 | } else { |
73 | - $tag = $shortcodes[ $with_tags - 1 ][ $short_key ]; |
|
73 | + $tag = $shortcodes[$with_tags - 1][$short_key]; |
|
74 | 74 | } |
75 | 75 | |
76 | 76 | return $tag; |
@@ -115,7 +115,7 @@ discard block |
||
115 | 115 | $section['function'] = $original; |
116 | 116 | } |
117 | 117 | |
118 | - $sections[ $key ] = $section; |
|
118 | + $sections[$key] = $section; |
|
119 | 119 | } |
120 | 120 | |
121 | 121 | return $sections; |
@@ -127,11 +127,11 @@ discard block |
||
127 | 127 | |
128 | 128 | $section = FrmAppHelper::get_post_param( 'tab', '', 'sanitize_text_field' ); |
129 | 129 | $sections = self::get_settings_tabs(); |
130 | - if ( ! isset( $sections[ $section ] ) ) { |
|
130 | + if ( ! isset( $sections[$section] ) ) { |
|
131 | 131 | wp_die(); |
132 | 132 | } |
133 | 133 | |
134 | - $section = $sections[ $section ]; |
|
134 | + $section = $sections[$section]; |
|
135 | 135 | |
136 | 136 | if ( isset( $section['class'] ) ) { |
137 | 137 | call_user_func( array( $section['class'], $section['function'] ) ); |
@@ -98,19 +98,19 @@ discard block |
||
98 | 98 | } |
99 | 99 | |
100 | 100 | foreach ( $action_controls as $action ) { |
101 | - if ( isset( $groups[ $action->id_base ] ) || in_array( $action->id_base, $grouped ) ) { |
|
101 | + if ( isset( $groups[$action->id_base] ) || in_array( $action->id_base, $grouped ) ) { |
|
102 | 102 | continue; |
103 | 103 | } |
104 | 104 | |
105 | 105 | $this_group = $action->action_options['group']; |
106 | - if ( ! isset( $groups[ $this_group ] ) ) { |
|
106 | + if ( ! isset( $groups[$this_group] ) ) { |
|
107 | 107 | $this_group = 'misc'; |
108 | 108 | } |
109 | 109 | |
110 | - if ( ! isset( $groups[ $this_group ]['actions'] ) ) { |
|
111 | - $groups[ $this_group ]['actions'] = array(); |
|
110 | + if ( ! isset( $groups[$this_group]['actions'] ) ) { |
|
111 | + $groups[$this_group]['actions'] = array(); |
|
112 | 112 | } |
113 | - $groups[ $this_group ]['actions'][] = $action->id_base; |
|
113 | + $groups[$this_group]['actions'][] = $action->id_base; |
|
114 | 114 | |
115 | 115 | unset( $action ); |
116 | 116 | } |
@@ -241,7 +241,7 @@ discard block |
||
241 | 241 | return $a; |
242 | 242 | } |
243 | 243 | |
244 | - $actions[ $a->id_base ] = $a; |
|
244 | + $actions[$a->id_base] = $a; |
|
245 | 245 | } |
246 | 246 | |
247 | 247 | return $actions; |
@@ -272,16 +272,16 @@ discard block |
||
272 | 272 | $action_map = array(); |
273 | 273 | |
274 | 274 | foreach ( $action_controls as $key => $control ) { |
275 | - $action_map[ $control->id_base ] = $key; |
|
275 | + $action_map[$control->id_base] = $key; |
|
276 | 276 | } |
277 | 277 | |
278 | 278 | foreach ( $form_actions as $action ) { |
279 | - if ( ! isset( $action_map[ $action->post_excerpt ] ) ) { |
|
279 | + if ( ! isset( $action_map[$action->post_excerpt] ) ) { |
|
280 | 280 | // don't try and show settings if action no longer exists |
281 | 281 | continue; |
282 | 282 | } |
283 | 283 | |
284 | - self::action_control( $action, $form, $action->ID, $action_controls[ $action_map[ $action->post_excerpt ] ], $values ); |
|
284 | + self::action_control( $action, $form, $action->ID, $action_controls[$action_map[$action->post_excerpt]], $values ); |
|
285 | 285 | } |
286 | 286 | } |
287 | 287 | |
@@ -489,8 +489,8 @@ discard block |
||
489 | 489 | } |
490 | 490 | |
491 | 491 | // Store actions so they can be triggered with the correct priority. |
492 | - $stored_actions[ $action->ID ] = $action; |
|
493 | - $action_priority[ $action->ID ] = $link_settings[ $action->post_excerpt ]->action_options['priority']; |
|
492 | + $stored_actions[$action->ID] = $action; |
|
493 | + $action_priority[$action->ID] = $link_settings[$action->post_excerpt]->action_options['priority']; |
|
494 | 494 | |
495 | 495 | unset( $action ); |
496 | 496 | } |
@@ -502,7 +502,7 @@ discard block |
||
502 | 502 | new FrmNotification(); |
503 | 503 | |
504 | 504 | foreach ( $action_priority as $action_id => $priority ) { |
505 | - $action = $stored_actions[ $action_id ]; |
|
505 | + $action = $stored_actions[$action_id]; |
|
506 | 506 | do_action( 'frm_trigger_' . $action->post_excerpt . '_action', $action, $entry, $form, $event ); |
507 | 507 | do_action( 'frm_trigger_' . $action->post_excerpt . '_' . $event . '_action', $action, $entry, $form ); |
508 | 508 | |
@@ -549,12 +549,12 @@ discard block |
||
549 | 549 | } |
550 | 550 | |
551 | 551 | public function register( $action_class ) { |
552 | - $this->actions[ $action_class ] = new $action_class(); |
|
552 | + $this->actions[$action_class] = new $action_class(); |
|
553 | 553 | } |
554 | 554 | |
555 | 555 | public function unregister( $action_class ) { |
556 | - if ( isset( $this->actions[ $action_class ] ) ) { |
|
557 | - unset( $this->actions[ $action_class ] ); |
|
556 | + if ( isset( $this->actions[$action_class] ) ) { |
|
557 | + unset( $this->actions[$action_class] ); |
|
558 | 558 | } |
559 | 559 | } |
560 | 560 | |
@@ -563,8 +563,8 @@ discard block |
||
563 | 563 | |
564 | 564 | foreach ( $keys as $key ) { |
565 | 565 | // don't register new action if old action with the same id is already registered |
566 | - if ( ! isset( $this->actions[ $key ] ) ) { |
|
567 | - $this->actions[ $key ]->_register(); |
|
566 | + if ( ! isset( $this->actions[$key] ) ) { |
|
567 | + $this->actions[$key]->_register(); |
|
568 | 568 | } |
569 | 569 | } |
570 | 570 | } |
@@ -234,7 +234,7 @@ discard block |
||
234 | 234 | $styles = $frm_style->get_all(); |
235 | 235 | |
236 | 236 | if ( is_numeric( $style ) ) { |
237 | - $style = $styles[ $style ]; |
|
237 | + $style = $styles[$style]; |
|
238 | 238 | } elseif ( 'default' == $style ) { |
239 | 239 | $style = $frm_style->get_default_style( $styles ); |
240 | 240 | } |
@@ -270,8 +270,8 @@ discard block |
||
270 | 270 | |
271 | 271 | $forms = FrmForm::get_published_forms(); |
272 | 272 | foreach ( $forms as $form ) { |
273 | - $new_style = ( isset( $_POST['style'] ) && isset( $_POST['style'][ $form->id ] ) ) ? sanitize_text_field( wp_unslash( $_POST['style'][ $form->id ] ) ) : ''; |
|
274 | - $previous_style = ( isset( $_POST['prev_style'] ) && isset( $_POST['prev_style'][ $form->id ] ) ) ? sanitize_text_field( wp_unslash( $_POST['prev_style'][ $form->id ] ) ) : ''; |
|
273 | + $new_style = ( isset( $_POST['style'] ) && isset( $_POST['style'][$form->id] ) ) ? sanitize_text_field( wp_unslash( $_POST['style'][$form->id] ) ) : ''; |
|
274 | + $previous_style = ( isset( $_POST['prev_style'] ) && isset( $_POST['prev_style'][$form->id] ) ) ? sanitize_text_field( wp_unslash( $_POST['prev_style'][$form->id] ) ) : ''; |
|
275 | 275 | if ( $new_style == $previous_style ) { |
276 | 276 | continue; |
277 | 277 | } |
@@ -530,8 +530,8 @@ discard block |
||
530 | 530 | */ |
531 | 531 | public static function get_style_val( $val, $form = 'default' ) { |
532 | 532 | $style = self::get_form_style( $form ); |
533 | - if ( $style && isset( $style->post_content[ $val ] ) ) { |
|
534 | - return $style->post_content[ $val ]; |
|
533 | + if ( $style && isset( $style->post_content[$val] ) ) { |
|
534 | + return $style->post_content[$val]; |
|
535 | 535 | } |
536 | 536 | } |
537 | 537 | |
@@ -550,7 +550,7 @@ discard block |
||
550 | 550 | } elseif ( 'alt_bg_color' == $name ) { |
551 | 551 | $setting = 'bg_color_active'; |
552 | 552 | } |
553 | - $default_styles[ $name ] = $style->post_content[ $setting ]; |
|
553 | + $default_styles[$name] = $style->post_content[$setting]; |
|
554 | 554 | unset( $name, $val ); |
555 | 555 | } |
556 | 556 |