Completed
Pull Request — master (#1356)
by Stephanie
01:05
created
classes/models/FrmEntryFormatter.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -164,8 +164,8 @@  discard block
 block discarded – undo
164 164
 
165 165
 		$conditionally_add = array( 'include_fields', 'fields', 'exclude_fields', 'entry' );
166 166
 		foreach ( $conditionally_add as $index ) {
167
-			if ( isset( $atts[ $index ] ) ) {
168
-				$entry_atts[ $index ] = $atts[ $index ];
167
+			if ( isset( $atts[$index] ) ) {
168
+				$entry_atts[$index] = $atts[$index];
169 169
 			}
170 170
 		}
171 171
 
@@ -351,8 +351,8 @@  discard block
 block discarded – undo
351 351
 
352 352
 		$unset = array( 'id', 'form_id', 'format' );
353 353
 		foreach ( $unset as $param ) {
354
-			if ( isset( $atts[ $param ] ) ) {
355
-				unset( $atts[ $param ] );
354
+			if ( isset( $atts[$param] ) ) {
355
+				unset( $atts[$param] );
356 356
 			}
357 357
 		}
358 358
 
@@ -523,11 +523,11 @@  discard block
 block discarded – undo
523 523
 
524 524
 			$displayed_value = $this->prepare_display_value_for_array( $field_value->get_displayed_value() );
525 525
 
526
-			$output[ $this->get_key_or_id( $field_value ) ] = $displayed_value;
526
+			$output[$this->get_key_or_id( $field_value )] = $displayed_value;
527 527
 
528 528
 			$has_separate_value = (bool) $field_value->get_field_option( 'separate_value' );
529 529
 			if ( $has_separate_value || $displayed_value !== $field_value->get_saved_value() ) {
530
-				$output[ $this->get_key_or_id( $field_value ) . '-value' ] = $field_value->get_saved_value();
530
+				$output[$this->get_key_or_id( $field_value ) . '-value'] = $field_value->get_saved_value();
531 531
 			}
532 532
 		}
533 533
 	}
@@ -917,7 +917,7 @@  discard block
 block discarded – undo
917 917
 
918 918
 			if ( is_array( $value ) ) {
919 919
 				foreach ( $value as $key => $single_value ) {
920
-					$value[ $key ] = $this->strip_html( $single_value );
920
+					$value[$key] = $this->strip_html( $single_value );
921 921
 				}
922 922
 			} elseif ( $this->is_plain_text && ! is_array( $value ) ) {
923 923
 				if ( strpos( $value, '<img' ) !== false ) {
Please login to merge, or discard this patch.
classes/controllers/FrmFormTemplatesController.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -330,11 +330,11 @@  discard block
 block discarded – undo
330 330
 
331 331
 		// Perform add or remove operation.
332 332
 		if ( 'add' === $operation ) {
333
-			self::$favorite_templates[ $key ][] = $template_id;
333
+			self::$favorite_templates[$key][] = $template_id;
334 334
 		} elseif ( 'remove' === $operation ) {
335
-			$position = array_search( $template_id, self::$favorite_templates[ $key ], true );
335
+			$position = array_search( $template_id, self::$favorite_templates[$key], true );
336 336
 			if ( $position !== false ) {
337
-				unset( self::$favorite_templates[ $key ][ $position ] );
337
+				unset( self::$favorite_templates[$key][$position] );
338 338
 			}
339 339
 		}
340 340
 
@@ -463,7 +463,7 @@  discard block
 block discarded – undo
463 463
 		foreach ( self::$templates as $key => &$template ) {
464 464
 			// Skip the template if the categories are not set.
465 465
 			if ( ! isset( $template['categories'] ) ) {
466
-				unset( self::$templates[ $key ] );
466
+				unset( self::$templates[$key] );
467 467
 				continue;
468 468
 			}
469 469
 
@@ -477,14 +477,14 @@  discard block
 block discarded – undo
477 477
 				// Add the slug to the new array.
478 478
 				$template['category_slugs'][] = $category_slug;
479 479
 
480
-				if ( ! isset( self::$categories[ $category_slug ] ) ) {
481
-					self::$categories[ $category_slug ] = array(
480
+				if ( ! isset( self::$categories[$category_slug] ) ) {
481
+					self::$categories[$category_slug] = array(
482 482
 						'name'  => $category,
483 483
 						'count' => 0,
484 484
 					);
485 485
 				}
486 486
 
487
-				self::$categories[ $category_slug ]['count']++;
487
+				self::$categories[$category_slug]['count'] ++;
488 488
 			}
489 489
 
490 490
 			// Mark the template as favorite if it's in the favorite templates list.
@@ -499,7 +499,7 @@  discard block
 block discarded – undo
499 499
 		$redundant_cats = array_merge( array( 'PayPal', 'Stripe', 'Twilio' ), FrmFormsHelper::ignore_template_categories() );
500 500
 		foreach ( $redundant_cats as $redundant_cat ) {
501 501
 			$category_slug = sanitize_title( $redundant_cat );
502
-			unset( self::$categories[ $category_slug ] );
502
+			unset( self::$categories[$category_slug] );
503 503
 		}
504 504
 
505 505
 		// Sort the categories by keys alphabetically.
@@ -524,7 +524,7 @@  discard block
 block discarded – undo
524 524
 				'count' => 0,
525 525
 			);
526 526
 		}
527
-		$special_categories['all-templates']  = array(
527
+		$special_categories['all-templates'] = array(
528 528
 			'name'  => __( 'All Templates', 'formidable' ),
529 529
 			'count' => self::get_template_count(),
530 530
 		);
@@ -552,9 +552,9 @@  discard block
 block discarded – undo
552 552
 	 */
553 553
 	private static function assign_featured_templates() {
554 554
 		foreach ( self::FEATURED_TEMPLATES_KEYS as $key ) {
555
-			if ( isset( self::$templates[ $key ] ) ) {
556
-				self::$templates[ $key ]['is_featured'] = true;
557
-				self::$featured_templates[]             = self::$templates[ $key ];
555
+			if ( isset( self::$templates[$key] ) ) {
556
+				self::$templates[$key]['is_featured'] = true;
557
+				self::$featured_templates[]             = self::$templates[$key];
558 558
 			}
559 559
 		}
560 560
 	}
Please login to merge, or discard this patch.