@@ -105,13 +105,13 @@ discard block |
||
| 105 | 105 | if ( isset( $addon['categories'] ) ) { |
| 106 | 106 | $cats = array_intersect( $this->skip_categories(), $addon['categories'] ); |
| 107 | 107 | if ( ! empty( $cats ) ) { |
| 108 | - unset( $addons[ $k ] ); |
|
| 108 | + unset( $addons[$k] ); |
|
| 109 | 109 | continue; |
| 110 | 110 | } |
| 111 | 111 | } |
| 112 | 112 | |
| 113 | 113 | if ( ! array_key_exists( 'is_new', $addon ) && array_key_exists( 'released', $addon ) ) { |
| 114 | - $addons[ $k ]['is_new'] = $this->is_new( $addon ); |
|
| 114 | + $addons[$k]['is_new'] = $this->is_new( $addon ); |
|
| 115 | 115 | } |
| 116 | 116 | } |
| 117 | 117 | |
@@ -153,8 +153,8 @@ discard block |
||
| 153 | 153 | return $addon; |
| 154 | 154 | } |
| 155 | 155 | } |
| 156 | - } elseif ( isset( $addons[ $download_id ] ) ) { |
|
| 157 | - $plugin = $addons[ $download_id ]; |
|
| 156 | + } elseif ( isset( $addons[$download_id] ) ) { |
|
| 157 | + $plugin = $addons[$download_id]; |
|
| 158 | 158 | } |
| 159 | 159 | |
| 160 | 160 | return $plugin; |
@@ -80,12 +80,12 @@ discard block |
||
| 80 | 80 | $show_intervals = array( 50, 200, 500 ); |
| 81 | 81 | $asked = $this->review_status['asked']; |
| 82 | 82 | |
| 83 | - if ( ! isset( $show_intervals[ $asked ] ) ) { |
|
| 83 | + if ( ! isset( $show_intervals[$asked] ) ) { |
|
| 84 | 84 | return; |
| 85 | 85 | } |
| 86 | 86 | |
| 87 | 87 | $entries = FrmEntry::getRecordCount(); |
| 88 | - $count = $show_intervals[ $asked ]; |
|
| 88 | + $count = $show_intervals[$asked]; |
|
| 89 | 89 | $user = wp_get_current_user(); |
| 90 | 90 | |
| 91 | 91 | // Only show review request if the site has collected enough entries |
@@ -134,7 +134,7 @@ discard block |
||
| 134 | 134 | $requests = $message->get_messages(); |
| 135 | 135 | $key = $this->inbox_key . ( $asked ? $asked : '' ); |
| 136 | 136 | |
| 137 | - if ( isset( $requests[ $key ] ) ) { |
|
| 137 | + if ( isset( $requests[$key] ) ) { |
|
| 138 | 138 | return; |
| 139 | 139 | } |
| 140 | 140 | |
@@ -173,7 +173,7 @@ discard block |
||
| 173 | 173 | * @return bool |
| 174 | 174 | */ |
| 175 | 175 | private function has_later_request( $requests, $asked ) { |
| 176 | - return isset( $requests[ $this->inbox_key . ( $asked + 1 ) ] ) || isset( $requests[ $this->inbox_key . ( $asked + 2 ) ] ); |
|
| 176 | + return isset( $requests[$this->inbox_key . ( $asked + 1 )] ) || isset( $requests[$this->inbox_key . ( $asked + 2 )] ); |
|
| 177 | 177 | } |
| 178 | 178 | |
| 179 | 179 | /** |
@@ -86,7 +86,7 @@ discard block |
||
| 86 | 86 | * @return void |
| 87 | 87 | */ |
| 88 | 88 | private function init_style_settings( $atts ) { |
| 89 | - $style_settings = array( |
|
| 89 | + $style_settings = array( |
|
| 90 | 90 | 'border_color' => 'dddddd', |
| 91 | 91 | 'bg_color' => 'f7f7f7', |
| 92 | 92 | 'text_color' => '444444', |
@@ -97,12 +97,12 @@ discard block |
||
| 97 | 97 | $this->style_settings = apply_filters( 'frm_show_entry_styles', $style_settings ); |
| 98 | 98 | |
| 99 | 99 | foreach ( $this->style_settings as $key => $setting ) { |
| 100 | - if ( isset( $atts[ $key ] ) && $atts[ $key ] !== '' ) { |
|
| 101 | - $this->style_settings[ $key ] = $atts[ $key ]; |
|
| 100 | + if ( isset( $atts[$key] ) && $atts[$key] !== '' ) { |
|
| 101 | + $this->style_settings[$key] = $atts[$key]; |
|
| 102 | 102 | } |
| 103 | 103 | |
| 104 | 104 | if ( $this->is_color_setting( $key ) ) { |
| 105 | - $this->style_settings[ $key ] = $this->get_color_markup( $this->style_settings[ $key ] ); |
|
| 105 | + $this->style_settings[$key] = $this->get_color_markup( $this->style_settings[$key] ); |
|
| 106 | 106 | } |
| 107 | 107 | } |
| 108 | 108 | |
@@ -59,7 +59,7 @@ discard block |
||
| 59 | 59 | * @return void |
| 60 | 60 | */ |
| 61 | 61 | public function set( $key, $value ) { |
| 62 | - $this->state[ $key ] = $value; |
|
| 62 | + $this->state[$key] = $value; |
|
| 63 | 63 | } |
| 64 | 64 | |
| 65 | 65 | /** |
@@ -75,8 +75,8 @@ discard block |
||
| 75 | 75 | } |
| 76 | 76 | |
| 77 | 77 | public function get( $key, $default ) { |
| 78 | - if ( isset( $this->state[ $key ] ) ) { |
|
| 79 | - return $this->state[ $key ]; |
|
| 78 | + if ( isset( $this->state[$key] ) ) { |
|
| 79 | + return $this->state[$key]; |
|
| 80 | 80 | } |
| 81 | 81 | return $default; |
| 82 | 82 | } |
@@ -171,7 +171,7 @@ discard block |
||
| 171 | 171 | private function compressed_state() { |
| 172 | 172 | $compressed = array(); |
| 173 | 173 | foreach ( $this->state as $key => $value ) { |
| 174 | - $compressed[ self::compressed_key( $key ) ] = $value; |
|
| 174 | + $compressed[self::compressed_key( $key )] = $value; |
|
| 175 | 175 | } |
| 176 | 176 | return $compressed; |
| 177 | 177 | } |
@@ -76,7 +76,7 @@ |
||
| 76 | 76 | return false; |
| 77 | 77 | } |
| 78 | 78 | |
| 79 | - return $addons[ $addon_id ]; |
|
| 79 | + return $addons[$addon_id]; |
|
| 80 | 80 | } |
| 81 | 81 | |
| 82 | 82 | /** |
@@ -100,7 +100,7 @@ |
||
| 100 | 100 | 'sort' => '', |
| 101 | 101 | 'sdir' => '', |
| 102 | 102 | ) as $var => $default ) { |
| 103 | - $values[ $var ] = FrmAppHelper::get_param( $var, $default ); |
|
| 103 | + $values[$var] = FrmAppHelper::get_param( $var, $default ); |
|
| 104 | 104 | } |
| 105 | 105 | |
| 106 | 106 | return $values; |
@@ -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 | |
@@ -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 | } |