@@ -84,8 +84,8 @@ |
||
| 84 | 84 | $settings = $this->default_options(); |
| 85 | 85 | |
| 86 | 86 | foreach ( $settings as $setting => $default ) { |
| 87 | - if ( isset( $params[ 'frm_' . $this->param() . '_' . $setting ] ) ) { |
|
| 88 | - $this->settings->{$setting} = trim( sanitize_text_field( $params[ 'frm_' . $this->param() . '_' . $setting ] ) ); |
|
| 87 | + if ( isset( $params['frm_' . $this->param() . '_' . $setting] ) ) { |
|
| 88 | + $this->settings->{$setting} = trim( sanitize_text_field( $params['frm_' . $this->param() . '_' . $setting] ) ); |
|
| 89 | 89 | } |
| 90 | 90 | } |
| 91 | 91 | |
@@ -165,7 +165,7 @@ |
||
| 165 | 165 | $has_field = true; |
| 166 | 166 | $key_exists = array_key_exists( $field_atts['name'], $form_atts['form_action']->post_content ); |
| 167 | 167 | ?> |
| 168 | - <option value="<?php echo esc_attr( $field->id ); ?>" <?php selected( $key_exists ? $form_atts['form_action']->post_content[ $field_atts['name'] ] : 0, $field->id ); ?>> |
|
| 168 | + <option value="<?php echo esc_attr( $field->id ); ?>" <?php selected( $key_exists ? $form_atts['form_action']->post_content[$field_atts['name']] : 0, $field->id ); ?>> |
|
| 169 | 169 | <?php echo esc_attr( FrmAppHelper::truncate( $field->name, 50, 1 ) ); ?> |
| 170 | 170 | </option> |
| 171 | 171 | <?php |
@@ -34,10 +34,10 @@ |
||
| 34 | 34 | * @return string[] An empty array is treated as automatic. |
| 35 | 35 | */ |
| 36 | 36 | public static function get_payment_method_types( $action ) { |
| 37 | - if ( ! isset( self::$types_by_action_id[ $action->ID ] ) ) { |
|
| 38 | - self::$types_by_action_id[ $action->ID ] = self::get_filtered_payment_method_types( $action ); |
|
| 37 | + if ( ! isset( self::$types_by_action_id[$action->ID] ) ) { |
|
| 38 | + self::$types_by_action_id[$action->ID] = self::get_filtered_payment_method_types( $action ); |
|
| 39 | 39 | } |
| 40 | - return self::$types_by_action_id[ $action->ID ]; |
|
| 40 | + return self::$types_by_action_id[$action->ID]; |
|
| 41 | 41 | } |
| 42 | 42 | |
| 43 | 43 | /** |
@@ -261,14 +261,14 @@ |
||
| 261 | 261 | private function fill_values( $values, &$new_values ) { |
| 262 | 262 | $defaults = $this->get_defaults(); |
| 263 | 263 | foreach ( $defaults as $val => $default ) { |
| 264 | - if ( isset( $values[ $val ] ) ) { |
|
| 264 | + if ( isset( $values[$val] ) ) { |
|
| 265 | 265 | if ( $default['sanitize'] === 'float' ) { |
| 266 | - $new_values[ $val ] = (float) $values[ $val ]; |
|
| 266 | + $new_values[$val] = (float) $values[$val]; |
|
| 267 | 267 | } elseif ( ! empty( $default['sanitize'] ) ) { |
| 268 | - $new_values[ $val ] = call_user_func( $default['sanitize'], $values[ $val ] ); |
|
| 268 | + $new_values[$val] = call_user_func( $default['sanitize'], $values[$val] ); |
|
| 269 | 269 | } |
| 270 | 270 | } elseif ( $values['action'] === 'create' ) { |
| 271 | - $new_values[ $val ] = $default['default']; |
|
| 271 | + $new_values[$val] = $default['default']; |
|
| 272 | 272 | } |
| 273 | 273 | } |
| 274 | 274 | } |
@@ -34,7 +34,7 @@ discard block |
||
| 34 | 34 | */ |
| 35 | 35 | public static function show_status( $status ) { |
| 36 | 36 | $statuses = array_merge( self::get_payment_statuses(), self::get_subscription_statuses() ); |
| 37 | - return isset( $statuses[ $status ] ) ? $statuses[ $status ] : $status; |
|
| 37 | + return isset( $statuses[$status] ) ? $statuses[$status] : $status; |
|
| 38 | 38 | } |
| 39 | 39 | |
| 40 | 40 | /** |
@@ -119,7 +119,7 @@ discard block |
||
| 119 | 119 | */ |
| 120 | 120 | public static function get_action_setting( $option, $atts ) { |
| 121 | 121 | $settings = self::get_action_settings( $atts ); |
| 122 | - $value = isset( $settings[ $option ] ) ? $settings[ $option ] : ''; |
|
| 122 | + $value = isset( $settings[$option] ) ? $settings[$option] : ''; |
|
| 123 | 123 | return $value; |
| 124 | 124 | } |
| 125 | 125 | |
@@ -222,8 +222,8 @@ discard block |
||
| 222 | 222 | */ |
| 223 | 223 | public static function get_repeat_label_from_value( $value, $number ) { |
| 224 | 224 | $times = self::get_plural_repeat_times( $number ); |
| 225 | - if ( isset( $times[ $value ] ) ) { |
|
| 226 | - $value = $times[ $value ]; |
|
| 225 | + if ( isset( $times[$value] ) ) { |
|
| 226 | + $value = $times[$value]; |
|
| 227 | 227 | } |
| 228 | 228 | return $value; |
| 229 | 229 | } |
@@ -69,7 +69,7 @@ |
||
| 69 | 69 | 'canceled' => __( 'Canceled', 'formidable' ), |
| 70 | 70 | 'confirm' => __( 'Are you sure you want to cancel that subscription?', 'formidable' ), |
| 71 | 71 | ); |
| 72 | - $atts = array_merge( $defaults, $atts ); |
|
| 72 | + $atts = array_merge( $defaults, $atts ); |
|
| 73 | 73 | |
| 74 | 74 | if ( $sub->status === 'active' ) { |
| 75 | 75 | $link = admin_url( 'admin-ajax.php?action=frm_trans_cancel&sub=' . $sub->id . '&nonce=' . wp_create_nonce( 'frm_trans_ajax' ) ); |
@@ -23,10 +23,10 @@ discard block |
||
| 23 | 23 | * @return array|false |
| 24 | 24 | */ |
| 25 | 25 | public static function get_details_for_form( $form_id ) { |
| 26 | - if ( ! isset( self::$details_by_form_id[ $form_id ] ) ) { |
|
| 26 | + if ( ! isset( self::$details_by_form_id[$form_id] ) ) { |
|
| 27 | 27 | self::set_details_for_form( (int) $form_id ); |
| 28 | 28 | } |
| 29 | - return isset( self::$details_by_form_id[ $form_id ] ) ? self::$details_by_form_id[ $form_id ] : false; |
|
| 29 | + return isset( self::$details_by_form_id[$form_id] ) ? self::$details_by_form_id[$form_id] : false; |
|
| 30 | 30 | } |
| 31 | 31 | |
| 32 | 32 | /** |
@@ -87,7 +87,7 @@ discard block |
||
| 87 | 87 | return; |
| 88 | 88 | } |
| 89 | 89 | |
| 90 | - self::$details_by_form_id[ $form_id ] = array( |
|
| 90 | + self::$details_by_form_id[$form_id] = array( |
|
| 91 | 91 | 'entry' => $entry, |
| 92 | 92 | 'intent' => $intent, |
| 93 | 93 | 'payment' => $payment, |
@@ -16,10 +16,10 @@ |
||
| 16 | 16 | public static function get_currency( $currency ) { |
| 17 | 17 | $currency = strtoupper( $currency ); |
| 18 | 18 | $currencies = self::get_currencies(); |
| 19 | - if ( isset( $currencies[ $currency ] ) ) { |
|
| 20 | - $currency = $currencies[ $currency ]; |
|
| 21 | - } elseif ( isset( $currencies[ strtolower( $currency ) ] ) ) { |
|
| 22 | - $currency = $currencies[ strtolower( $currency ) ]; |
|
| 19 | + if ( isset( $currencies[$currency] ) ) { |
|
| 20 | + $currency = $currencies[$currency]; |
|
| 21 | + } elseif ( isset( $currencies[strtolower( $currency )] ) ) { |
|
| 22 | + $currency = $currencies[strtolower( $currency )]; |
|
| 23 | 23 | } else { |
| 24 | 24 | $currency = $currencies['USD']; |
| 25 | 25 | } |
@@ -45,7 +45,7 @@ discard block |
||
| 45 | 45 | 'page' => '', |
| 46 | 46 | 'class' => 'frm-mt-0', |
| 47 | 47 | ); |
| 48 | - $tip = array_merge( $defaults, $tip ); |
|
| 48 | + $tip = array_merge( $defaults, $tip ); |
|
| 49 | 49 | |
| 50 | 50 | if ( isset( $tip['link'] ) && ! isset( $tip['link']['medium'] ) ) { |
| 51 | 51 | $tip['link']['medium'] = 'tip'; |
@@ -372,7 +372,7 @@ discard block |
||
| 372 | 372 | * @return array |
| 373 | 373 | */ |
| 374 | 374 | public static function get_banner_tip() { |
| 375 | - $tips = array( |
|
| 375 | + $tips = array( |
|
| 376 | 376 | array( |
| 377 | 377 | 'link' => array( |
| 378 | 378 | 'medium' => 'banner', |
@@ -399,7 +399,7 @@ discard block |
||
| 399 | 399 | ), |
| 400 | 400 | ); |
| 401 | 401 | $random = rand( 0, count( $tips ) - 1 ); |
| 402 | - $tip = $tips[ $random ]; |
|
| 402 | + $tip = $tips[$random]; |
|
| 403 | 403 | $tip['num'] = $random; |
| 404 | 404 | |
| 405 | 405 | return $tip; |
@@ -408,7 +408,7 @@ discard block |
||
| 408 | 408 | public static function get_random_tip( $tips ) { |
| 409 | 409 | $random = rand( 0, count( $tips ) - 1 ); |
| 410 | 410 | |
| 411 | - return $tips[ $random ]; |
|
| 411 | + return $tips[$random]; |
|
| 412 | 412 | } |
| 413 | 413 | |
| 414 | 414 | /** |