Completed
Branch 4.0Builder (9ef7e0)
by Stephanie
03:43
created
classes/models/fields/FrmFieldNumber.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
 
44 44
 		//validate the number format
45 45
 		if ( ! is_numeric( $args['value'] ) && '' !== $args['value'] ) {
46
-			$errors[ 'field' . $args['id'] ] = FrmFieldsHelper::get_error_msg( $this->field, 'invalid' );
46
+			$errors['field' . $args['id']] = FrmFieldsHelper::get_error_msg( $this->field, 'invalid' );
47 47
 		}
48 48
 
49 49
 		// validate number settings
@@ -55,9 +55,9 @@  discard block
 block discarded – undo
55 55
 			if ( $frm_settings->use_html && $maxnum !== '' && $minnum !== '' ) {
56 56
 				$value = (float) $args['value'];
57 57
 				if ( $value < $minnum ) {
58
-					$errors[ 'field' . $args['id'] ] = __( 'Please select a higher number', 'formidable' );
58
+					$errors['field' . $args['id']] = __( 'Please select a higher number', 'formidable' );
59 59
 				} elseif ( $value > $maxnum ) {
60
-					$errors[ 'field' . $args['id'] ] = __( 'Please select a lower number', 'formidable' );
60
+					$errors['field' . $args['id']] = __( 'Please select a lower number', 'formidable' );
61 61
 				}
62 62
 			}
63 63
 		}
Please login to merge, or discard this patch.
classes/models/FrmMigrate.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -326,7 +326,7 @@  discard block
 block discarded – undo
326 326
 				continue;
327 327
 			}
328 328
 
329
-			$this->maybe_convert_migrated_size( $widgets[ $k ]['size'] );
329
+			$this->maybe_convert_migrated_size( $widgets[$k]['size'] );
330 330
 		}
331 331
 		update_option( 'widget_frm_show_form', $widgets );
332 332
 	}
@@ -422,7 +422,7 @@  discard block
 block discarded – undo
422 422
 			if ( ! is_array( $widget ) || ! isset( $widget['size'] ) ) {
423 423
 				continue;
424 424
 			}
425
-			$this->convert_character_to_px( $widgets[ $k ]['size'] );
425
+			$this->convert_character_to_px( $widgets[$k]['size'] );
426 426
 		}
427 427
 		update_option( 'widget_frm_show_form', $widgets );
428 428
 	}
Please login to merge, or discard this patch.
classes/models/FrmInstallerSkin.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
 	 */
22 22
 	public function set_upgrader( &$upgrader ) {
23 23
 		if ( is_object( $upgrader ) ) {
24
-			$this->upgrader =& $upgrader;
24
+			$this->upgrader = & $upgrader;
25 25
 		}
26 26
 	}
27 27
 
Please login to merge, or discard this patch.
deprecated/FrmDeprecated.php 3 patches
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -10,6 +10,8 @@  discard block
 block discarded – undo
10 10
 
11 11
 	/**
12 12
 	 * @deprecated 2.3
13
+	 * @param string $function
14
+	 * @param string $version
13 15
 	 */
14 16
 	public static function deprecated( $function, $version ) {
15 17
 		_deprecated_function( $function, $version );
@@ -68,6 +70,7 @@  discard block
 block discarded – undo
68 70
 
69 71
 	/**
70 72
 	 * @deprecated 3.04.03
73
+	 * @param string $url
71 74
 	 */
72 75
 	private static function send_api_request( $url, $transient = array() ) {
73 76
 		$data = get_transient( $transient['name'] );
@@ -318,6 +321,7 @@  discard block
 block discarded – undo
318 321
 
319 322
 	/**
320 323
 	 * @deprecated 3.0
324
+	 * @param string $field
321 325
 	 */
322 326
 	private static function edit_in_place_value( $field ) {
323 327
 		_deprecated_function( __FUNCTION__, '3.0' );
@@ -714,6 +718,7 @@  discard block
 block discarded – undo
714 718
 
715 719
 	/**
716 720
 	 * @deprecated 3.02.03
721
+	 * @return string
717 722
 	 */
718 723
 	public static function get_form_for_page() {
719 724
 		_deprecated_function( __FUNCTION__, '3.02.03' );
Please login to merge, or discard this patch.
Indentation   +48 added lines, -48 removed lines patch added patch discarded remove patch
@@ -624,8 +624,8 @@  discard block
 block discarded – undo
624 624
 	 */
625 625
 	public static function get_shortcode_tag( $shortcodes, $short_key, $args ) {
626 626
 		_deprecated_function( __FUNCTION__, '3.0', 'FrmShortcodeHelper::get_shortcode_tag' );
627
-        return FrmShortcodeHelper::get_shortcode_tag( $shortcodes, $short_key, $args );
628
-    }
627
+		return FrmShortcodeHelper::get_shortcode_tag( $shortcodes, $short_key, $args );
628
+	}
629 629
 
630 630
 	/**
631 631
 	 * @deprecated 3.01
@@ -638,52 +638,52 @@  discard block
 block discarded – undo
638 638
 	/**
639 639
 	 * @deprecated 3.02.03
640 640
 	 */
641
-    public static function jquery_themes() {
641
+	public static function jquery_themes() {
642 642
 		_deprecated_function( __FUNCTION__, '3.02.03', 'FrmProStylesController::jquery_themes' );
643 643
 
644
-        $themes = array(
645
-            'ui-lightness'  => 'UI Lightness',
646
-            'ui-darkness'   => 'UI Darkness',
647
-            'smoothness'    => 'Smoothness',
648
-            'start'         => 'Start',
649
-            'redmond'       => 'Redmond',
650
-            'sunny'         => 'Sunny',
651
-            'overcast'      => 'Overcast',
652
-            'le-frog'       => 'Le Frog',
653
-            'flick'         => 'Flick',
644
+		$themes = array(
645
+			'ui-lightness'  => 'UI Lightness',
646
+			'ui-darkness'   => 'UI Darkness',
647
+			'smoothness'    => 'Smoothness',
648
+			'start'         => 'Start',
649
+			'redmond'       => 'Redmond',
650
+			'sunny'         => 'Sunny',
651
+			'overcast'      => 'Overcast',
652
+			'le-frog'       => 'Le Frog',
653
+			'flick'         => 'Flick',
654 654
 			'pepper-grinder' => 'Pepper Grinder',
655
-            'eggplant'      => 'Eggplant',
656
-            'dark-hive'     => 'Dark Hive',
657
-            'cupertino'     => 'Cupertino',
658
-            'south-street'  => 'South Street',
659
-            'blitzer'       => 'Blitzer',
660
-            'humanity'      => 'Humanity',
661
-            'hot-sneaks'    => 'Hot Sneaks',
662
-            'excite-bike'   => 'Excite Bike',
663
-            'vader'         => 'Vader',
664
-            'dot-luv'       => 'Dot Luv',
665
-            'mint-choc'     => 'Mint Choc',
666
-            'black-tie'     => 'Black Tie',
667
-            'trontastic'    => 'Trontastic',
668
-            'swanky-purse'  => 'Swanky Purse',
669
-        );
655
+			'eggplant'      => 'Eggplant',
656
+			'dark-hive'     => 'Dark Hive',
657
+			'cupertino'     => 'Cupertino',
658
+			'south-street'  => 'South Street',
659
+			'blitzer'       => 'Blitzer',
660
+			'humanity'      => 'Humanity',
661
+			'hot-sneaks'    => 'Hot Sneaks',
662
+			'excite-bike'   => 'Excite Bike',
663
+			'vader'         => 'Vader',
664
+			'dot-luv'       => 'Dot Luv',
665
+			'mint-choc'     => 'Mint Choc',
666
+			'black-tie'     => 'Black Tie',
667
+			'trontastic'    => 'Trontastic',
668
+			'swanky-purse'  => 'Swanky Purse',
669
+		);
670 670
 
671 671
 		$themes = apply_filters( 'frm_jquery_themes', $themes );
672
-        return $themes;
673
-    }
672
+		return $themes;
673
+	}
674 674
 
675 675
 	/**
676 676
 	 * @deprecated 3.02.03
677 677
 	 */
678
-    public static function enqueue_jquery_css() {
678
+	public static function enqueue_jquery_css() {
679 679
 		_deprecated_function( __FUNCTION__, '3.02.03', 'FrmProStylesController::enqueue_jquery_css' );
680 680
 
681 681
 		$form = self::get_form_for_page();
682 682
 		$theme_css = FrmStylesController::get_style_val( 'theme_css', $form );
683
-        if ( $theme_css != -1 ) {
683
+		if ( $theme_css != -1 ) {
684 684
 			wp_enqueue_style( 'jquery-theme', self::jquery_css_url( $theme_css ), array(), FrmAppHelper::plugin_version() );
685
-        }
686
-    }
685
+		}
686
+	}
687 687
 
688 688
 	/**
689 689
 	 * @deprecated 3.02.03
@@ -691,26 +691,26 @@  discard block
 block discarded – undo
691 691
 	public static function jquery_css_url( $theme_css ) {
692 692
 		_deprecated_function( __FUNCTION__, '3.02.03', 'FrmProStylesController::jquery_css_url' );
693 693
 
694
-        if ( $theme_css == -1 ) {
695
-            return;
696
-        }
694
+		if ( $theme_css == -1 ) {
695
+			return;
696
+		}
697 697
 
698
-        if ( ! $theme_css || $theme_css == '' || $theme_css == 'ui-lightness' ) {
699
-            $css_file = FrmAppHelper::plugin_url() . '/css/ui-lightness/jquery-ui.css';
698
+		if ( ! $theme_css || $theme_css == '' || $theme_css == 'ui-lightness' ) {
699
+			$css_file = FrmAppHelper::plugin_url() . '/css/ui-lightness/jquery-ui.css';
700 700
 		} elseif ( preg_match( '/^http.?:\/\/.*\..*$/', $theme_css ) ) {
701
-            $css_file = $theme_css;
702
-        } else {
703
-            $uploads = FrmStylesHelper::get_upload_base();
701
+			$css_file = $theme_css;
702
+		} else {
703
+			$uploads = FrmStylesHelper::get_upload_base();
704 704
 			$file_path = '/formidable/css/' . $theme_css . '/jquery-ui.css';
705 705
 			if ( file_exists( $uploads['basedir'] . $file_path ) ) {
706
-                $css_file = $uploads['baseurl'] . $file_path;
707
-            } else {
706
+				$css_file = $uploads['baseurl'] . $file_path;
707
+			} else {
708 708
 				$css_file = FrmAppHelper::jquery_ui_base_url() . '/themes/' . $theme_css . '/jquery-ui.min.css';
709
-            }
710
-        }
709
+			}
710
+		}
711 711
 
712
-        return $css_file;
713
-    }
712
+		return $css_file;
713
+	}
714 714
 
715 715
 	/**
716 716
 	 * @deprecated 3.02.03
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
 		FrmAppHelper::permission_check( 'frm_edit_forms' );
25 25
 
26 26
 		$action = isset( $_REQUEST['frm_action'] ) ? 'frm_action' : 'action';
27
-		$action = empty( $values ) ? FrmAppHelper::get_param( $action, '', 'get', 'sanitize_title' ) : $values[ $action ];
27
+		$action = empty( $values ) ? FrmAppHelper::get_param( $action, '', 'get', 'sanitize_title' ) : $values[$action];
28 28
 
29 29
 		if ( $action === 'create' ) {
30 30
 			self::create( $values );
@@ -458,8 +458,8 @@  discard block
 block discarded – undo
458 458
 		$path = untrailingslashit( trim( $path ) );
459 459
 		$templates = glob( $path . '/*.php' );
460 460
 
461
-		for ( $i = count( $templates ) - 1; $i >= 0; $i-- ) {
462
-			$filename = str_replace( '.php', '', str_replace( $path . '/', '', $templates[ $i ] ) );
461
+		for ( $i = count( $templates ) - 1; $i >= 0; $i -- ) {
462
+			$filename = str_replace( '.php', '', str_replace( $path . '/', '', $templates[$i] ) );
463 463
 			$template_query = array( 'form_key' => $filename );
464 464
 			if ( $template ) {
465 465
 				$template_query['is_template'] = 1;
@@ -474,7 +474,7 @@  discard block
 block discarded – undo
474 474
 			$values['is_template'] = $template;
475 475
 			$values['status'] = 'published';
476 476
 
477
-			include( $templates[ $i ] );
477
+			include( $templates[$i] );
478 478
 
479 479
 			//get updated form
480 480
 			if ( isset( $form ) && ! empty( $form ) ) {
Please login to merge, or discard this patch.
deprecated/FrmEDD_SL_Plugin_Updater.php 3 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
 	 * @uses api_request()
74 74
 	 *
75 75
 	 * @param array   $_transient_data Update array build by WordPress.
76
-	 * @return array Modified update array with custom plugin data.
76
+	 * @return stdClass Modified update array with custom plugin data.
77 77
 	 */
78 78
 	public function check_update( $_transient_data ) {
79 79
 
@@ -219,7 +219,7 @@  discard block
 block discarded – undo
219 219
 	 *
220 220
 	 * @param string  $_action The requested action.
221 221
 	 * @param array   $_data   Parameters for the API action.
222
-	 * @return false|object
222
+	 * @return string
223 223
 	 */
224 224
 	private function api_request( $_action, $_data ) {
225 225
 
Please login to merge, or discard this patch.
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -297,11 +297,13 @@
 block discarded – undo
297 297
 
298 298
 		global $frm_edd_plugin_data;
299 299
 
300
-		if ( empty( $_REQUEST['edd_sl_action'] ) || 'view_plugin_changelog' !== $_REQUEST['edd_sl_action'] ) { // WPCS: CSRF ok.
300
+		if ( empty( $_REQUEST['edd_sl_action'] ) || 'view_plugin_changelog' !== $_REQUEST['edd_sl_action'] ) {
301
+// WPCS: CSRF ok.
301 302
 			return;
302 303
 		}
303 304
 
304
-		if ( empty( $_REQUEST['plugin'] ) || empty( $_REQUEST['slug'] ) ) { // WPCS: CSRF ok.
305
+		if ( empty( $_REQUEST['plugin'] ) || empty( $_REQUEST['slug'] ) ) {
306
+// WPCS: CSRF ok.
305 307
 			return;
306 308
 		}
307 309
 
Please login to merge, or discard this patch.
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
 		$this->beta        = ! empty( $this->api_data['beta'] ) ? true : false;
45 45
 		$this->cache_key   = md5( serialize( $this->slug . $this->version . $this->api_data['license'] . $this->beta ) );
46 46
 
47
-		$frm_edd_plugin_data[ $this->slug ] = $this->api_data;
47
+		$frm_edd_plugin_data[$this->slug] = $this->api_data;
48 48
 
49 49
 		/**
50 50
 		 * Fires after the $frm_edd_plugin_data is setup.
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
 			$_transient_data = new stdClass();
94 94
 		}
95 95
 
96
-		if ( ! empty( $_transient_data->response ) && ! empty( $_transient_data->response[ $this->name ] ) && false === $this->wp_override ) {
96
+		if ( ! empty( $_transient_data->response ) && ! empty( $_transient_data->response[$this->name] ) && false === $this->wp_override ) {
97 97
 			return $_transient_data;
98 98
 		}
99 99
 
@@ -120,12 +120,12 @@  discard block
 block discarded – undo
120 120
 					$version_info->plugin = $this->name;
121 121
 				}
122 122
 
123
-				$_transient_data->response[ $this->name ] = $version_info;
123
+				$_transient_data->response[$this->name] = $version_info;
124 124
 
125 125
 			}
126 126
 
127 127
 			$_transient_data->last_checked           = time();
128
-			$_transient_data->checked[ $this->name ] = $this->version;
128
+			$_transient_data->checked[$this->name] = $this->version;
129 129
 
130 130
 		}
131 131
 
@@ -189,7 +189,7 @@  discard block
 block discarded – undo
189 189
 		if ( isset( $_data->sections ) && ! is_array( $_data->sections ) ) {
190 190
 			$new_sections = array();
191 191
 			foreach ( $_data->sections as $key => $value ) {
192
-				$new_sections[ $key ] = $value;
192
+				$new_sections[$key] = $value;
193 193
 			}
194 194
 
195 195
 			$_data->sections = $new_sections;
@@ -199,7 +199,7 @@  discard block
 block discarded – undo
199 199
 		if ( isset( $_data->banners ) && ! is_array( $_data->banners ) ) {
200 200
 			$new_banners = array();
201 201
 			foreach ( $_data->banners as $key => $value ) {
202
-				$new_banners[ $key ] = $value;
202
+				$new_banners[$key] = $value;
203 203
 			}
204 204
 
205 205
 			$_data->banners = $new_banners;
@@ -316,7 +316,7 @@  discard block
 block discarded – undo
316 316
 		}
317 317
 
318 318
 		$slug         = sanitize_text_field( $_REQUEST['slug'] ); // WPCS: CSRF ok.
319
-		$data         = $frm_edd_plugin_data[ $slug ];
319
+		$data         = $frm_edd_plugin_data[$slug];
320 320
 		$beta         = ! empty( $data['beta'] ) ? true : false;
321 321
 		$cache_key    = md5( 'edd_plugin_' . sanitize_key( $_REQUEST['plugin'] ) . '_' . $beta . '_version_info' ); // WPCS: CSRF ok.
322 322
 		$version_info = $this->get_cached_version_info( $cache_key );
Please login to merge, or discard this patch.
deprecated/FrmEntryFormat.php 2 patches
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -151,6 +151,7 @@
 block discarded – undo
151 151
 
152 152
 	/**
153 153
 	 * @deprecated 2.04
154
+	 * @param string $val
154 155
 	 */
155 156
 	private static function get_field_value( $atts, &$val ) {
156 157
 		_deprecated_function( __FUNCTION__, '2.04', 'instance of FrmEntryValues or FrmProEntryValues' );
Please login to merge, or discard this patch.
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -98,15 +98,15 @@  discard block
 block discarded – undo
98 98
 		self::prepare_field_output( $atts, $val );
99 99
 
100 100
 		if ( $atts['format'] != 'text' ) {
101
-			$values[ $f->field_key ] = $val;
101
+			$values[$f->field_key] = $val;
102 102
 			if ( $atts['entry'] && $f->type != 'textarea' ) {
103
-				$prev_val = maybe_unserialize( $atts['entry']->metas[ $f->id ] );
103
+				$prev_val = maybe_unserialize( $atts['entry']->metas[$f->id] );
104 104
 				if ( $prev_val != $val ) {
105
-					$values[ $f->field_key . '-value' ] = $prev_val;
105
+					$values[$f->field_key . '-value'] = $prev_val;
106 106
 				}
107 107
 			}
108 108
 		} else {
109
-			$values[ $f->id ] = array(
109
+			$values[$f->id] = array(
110 110
 				'label' => $f->name,
111 111
 				'val'   => $val,
112 112
 				'type'  => $f->type,
@@ -120,9 +120,9 @@  discard block
 block discarded – undo
120 120
 	private static function fill_missing_fields( $atts, &$values ) {
121 121
 		_deprecated_function( __FUNCTION__, '2.04', 'instance of FrmEntryValues or FrmProEntryValues' );
122 122
 
123
-		if ( $atts['entry'] && ! isset( $atts['entry']->metas[ $atts['field']->id ] ) ) {
123
+		if ( $atts['entry'] && ! isset( $atts['entry']->metas[$atts['field']->id] ) ) {
124 124
 			// In case include_blank is set
125
-			$atts['entry']->metas[ $atts['field']->id ] = '';
125
+			$atts['entry']->metas[$atts['field']->id] = '';
126 126
 			$atts['entry'] = apply_filters( 'frm_prepare_entry_content', $atts['entry'], array( 'field' => $atts['field'] ) );
127 127
 			self::fill_values_from_entry( $atts, $values );
128 128
 		}
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
 			'type'  => $f->type,
151 151
 		);
152 152
 
153
-		$values[ $f->id ] = apply_filters( 'frm_field_shortcodes_for_default_html_email', $field_shortcodes, $f );
153
+		$values[$f->id] = apply_filters( 'frm_field_shortcodes_for_default_html_email', $field_shortcodes, $f );
154 154
 	}
155 155
 
156 156
 	/**
@@ -161,7 +161,7 @@  discard block
 block discarded – undo
161 161
 
162 162
 		$f = $atts['field'];
163 163
 		if ( $atts['entry'] ) {
164
-			$prev_val = maybe_unserialize( $atts['entry']->metas[ $f->id ] );
164
+			$prev_val = maybe_unserialize( $atts['entry']->metas[$f->id] );
165 165
 			$meta = array(
166 166
 				'item_id'    => $atts['id'],
167 167
 				'field_id'   => $f->id,
Please login to merge, or discard this patch.
deprecated/FrmPointers.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
 	/**
14 14
 	 * Get the singleton instance of this class
15 15
 	 *
16
-	 * @return object
16
+	 * @return FrmPointers
17 17
 	 */
18 18
 	public static function get_instance() {
19 19
 		_deprecated_function( __FUNCTION__, '3.01.03' );
Please login to merge, or discard this patch.
classes/models/FrmAddon.php 3 patches
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -306,7 +306,8 @@  discard block
 block discarded – undo
306 306
 
307 307
 		if ( isset( $version_info->new_version ) && ! empty( $version_info->new_version ) ) {
308 308
 			$this->clear_old_plugin_version( $version_info );
309
-			if ( $version_info === false ) { // was cleared with timeout
309
+			if ( $version_info === false ) {
310
+// was cleared with timeout
310 311
 				$transient = false;
311 312
 			} else {
312 313
 				$this->maybe_use_beta_url( $version_info );
@@ -393,7 +394,8 @@  discard block
 block discarded – undo
393 394
 	}
394 395
 
395 396
 	private function is_license_revoked() {
396
-		if ( empty( $this->license ) || empty( $this->plugin_slug ) || isset( $_POST['license'] ) ) { // WPCS: CSRF ok.
397
+		if ( empty( $this->license ) || empty( $this->plugin_slug ) || isset( $_POST['license'] ) ) {
398
+// WPCS: CSRF ok.
397 399
 			return;
398 400
 		}
399 401
 
Please login to merge, or discard this patch.
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -234,6 +234,9 @@  discard block
 block discarded – undo
234 234
 		$this->delete_cache();
235 235
 	}
236 236
 
237
+	/**
238
+	 * @param string|false $is_active
239
+	 */
237 240
 	public function set_active( $is_active ) {
238 241
 		update_option( $this->option_name . 'active', $is_active );
239 242
 		$this->delete_cache();
@@ -352,6 +355,7 @@  discard block
 block discarded – undo
352 355
 	 * Get the API info for this plugin
353 356
 	 *
354 357
 	 * @since 3.04.03
358
+	 * @param string $license
355 359
 	 */
356 360
 	protected function get_api_info( $license ) {
357 361
 		$api   = new FrmFormApi( $license );
@@ -582,6 +586,9 @@  discard block
 block discarded – undo
582 586
 		wp_die();
583 587
 	}
584 588
 
589
+	/**
590
+	 * @param string $action
591
+	 */
585 592
 	public function send_mothership_request( $action ) {
586 593
 		$api_params = array(
587 594
 			'edd_action' => $action,
Please login to merge, or discard this patch.
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
 	}
42 42
 
43 43
 	public function insert_installed_addon( $plugins ) {
44
-		$plugins[ $this->plugin_slug ] = $this;
44
+		$plugins[$this->plugin_slug] = $this;
45 45
 
46 46
 		return $plugins;
47 47
 	}
@@ -49,8 +49,8 @@  discard block
 block discarded – undo
49 49
 	public static function get_addon( $plugin_slug ) {
50 50
 		$plugins = apply_filters( 'frm_installed_addons', array() );
51 51
 		$plugin  = false;
52
-		if ( isset( $plugins[ $plugin_slug ] ) ) {
53
-			$plugin = $plugins[ $plugin_slug ];
52
+		if ( isset( $plugins[$plugin_slug] ) ) {
53
+			$plugin = $plugins[$plugin_slug];
54 54
 		}
55 55
 
56 56
 		return $plugin;
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
 		} else {
110 110
 			$api     = new FrmFormApi( $this->license );
111 111
 			$plugins = $api->get_api_info();
112
-			$_data   = $plugins[ $item_id ];
112
+			$_data   = $plugins[$item_id];
113 113
 		}
114 114
 
115 115
 		$_data['sections'] = array(
@@ -301,19 +301,19 @@  discard block
 block discarded – undo
301 301
 
302 302
 		if ( $this->is_current_version( $transient ) ) {
303 303
 			//make sure it doesn't show there is an update if plugin is up-to-date
304
-			if ( isset( $transient->response[ $this->plugin_folder ] ) ) {
305
-				unset( $transient->response[ $this->plugin_folder ] );
304
+			if ( isset( $transient->response[$this->plugin_folder] ) ) {
305
+				unset( $transient->response[$this->plugin_folder] );
306 306
 			}
307
-		} elseif ( isset( $transient->response ) && isset( $transient->response[ $this->plugin_folder ] ) ) {
308
-			$this->prepare_update_details( $transient->response[ $this->plugin_folder ] );
307
+		} elseif ( isset( $transient->response ) && isset( $transient->response[$this->plugin_folder] ) ) {
308
+			$this->prepare_update_details( $transient->response[$this->plugin_folder] );
309 309
 
310 310
 			// if the transient has expired, clear the update and trigger it again
311
-			if ( $transient->response[ $this->plugin_folder ] === false ) {
311
+			if ( $transient->response[$this->plugin_folder] === false ) {
312 312
 				if ( ! $this->has_been_cleared() ) {
313 313
 					$this->cleared_plugins();
314 314
 					$this->manually_queue_update();
315 315
 				}
316
-				unset( $transient->response[ $this->plugin_folder ] );
316
+				unset( $transient->response[$this->plugin_folder] );
317 317
 			}
318 318
 		}
319 319
 
@@ -401,7 +401,7 @@  discard block
 block discarded – undo
401 401
 	}
402 402
 
403 403
 	private function is_current_version( $transient ) {
404
-		if ( empty( $transient->checked ) || ! isset( $transient->checked[ $this->plugin_folder ] ) ) {
404
+		if ( empty( $transient->checked ) || ! isset( $transient->checked[$this->plugin_folder] ) ) {
405 405
 			return false;
406 406
 		}
407 407
 
@@ -410,7 +410,7 @@  discard block
 block discarded – undo
410 410
 			return true;
411 411
 		}
412 412
 
413
-		return isset( $transient->response ) && isset( $transient->response[ $this->plugin_folder ] ) && $transient->checked[ $this->plugin_folder ] === $transient->response[ $this->plugin_folder ]->new_version;
413
+		return isset( $transient->response ) && isset( $transient->response[$this->plugin_folder] ) && $transient->checked[$this->plugin_folder] === $transient->response[$this->plugin_folder]->new_version;
414 414
 	}
415 415
 
416 416
 	private function has_been_cleared() {
@@ -491,8 +491,8 @@  discard block
 block discarded – undo
491 491
 			$response['message'] = $response['status'];
492 492
 		} else {
493 493
 			$messages = $this->get_messages();
494
-			if ( is_string( $response['status'] ) && isset( $messages[ $response['status'] ] ) ) {
495
-				$response['message'] = $messages[ $response['status'] ];
494
+			if ( is_string( $response['status'] ) && isset( $messages[$response['status']] ) ) {
495
+				$response['message'] = $messages[$response['status']];
496 496
 			} else {
497 497
 				$response['message'] = FrmAppHelper::kses( $response['status'], array( 'a' ) );
498 498
 			}
Please login to merge, or discard this patch.
classes/controllers/FrmAppController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -235,7 +235,7 @@
 block discarded – undo
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
 		}
Please login to merge, or discard this patch.