Completed
Pull Request — develop (#1492)
by Zack
15:57
created
includes/admin/metaboxes/views/gravityview-content.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,9 +19,9 @@
 block discarded – undo
19 19
 	 * Loop through the array of registered metaboxes
20 20
 	 * @var GravityView_Metabox_Tab $metabox
21 21
 	 */
22
-	foreach( $metaboxes as $metabox ) {
22
+	foreach ( $metaboxes as $metabox ) {
23 23
 
24
-		echo '<div id="'.esc_attr( $metabox->id ).'">';
24
+		echo '<div id="' . esc_attr( $metabox->id ) . '">';
25 25
 
26 26
 		$metabox->render( $post );
27 27
 
Please login to merge, or discard this patch.
includes/admin/field-types/type_checkbox.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
 
16 16
 	function render_setting( $override_input = NULL ) {
17 17
 
18
-		if( $this->get_field_left_label() ) { ?>
18
+		if ( $this->get_field_left_label() ) { ?>
19 19
 
20 20
 			<td scope="row">
21 21
 				<label for="<?php echo $this->get_field_id(); ?>">
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
 	}
43 43
 
44 44
 	function render_input( $override_input = NULL ) {
45
-		if( isset( $override_input ) ) {
45
+		if ( isset( $override_input ) ) {
46 46
 			echo $override_input;
47 47
 			return;
48 48
 		}
Please login to merge, or discard this patch.
includes/admin/field-types/type_select.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
 		?>
9 9
 		<label for="<?php echo $this->get_field_id(); ?>" class="<?php echo $this->get_label_class(); ?>"><?php
10 10
 
11
-			echo '<span class="gv-label">'.$this->get_field_label().'</span>';
11
+			echo '<span class="gv-label">' . $this->get_field_label() . '</span>';
12 12
 
13 13
 			echo $this->get_tooltip() . $this->get_field_desc();
14 14
 
@@ -20,13 +20,13 @@  discard block
 block discarded – undo
20 20
 	}
21 21
 
22 22
 	function render_input( $override_input = null ) {
23
-		if( isset( $override_input ) ) {
23
+		if ( isset( $override_input ) ) {
24 24
 			echo $override_input;
25 25
 			return;
26 26
 		}
27 27
 		?>
28 28
 		<select name="<?php echo esc_attr( $this->name ); ?>" id="<?php echo $this->get_field_id(); ?>">
29
-			<?php foreach( $this->field['options'] as $value => $label ) : ?>
29
+			<?php foreach ( $this->field[ 'options' ] as $value => $label ) : ?>
30 30
 				<option value="<?php echo esc_attr( $value ); ?>" <?php selected( $value, $this->value, true ); ?>><?php echo esc_html( $label ); ?></option>
31 31
 			<?php endforeach; ?>
32 32
 		</select>
Please login to merge, or discard this patch.
includes/admin/entry-list.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
 		add_action( 'gform_entries_first_column_actions', array( $this, 'add_edit_link' ), 10, 5 );
12 12
 
13 13
 		// Add script to enable edit link
14
-		add_action( 'admin_head-forms_page_gf_entries', array( $this, 'add_edit_script') );
14
+		add_action( 'admin_head-forms_page_gf_entries', array( $this, 'add_edit_script' ) );
15 15
 
16 16
 	}
17 17
 
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
 	public function add_edit_script() {
27 27
 
28 28
 		// We're on a single entry page, or at least not the Entries page.
29
-		if( !empty( $_GET['view'] ) && $_GET['view'] !== 'entries' ) { return; }
29
+		if ( ! empty( $_GET[ 'view' ] ) && $_GET[ 'view' ] !== 'entries' ) { return; }
30 30
 	?>
31 31
 		<script>
32 32
 		jQuery( document ).ready( function( $ ) {
@@ -56,14 +56,14 @@  discard block
 block discarded – undo
56 56
 			'page' => 'gf_entries',
57 57
 			'view' => 'entry',
58 58
 			'id'	=> (int)$form_id,
59
-			'lid'	=>	(int)$lead["id"],
59
+			'lid'	=>	(int)$lead[ "id" ],
60 60
 			'screen_mode'	=> 'edit',
61 61
 		);
62 62
 		?>
63 63
 
64 64
 		<span class="edit edit_entry">
65 65
 			|
66
-		    <a title="<?php esc_attr_e( 'Edit this entry', 'gravityview'); ?>" href="<?php echo esc_url( add_query_arg( $params, admin_url( 'admin.php?page='.$query_string ) ) ); ?>"><?php esc_html_e( 'Edit', 'gravityview' ); ?></a>
66
+		    <a title="<?php esc_attr_e( 'Edit this entry', 'gravityview' ); ?>" href="<?php echo esc_url( add_query_arg( $params, admin_url( 'admin.php?page=' . $query_string ) ) ); ?>"><?php esc_html_e( 'Edit', 'gravityview' ); ?></a>
67 67
 		</span>
68 68
 		<?php
69 69
 	}
Please login to merge, or discard this patch.
includes/extensions/edit-entry/partials/inline-javascript.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -6,17 +6,17 @@
 block discarded – undo
6 6
 ?><script type="text/javascript">
7 7
 
8 8
 	function DeleteFile(leadId, fieldId, deleteButton){
9
-		if(confirm('<?php echo esc_js( __("Would you like to permanently delete this file? 'Cancel' to stop. 'OK' to delete", 'gravityview') ); ?>')){
9
+		if(confirm('<?php echo esc_js( __( "Would you like to permanently delete this file? 'Cancel' to stop. 'OK' to delete", 'gravityview' ) ); ?>')){
10 10
 			var fileIndex = jQuery(deleteButton).parent().index();
11
-			var mysack = new sack("<?php echo admin_url("admin-ajax.php")?>");
11
+			var mysack = new sack("<?php echo admin_url( "admin-ajax.php" )?>");
12 12
 			mysack.execute = 1;
13 13
 			mysack.method = 'POST';
14 14
 			mysack.setVar( "action", "rg_delete_file" );
15
-			mysack.setVar( "rg_delete_file", "<?php echo wp_create_nonce("rg_delete_file") ?>" );
15
+			mysack.setVar( "rg_delete_file", "<?php echo wp_create_nonce( "rg_delete_file" ) ?>" );
16 16
 			mysack.setVar( "lead_id", leadId );
17 17
 			mysack.setVar( "field_id", fieldId );
18 18
 			mysack.setVar( "file_index", fileIndex );
19
-			mysack.onError = function() { alert('<?php echo esc_js(__('Ajax error while deleting field.', 'gravityview')) ?>' )};
19
+			mysack.onError = function() { alert('<?php echo esc_js( __( 'Ajax error while deleting field.', 'gravityview' ) ) ?>' )};
20 20
 			mysack.runAJAX();
21 21
 
22 22
 			return true;
Please login to merge, or discard this patch.
includes/extensions/edit-entry/fields/edit_link.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -7,13 +7,13 @@
 block discarded – undo
7 7
 extract( $gravityview_view->getCurrentField() );
8 8
 
9 9
 // Only show the link to logged-in users.
10
-if( !GravityView_Edit_Entry::check_user_cap_edit_entry( $entry ) ) {
10
+if ( ! GravityView_Edit_Entry::check_user_cap_edit_entry( $entry ) ) {
11 11
 	return;
12 12
 }
13 13
 
14
-$link_text = empty( $field_settings['edit_link'] ) ? __('Edit Entry', 'gravityview') : $field_settings['edit_link'];
14
+$link_text = empty( $field_settings[ 'edit_link' ] ) ? __( 'Edit Entry', 'gravityview' ) : $field_settings[ 'edit_link' ];
15 15
 
16
-$link_atts = empty( $field_settings['new_window'] ) ? '' : 'target="_blank"';
16
+$link_atts = empty( $field_settings[ 'new_window' ] ) ? '' : 'target="_blank"';
17 17
 
18 18
 $output = apply_filters( 'gravityview_entry_link', GravityView_API::replace_variables( $link_text, $form, $entry ) );
19 19
 
Please login to merge, or discard this patch.
includes/class-admin-views.php 3 patches
Braces   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -270,7 +270,7 @@  discard block
 block discarded – undo
270 270
 	 *
271 271
 	 * @return void
272 272
 	 */
273
-	public function add_custom_column_content( $column_name = NULL, $post_id )	{
273
+	public function add_custom_column_content( $column_name = NULL, $post_id ) {
274 274
 
275 275
 		$output = '';
276 276
 
@@ -429,7 +429,7 @@  discard block
 block discarded – undo
429 429
 	 */
430 430
 	function save_postdata( $post_id ) {
431 431
 
432
-		if( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ){
432
+		if( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) {
433 433
 			return;
434 434
 		}
435 435
 
Please login to merge, or discard this patch.
Indentation   +73 added lines, -73 removed lines patch added patch discarded remove patch
@@ -62,28 +62,28 @@  discard block
 block discarded – undo
62 62
 	}
63 63
 
64 64
 	/**
65
-     * When on the Add/Edit View screen, suggest most popular articles related to that
66
-     *
65
+	 * When on the Add/Edit View screen, suggest most popular articles related to that
66
+	 *
67 67
 	 * @param array $localization_data Data to be passed to the Support Port JS
68 68
 	 *
69 69
 	 * @return array
70 70
 	 */
71 71
 	function suggest_support_articles( $localization_data = array() ) {
72 72
 
73
-	    if( ! gravityview()->request->is_view() ) {
74
-	        return $localization_data;
75
-        }
73
+		if( ! gravityview()->request->is_view() ) {
74
+			return $localization_data;
75
+		}
76 76
 
77 77
 		$localization_data['suggest'] = array(
78
-            '57ef23539033602e61d4a560',
79
-            '54c67bb9e4b0512429885513',
80
-            '54c67bb9e4b0512429885512',
81
-            '54c67bbbe4b07997ea3f3f6b',
82
-            '54d1a33ae4b086c0c0964ce9',
83
-            '57ef253c9033602e61d4a563',
84
-            '552355bfe4b0221aadf2572b',
85
-            '54c67bcde4b051242988553e',
86
-        );
78
+			'57ef23539033602e61d4a560',
79
+			'54c67bb9e4b0512429885513',
80
+			'54c67bb9e4b0512429885512',
81
+			'54c67bbbe4b07997ea3f3f6b',
82
+			'54d1a33ae4b086c0c0964ce9',
83
+			'57ef253c9033602e61d4a563',
84
+			'552355bfe4b0221aadf2572b',
85
+			'54c67bcde4b051242988553e',
86
+		);
87 87
 
88 88
 		return $localization_data;
89 89
 	}
@@ -174,11 +174,11 @@  discard block
 block discarded – undo
174 174
 
175 175
 		if( 'form_list' === GFForms::get_page() ) {
176 176
 			$priority = 790;
177
-        }
177
+		}
178 178
 
179 179
 		if( empty( $connected_views ) ) {
180 180
 
181
-		    $menu_items['gravityview'] = array(
181
+			$menu_items['gravityview'] = array(
182 182
 				'label'          => esc_attr__( 'Create a View', 'gravityview' ),
183 183
 				'icon'           => '<i class="fa fa-lg gv-icon-astronaut-head gv-icon"></i>',
184 184
 				'title'          => esc_attr__( 'Create a View using this form as a data source', 'gravityview' ),
@@ -209,14 +209,14 @@  discard block
 block discarded – undo
209 209
 		// If there were no items added, then let's create the parent menu
210 210
 		if( $sub_menu_items ) {
211 211
 
212
-		    $sub_menu_items[] = array(
213
-			    'label' => esc_attr__( 'Create a View', 'gravityview' ),
214
-                'link_class' => 'gv-create-view',
215
-			    'icon' => '<i>&nbsp;+&nbsp;</i>',
216
-			    'title' => esc_attr__( 'Create a View using this form as a data source', 'gravityview' ),
217
-			    'url'   => admin_url( 'post-new.php?post_type=gravityview&form_id=' . $id ),
218
-			    'capabilities'   => array( 'edit_gravityviews' ),
219
-            );
212
+			$sub_menu_items[] = array(
213
+				'label' => esc_attr__( 'Create a View', 'gravityview' ),
214
+				'link_class' => 'gv-create-view',
215
+				'icon' => '<i>&nbsp;+&nbsp;</i>',
216
+				'title' => esc_attr__( 'Create a View using this form as a data source', 'gravityview' ),
217
+				'url'   => admin_url( 'post-new.php?post_type=gravityview&form_id=' . $id ),
218
+				'capabilities'   => array( 'edit_gravityviews' ),
219
+			);
220 220
 
221 221
 
222 222
 			/**
@@ -619,16 +619,16 @@  discard block
 block discarded – undo
619 619
 	/**
620 620
 	 * Render html for displaying available fields based on a Form ID
621 621
 	 *
622
-     * @see GravityView_Ajax::get_available_fields_html() Triggers `gravityview_render_available_fields` action
622
+	 * @see GravityView_Ajax::get_available_fields_html() Triggers `gravityview_render_available_fields` action
623 623
 	 *
624 624
 	 * @param int $form Gravity Forms Form ID (default: '')
625 625
 	 * @param string $context (default: 'single')
626
-     *
626
+	 *
627 627
 	 * @return void
628 628
 	 */
629 629
 	function render_available_fields( $form = 0, $context = 'single' ) {
630 630
 
631
-	    // Determine if form is a preset and convert it to an array with fields
631
+		// Determine if form is a preset and convert it to an array with fields
632 632
 		$form = ( is_string( $form ) && preg_match( '/^preset_/', $form ) ) ? GravityView_Ajax::pre_get_form_fields( $form ) : $form;
633 633
 
634 634
 		/**
@@ -640,7 +640,7 @@  discard block
 block discarded – undo
640 640
 
641 641
 		if ( ! is_array( $blacklist_field_types ) ) {
642 642
 
643
-		    gravityview()->log->error( '$blacklist_field_types is not an array', array( 'data' => print_r( $blacklist_field_types, true ) ) );
643
+			gravityview()->log->error( '$blacklist_field_types is not an array', array( 'data' => print_r( $blacklist_field_types, true ) ) );
644 644
 
645 645
 			$blacklist_field_types = array();
646 646
 		}
@@ -926,9 +926,9 @@  discard block
 block discarded – undo
926 926
 
927 927
 				$joined_forms = gravityview_get_joined_forms( $post->ID );
928 928
 
929
-                foreach ( $joined_forms as $form ) {
930
-                    $available_items[ $form->ID ] = $this->get_available_fields( $form->ID, $zone );
931
-                }
929
+				foreach ( $joined_forms as $form ) {
930
+					$available_items[ $form->ID ] = $this->get_available_fields( $form->ID, $zone );
931
+				}
932 932
 			} else {
933 933
 				$available_items[ $form ] = \GV\Widget::registered();
934 934
 			}
@@ -967,9 +967,9 @@  discard block
 block discarded – undo
967 967
 
968 968
 										if ( $form_id ) {
969 969
 											$original_item = isset( $available_items[ $form_id ] [ $field['id'] ] ) ? $available_items[ $form_id ] [ $field['id'] ] : false ;
970
-                                        } else {
970
+										} else {
971 971
 											$original_item = isset( $available_items[ $field['id'] ] ) ? $available_items[ $field['id'] ] : false ;
972
-                                        }
972
+										}
973 973
 
974 974
 										if ( !$original_item ) {
975 975
 											gravityview()->log->error( 'An item was not available when rendering the output; maybe it was added by a plugin that is now de-activated.', array(' data' => array('available_items' => $available_items, 'field' => $field ) ) );
@@ -1219,7 +1219,7 @@  discard block
 block discarded – undo
1219 1219
 		}
1220 1220
 
1221 1221
 		// Add the GV font (with the Astronaut)
1222
-        wp_enqueue_style( 'gravityview_global', plugins_url('assets/css/admin-global.css', GRAVITYVIEW_FILE), array(), \GV\Plugin::$version );
1222
+		wp_enqueue_style( 'gravityview_global', plugins_url('assets/css/admin-global.css', GRAVITYVIEW_FILE), array(), \GV\Plugin::$version );
1223 1223
 		wp_register_style( 'gravityview_views_styles', plugins_url( 'assets/css/admin-views.css', GRAVITYVIEW_FILE ), array( 'dashicons', 'wp-jquery-ui-dialog' ), \GV\Plugin::$version );
1224 1224
 
1225 1225
 		wp_register_script( 'gravityview-jquery-cookie', plugins_url('assets/lib/jquery.cookie/jquery.cookie.min.js', GRAVITYVIEW_FILE), array( 'jquery' ), \GV\Plugin::$version, true );
@@ -1227,65 +1227,65 @@  discard block
 block discarded – undo
1227 1227
 		if( GFForms::get_page() === 'form_list' ) {
1228 1228
 			wp_enqueue_style( 'gravityview_views_styles' );
1229 1229
 			return;
1230
-        }
1230
+		}
1231 1231
 
1232 1232
 		// Don't process any scripts below here if it's not a GravityView page.
1233 1233
 		if( ! gravityview()->request->is_admin( $hook, 'single' ) && ! $is_widgets_page ) {
1234
-		    return;
1234
+			return;
1235 1235
 		}
1236 1236
 
1237
-        wp_enqueue_script( 'jquery-ui-datepicker' );
1238
-        wp_enqueue_style( 'gravityview_views_datepicker', plugins_url('assets/css/admin-datepicker.css', GRAVITYVIEW_FILE), \GV\Plugin::$version );
1239
-
1240
-        // Enqueue scripts
1241
-        wp_enqueue_script( 'gravityview_views_scripts', plugins_url( 'assets/js/admin-views' . $script_debug . '.js', GRAVITYVIEW_FILE ), array( 'jquery-ui-tabs', 'jquery-ui-draggable', 'jquery-ui-droppable', 'jquery-ui-sortable', 'jquery-ui-tooltip', 'jquery-ui-dialog', 'gravityview-jquery-cookie', 'jquery-ui-datepicker', 'underscore' ), \GV\Plugin::$version );
1242
-
1243
-        wp_localize_script('gravityview_views_scripts', 'gvGlobals', array(
1244
-            'cookiepath' => COOKIEPATH,
1245
-            'admin_cookiepath' => ADMIN_COOKIE_PATH,
1246
-            'passed_form_id' => (bool) \GV\Utils::_GET( 'form_id' ),
1247
-            'nonce' => wp_create_nonce( 'gravityview_ajaxviews' ),
1248
-            'label_viewname' => __( 'Enter View name here', 'gravityview' ),
1249
-            'label_reorder_search_fields' => __( 'Reorder Search Fields', 'gravityview' ),
1250
-            'label_add_search_field' => __( 'Add Search Field', 'gravityview' ),
1251
-            'label_remove_search_field' => __( 'Remove Search Field', 'gravityview' ),
1252
-            'label_close' => __( 'Close', 'gravityview' ),
1253
-            'label_cancel' => __( 'Cancel', 'gravityview' ),
1254
-            'label_continue' => __( 'Continue', 'gravityview' ),
1255
-            'label_ok' => __( 'Ok', 'gravityview' ),
1256
-            'label_publisherror' => __( 'Error while creating the View for you. Check the settings or contact GravityView support.', 'gravityview' ),
1257
-            'loading_text' => esc_html__( 'Loading&hellip;', 'gravityview' ),
1258
-            'loading_error' => esc_html__( 'There was an error loading dynamic content.', 'gravityview' ),
1259
-            'field_loaderror' => __( 'Error while adding the field. Please try again or contact GravityView support.', 'gravityview' ),
1260
-            'remove_all_fields' => __( 'Would you like to remove all fields in this zone?', 'gravityview' ),
1261
-        ));
1237
+		wp_enqueue_script( 'jquery-ui-datepicker' );
1238
+		wp_enqueue_style( 'gravityview_views_datepicker', plugins_url('assets/css/admin-datepicker.css', GRAVITYVIEW_FILE), \GV\Plugin::$version );
1239
+
1240
+		// Enqueue scripts
1241
+		wp_enqueue_script( 'gravityview_views_scripts', plugins_url( 'assets/js/admin-views' . $script_debug . '.js', GRAVITYVIEW_FILE ), array( 'jquery-ui-tabs', 'jquery-ui-draggable', 'jquery-ui-droppable', 'jquery-ui-sortable', 'jquery-ui-tooltip', 'jquery-ui-dialog', 'gravityview-jquery-cookie', 'jquery-ui-datepicker', 'underscore' ), \GV\Plugin::$version );
1242
+
1243
+		wp_localize_script('gravityview_views_scripts', 'gvGlobals', array(
1244
+			'cookiepath' => COOKIEPATH,
1245
+			'admin_cookiepath' => ADMIN_COOKIE_PATH,
1246
+			'passed_form_id' => (bool) \GV\Utils::_GET( 'form_id' ),
1247
+			'nonce' => wp_create_nonce( 'gravityview_ajaxviews' ),
1248
+			'label_viewname' => __( 'Enter View name here', 'gravityview' ),
1249
+			'label_reorder_search_fields' => __( 'Reorder Search Fields', 'gravityview' ),
1250
+			'label_add_search_field' => __( 'Add Search Field', 'gravityview' ),
1251
+			'label_remove_search_field' => __( 'Remove Search Field', 'gravityview' ),
1252
+			'label_close' => __( 'Close', 'gravityview' ),
1253
+			'label_cancel' => __( 'Cancel', 'gravityview' ),
1254
+			'label_continue' => __( 'Continue', 'gravityview' ),
1255
+			'label_ok' => __( 'Ok', 'gravityview' ),
1256
+			'label_publisherror' => __( 'Error while creating the View for you. Check the settings or contact GravityView support.', 'gravityview' ),
1257
+			'loading_text' => esc_html__( 'Loading&hellip;', 'gravityview' ),
1258
+			'loading_error' => esc_html__( 'There was an error loading dynamic content.', 'gravityview' ),
1259
+			'field_loaderror' => __( 'Error while adding the field. Please try again or contact GravityView support.', 'gravityview' ),
1260
+			'remove_all_fields' => __( 'Would you like to remove all fields in this zone?', 'gravityview' ),
1261
+		));
1262 1262
 
1263 1263
 		wp_enqueue_style( 'gravityview_views_styles' );
1264 1264
 
1265
-        // Enqueue scripts needed for merge tags
1266
-        self::enqueue_gravity_forms_scripts();
1265
+		// Enqueue scripts needed for merge tags
1266
+		self::enqueue_gravity_forms_scripts();
1267 1267
 	}
1268 1268
 
1269 1269
 	/**
1270 1270
 	 * Enqueue Gravity Forms scripts, needed for Merge Tags
1271
-     *
1272
-     * @since 1.0.5-beta
1273
-     *
1274
-     * @return void
1271
+	 *
1272
+	 * @since 1.0.5-beta
1273
+	 *
1274
+	 * @return void
1275 1275
 	 */
1276 1276
 	static function enqueue_gravity_forms_scripts() {
1277 1277
 		GFForms::register_scripts();
1278 1278
 
1279 1279
 		$scripts = array(
1280
-		    'sack',
1281
-		    'gform_gravityforms',
1282
-		    'gform_forms',
1283
-		    'gform_form_admin',
1284
-		    'jquery-ui-autocomplete'
1280
+			'sack',
1281
+			'gform_gravityforms',
1282
+			'gform_forms',
1283
+			'gform_form_admin',
1284
+			'jquery-ui-autocomplete'
1285 1285
 		);
1286 1286
 
1287 1287
 		if ( wp_is_mobile() ) {
1288
-		    $scripts[] = 'jquery-touch-punch';
1288
+			$scripts[] = 'jquery-touch-punch';
1289 1289
 		}
1290 1290
 
1291 1291
 		wp_enqueue_script( $scripts );
Please login to merge, or discard this patch.
Spacing   +168 added lines, -168 removed lines patch added patch discarded remove patch
@@ -27,32 +27,32 @@  discard block
 block discarded – undo
27 27
 		add_filter( 'gravityview_blacklist_field_types', array( $this, 'default_field_blacklist' ), 10, 2 );
28 28
 
29 29
 		// Tooltips
30
-		add_filter( 'gform_tooltips', array( $this, 'tooltips') );
30
+		add_filter( 'gform_tooltips', array( $this, 'tooltips' ) );
31 31
 
32 32
 		// adding styles and scripts
33
-		add_action( 'admin_enqueue_scripts', array( 'GravityView_Admin_Views', 'add_scripts_and_styles'), 999 );
34
-		add_filter( 'gform_noconflict_styles', array( $this, 'register_no_conflict') );
35
-		add_filter( 'gform_noconflict_scripts', array( $this, 'register_no_conflict') );
36
-		add_filter( 'gravityview_noconflict_styles', array( $this, 'register_no_conflict') );
37
-		add_filter( 'gravityview_noconflict_scripts', array( $this, 'register_no_conflict') );
38
-
39
-		add_action( 'gravityview_render_directory_active_areas', array( $this, 'render_directory_active_areas'), 10, 4 );
40
-		add_action( 'gravityview_render_widgets_active_areas', array( $this, 'render_widgets_active_areas'), 10, 3 );
41
-		add_action( 'gravityview_render_field_pickers', array( $this, 'render_field_pickers'), 10, 2 );
42
-		add_action( 'gravityview_render_available_fields', array( $this, 'render_available_fields'), 10, 2 );
43
-		add_action( 'gravityview_render_available_widgets', array( $this, 'render_available_widgets') );
44
-		add_action( 'gravityview_render_active_areas', array( $this, 'render_active_areas'), 10, 5 );
33
+		add_action( 'admin_enqueue_scripts', array( 'GravityView_Admin_Views', 'add_scripts_and_styles' ), 999 );
34
+		add_filter( 'gform_noconflict_styles', array( $this, 'register_no_conflict' ) );
35
+		add_filter( 'gform_noconflict_scripts', array( $this, 'register_no_conflict' ) );
36
+		add_filter( 'gravityview_noconflict_styles', array( $this, 'register_no_conflict' ) );
37
+		add_filter( 'gravityview_noconflict_scripts', array( $this, 'register_no_conflict' ) );
38
+
39
+		add_action( 'gravityview_render_directory_active_areas', array( $this, 'render_directory_active_areas' ), 10, 4 );
40
+		add_action( 'gravityview_render_widgets_active_areas', array( $this, 'render_widgets_active_areas' ), 10, 3 );
41
+		add_action( 'gravityview_render_field_pickers', array( $this, 'render_field_pickers' ), 10, 2 );
42
+		add_action( 'gravityview_render_available_fields', array( $this, 'render_available_fields' ), 10, 2 );
43
+		add_action( 'gravityview_render_available_widgets', array( $this, 'render_available_widgets' ) );
44
+		add_action( 'gravityview_render_active_areas', array( $this, 'render_active_areas' ), 10, 5 );
45 45
 
46 46
 		// @todo check if this hook is needed..
47 47
 		//add_action( 'gravityview_render_field_options', array( $this, 'render_field_options'), 10, 9 );
48 48
 
49 49
 		// Add Connected Form column
50
-		add_filter('manage_gravityview_posts_columns' , array( $this, 'add_post_type_columns' ) );
50
+		add_filter( 'manage_gravityview_posts_columns', array( $this, 'add_post_type_columns' ) );
51 51
 
52 52
 		add_filter( 'gform_toolbar_menu', array( 'GravityView_Admin_Views', 'gform_toolbar_menu' ), 10, 2 );
53 53
 		add_action( 'gform_form_actions', array( 'GravityView_Admin_Views', 'gform_toolbar_menu' ), 10, 2 );
54 54
 
55
-		add_action( 'manage_gravityview_posts_custom_column', array( $this, 'add_custom_column_content'), 10, 2 );
55
+		add_action( 'manage_gravityview_posts_custom_column', array( $this, 'add_custom_column_content' ), 10, 2 );
56 56
 
57 57
 		add_action( 'restrict_manage_posts', array( $this, 'add_view_dropdown' ) );
58 58
 
@@ -70,11 +70,11 @@  discard block
 block discarded – undo
70 70
 	 */
71 71
 	function suggest_support_articles( $localization_data = array() ) {
72 72
 
73
-	    if( ! gravityview()->request->is_view() ) {
73
+	    if ( ! gravityview()->request->is_view() ) {
74 74
 	        return $localization_data;
75 75
         }
76 76
 
77
-		$localization_data['suggest'] = array(
77
+		$localization_data[ 'suggest' ] = array(
78 78
             '57ef23539033602e61d4a560',
79 79
             '54c67bb9e4b0512429885513',
80 80
             '54c67bb9e4b0512429885512',
@@ -95,13 +95,13 @@  discard block
 block discarded – undo
95 95
 	public function filter_pre_get_posts_by_gravityview_form_id( &$query ) {
96 96
 		global $pagenow;
97 97
 
98
-		if ( !is_admin() ) {
98
+		if ( ! is_admin() ) {
99 99
 			return;
100 100
 		}
101 101
 
102
-		$form_id = isset( $_GET['gravityview_form_id'] ) ? (int) $_GET['gravityview_form_id'] : false;
102
+		$form_id = isset( $_GET[ 'gravityview_form_id' ] ) ? (int)$_GET[ 'gravityview_form_id' ] : false;
103 103
 
104
-		if( 'edit.php' !== $pagenow || ! $form_id || ! isset( $query->query_vars[ 'post_type' ] ) ) {
104
+		if ( 'edit.php' !== $pagenow || ! $form_id || ! isset( $query->query_vars[ 'post_type' ] ) ) {
105 105
 			return;
106 106
 		}
107 107
 
@@ -118,18 +118,18 @@  discard block
 block discarded – undo
118 118
 	function add_view_dropdown() {
119 119
 		$current_screen = get_current_screen();
120 120
 
121
-		if( 'gravityview' !== $current_screen->post_type ) {
121
+		if ( 'gravityview' !== $current_screen->post_type ) {
122 122
 			return;
123 123
 		}
124 124
 
125 125
 		$forms = gravityview_get_forms();
126 126
 		$current_form = \GV\Utils::_GET( 'gravityview_form_id' );
127 127
 		// If there are no forms to select, show no forms.
128
-		if( !empty( $forms ) ) { ?>
128
+		if ( ! empty( $forms ) ) { ?>
129 129
 			<select name="gravityview_form_id" id="gravityview_form_id">
130 130
 				<option value="" <?php selected( '', $current_form, true ); ?>><?php esc_html_e( 'All forms', 'gravityview' ); ?></option>
131
-				<?php foreach( $forms as $form ) { ?>
132
-					<option value="<?php echo $form['id']; ?>" <?php selected( $form['id'], $current_form, true ); ?>><?php echo esc_html( $form['title'] ); ?></option>
131
+				<?php foreach ( $forms as $form ) { ?>
132
+					<option value="<?php echo $form[ 'id' ]; ?>" <?php selected( $form[ 'id' ], $current_form, true ); ?>><?php echo esc_html( $form[ 'title' ] ); ?></option>
133 133
 				<?php } ?>
134 134
 			</select>
135 135
 		<?php }
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
 	 */
143 143
 	public static function render_setting_row( $key = '', $current_settings = array(), $override_input = null, $name = 'template_settings[%s]', $id = 'gravityview_se_%s' ) {
144 144
 		_deprecated_function( 'GravityView_Admin_Views::render_setting_row', '1.1.7', 'GravityView_Render_Settings::render_setting_row' );
145
-		GravityView_Render_Settings::render_setting_row( $key, $current_settings, $override_input, $name , $id );
145
+		GravityView_Render_Settings::render_setting_row( $key, $current_settings, $override_input, $name, $id );
146 146
 	}
147 147
 
148 148
 	/**
@@ -172,13 +172,13 @@  discard block
 block discarded – undo
172 172
 
173 173
 		$priority = 0;
174 174
 
175
-		if( 'form_list' === GFForms::get_page() ) {
175
+		if ( 'form_list' === GFForms::get_page() ) {
176 176
 			$priority = 790;
177 177
         }
178 178
 
179
-		if( empty( $connected_views ) ) {
179
+		if ( empty( $connected_views ) ) {
180 180
 
181
-		    $menu_items['gravityview'] = array(
181
+		    $menu_items[ 'gravityview' ] = array(
182 182
 				'label'          => esc_attr__( 'Create a View', 'gravityview' ),
183 183
 				'icon'           => '<i class="fa fa-lg gv-icon-astronaut-head gv-icon"></i>',
184 184
 				'title'          => esc_attr__( 'Create a View using this form as a data source', 'gravityview' ),
@@ -194,22 +194,22 @@  discard block
 block discarded – undo
194 194
 		$sub_menu_items = array();
195 195
 		foreach ( (array)$connected_views as $view ) {
196 196
 
197
-			if( ! GVCommon::has_cap( 'edit_gravityview', $view->ID ) ) {
197
+			if ( ! GVCommon::has_cap( 'edit_gravityview', $view->ID ) ) {
198 198
 				continue;
199 199
 			}
200 200
 
201
-			$label = empty( $view->post_title ) ? sprintf( __('No Title (View #%d)', 'gravityview' ), $view->ID ) : $view->post_title;
201
+			$label = empty( $view->post_title ) ? sprintf( __( 'No Title (View #%d)', 'gravityview' ), $view->ID ) : $view->post_title;
202 202
 
203
-			$sub_menu_items[] = array(
203
+			$sub_menu_items[ ] = array(
204 204
 				'label' => esc_attr( $label ),
205
-				'url' => admin_url( 'post.php?action=edit&post='.$view->ID ),
205
+				'url' => admin_url( 'post.php?action=edit&post=' . $view->ID ),
206 206
 			);
207 207
 		}
208 208
 
209 209
 		// If there were no items added, then let's create the parent menu
210
-		if( $sub_menu_items ) {
210
+		if ( $sub_menu_items ) {
211 211
 
212
-		    $sub_menu_items[] = array(
212
+		    $sub_menu_items[ ] = array(
213 213
 			    'label' => esc_attr__( 'Create a View', 'gravityview' ),
214 214
                 'link_class' => 'gv-create-view',
215 215
 			    'icon' => '<i>&nbsp;+&nbsp;</i>',
@@ -225,14 +225,14 @@  discard block
 block discarded – undo
225 225
 			if ( ! ( 'gf_edit_forms' === rgget( 'page' ) && '' === rgget( 'view' ) ) || version_compare( '2.5-beta', GFForms::$version, '>' ) ) {
226 226
 
227 227
 				// Make sure Gravity Forms uses the submenu; if there's only one item, it uses a link instead of a dropdown
228
-				$sub_menu_items[] = array(
228
+				$sub_menu_items[ ] = array(
229 229
 					'url' => '#',
230 230
 					'label' => '',
231 231
 					'menu_class' => 'hidden',
232 232
 					'capabilities' => '',
233 233
 				);
234 234
 
235
-				$menu_items['gravityview'] = array(
235
+				$menu_items[ 'gravityview' ] = array(
236 236
 					'label'          => __( 'Connected Views', 'gravityview' ),
237 237
 					'icon'           => '<i class="fa fa-lg gv-icon-astronaut-head gv-icon"></i>',
238 238
 					'title'          => __( 'GravityView Views using this form as a data source', 'gravityview' ),
@@ -246,7 +246,7 @@  discard block
 block discarded – undo
246 246
 
247 247
 			} else {
248 248
 
249
-				$menu_items[ 'gravityview'] = array(
249
+				$menu_items[ 'gravityview' ] = array(
250 250
 					'label' => __( 'Connected Views', 'gravityview' ),
251 251
 					'url'   => '#gravityview-group-heading',
252 252
 					'icon'  => '<i class="fa fa-lg gv-icon-astronaut-head gv-icon"></i>',
@@ -282,8 +282,8 @@  discard block
 block discarded – undo
282 282
 		$add = array( 'captcha', 'page' );
283 283
 
284 284
 		// Don't allowing editing the following values:
285
-		if( $context === 'edit' ) {
286
-			$add[] = 'post_id';
285
+		if ( $context === 'edit' ) {
286
+			$add[ ] = 'post_id';
287 287
 		}
288 288
 
289 289
 		$return = array_merge( $array, $add );
@@ -306,27 +306,27 @@  discard block
 block discarded – undo
306 306
 		foreach ( $default_args as $key => $arg ) {
307 307
 
308 308
 			// If an arg has `tooltip` defined, but it's false, don't display a tooltip
309
-			if( isset( $arg['tooltip'] ) && empty( $arg['tooltip'] ) ) { continue; }
309
+			if ( isset( $arg[ 'tooltip' ] ) && empty( $arg[ 'tooltip' ] ) ) { continue; }
310 310
 
311 311
 			// By default, use `tooltip` if defined.
312
-			$tooltip = empty( $arg['tooltip'] ) ? NULL : $arg['tooltip'];
312
+			$tooltip = empty( $arg[ 'tooltip' ] ) ? NULL : $arg[ 'tooltip' ];
313 313
 
314 314
 			// If there's no tooltip set, continue
315
-			if( empty( $tooltip ) ) {
315
+			if ( empty( $tooltip ) ) {
316 316
 				continue;
317 317
 			}
318 318
 
319 319
 			// Add the tooltip
320
-			$gv_tooltips[ 'gv_'.$key ] = array(
321
-				'title'	=> $arg['label'],
320
+			$gv_tooltips[ 'gv_' . $key ] = array(
321
+				'title'	=> $arg[ 'label' ],
322 322
 				'value'	=> $tooltip,
323 323
 			);
324 324
 
325 325
 		}
326 326
 
327
-		$gv_tooltips['gv_css_merge_tags'] = array(
328
-			'title' => __('CSS Merge Tags', 'gravityview'),
329
-			'value' => sprintf( __( 'Developers: The CSS classes will be sanitized using the %ssanitize_title_with_dashes()%s function.', 'gravityview'), '<code>', '</code>' )
327
+		$gv_tooltips[ 'gv_css_merge_tags' ] = array(
328
+			'title' => __( 'CSS Merge Tags', 'gravityview' ),
329
+			'value' => sprintf( __( 'Developers: The CSS classes will be sanitized using the %ssanitize_title_with_dashes()%s function.', 'gravityview' ), '<code>', '</code>' )
330 330
 		);
331 331
 
332 332
 		/**
@@ -344,9 +344,9 @@  discard block
 block discarded – undo
344 344
 
345 345
 		foreach ( $gv_tooltips as $key => $tooltip ) {
346 346
 
347
-			$title = empty( $tooltip['title'] ) ? '' : '<h6>'.esc_html( $tooltip['title'] ) .'</h6>';
347
+			$title = empty( $tooltip[ 'title' ] ) ? '' : '<h6>' . esc_html( $tooltip[ 'title' ] ) . '</h6>';
348 348
 
349
-			$tooltips[ $key ] = $title . wpautop( esc_html( $tooltip['value'] ) );
349
+			$tooltips[ $key ] = $title . wpautop( esc_html( $tooltip[ 'value' ] ) );
350 350
 		}
351 351
 
352 352
 		return $tooltips;
@@ -360,7 +360,7 @@  discard block
 block discarded – undo
360 360
 	 *
361 361
 	 * @return void
362 362
 	 */
363
-	public function add_custom_column_content( $column_name = NULL, $post_id )	{
363
+	public function add_custom_column_content( $column_name = NULL, $post_id ) {
364 364
 
365 365
 		$output = '';
366 366
 
@@ -382,7 +382,7 @@  discard block
 block discarded – undo
382 382
 				// Generate backup if label doesn't exist: `example_name` => `Example Name`
383 383
 				$template_id_pretty = ucwords( implode( ' ', explode( '_', $template_id ) ) );
384 384
 
385
-				$output = $template ? $template['label'] : $template_id_pretty;
385
+				$output = $template ? $template[ 'label' ] : $template_id_pretty;
386 386
 
387 387
 				break;
388 388
 
@@ -423,44 +423,44 @@  discard block
 block discarded – undo
423 423
 	static public function get_connected_form_links( $form, $include_form_link = true ) {
424 424
 
425 425
 		// Either the form is empty or the form ID is 0, not yet set.
426
-		if( empty( $form ) ) {
426
+		if ( empty( $form ) ) {
427 427
 			return '';
428 428
 		}
429 429
 
430 430
 		// The $form is passed as the form ID
431
-		if( !is_array( $form ) ) {
431
+		if ( ! is_array( $form ) ) {
432 432
 			$form = gravityview_get_form( $form );
433 433
 		}
434 434
 
435
-		$form_id = $form['id'];
435
+		$form_id = $form[ 'id' ];
436 436
 		$links = array();
437 437
 
438
-		if( GVCommon::has_cap( 'gravityforms_edit_forms' ) ) {
438
+		if ( GVCommon::has_cap( 'gravityforms_edit_forms' ) ) {
439 439
 			$form_url = admin_url( sprintf( 'admin.php?page=gf_edit_forms&amp;id=%d', $form_id ) );
440
-			$form_link = '<strong class="gv-form-title">'.gravityview_get_link( $form_url, $form['title'], 'class=row-title' ).'</strong>';
441
-			$links[] = '<span>'.gravityview_get_link( $form_url, __('Edit Form', 'gravityview') ).'</span>';
440
+			$form_link = '<strong class="gv-form-title">' . gravityview_get_link( $form_url, $form[ 'title' ], 'class=row-title' ) . '</strong>';
441
+			$links[ ] = '<span>' . gravityview_get_link( $form_url, __( 'Edit Form', 'gravityview' ) ) . '</span>';
442 442
 		} else {
443
-			$form_link = '<strong class="gv-form-title">'. esc_html( $form['title'] ). '</strong>';
443
+			$form_link = '<strong class="gv-form-title">' . esc_html( $form[ 'title' ] ) . '</strong>';
444 444
 		}
445 445
 
446
-		if( GVCommon::has_cap( 'gravityforms_view_entries' ) ) {
446
+		if ( GVCommon::has_cap( 'gravityforms_view_entries' ) ) {
447 447
 			$entries_url = admin_url( sprintf( 'admin.php?page=gf_entries&amp;id=%d', $form_id ) );
448
-			$links[] = '<span>'.gravityview_get_link( $entries_url, __('Entries', 'gravityview') ).'</span>';
448
+			$links[ ] = '<span>' . gravityview_get_link( $entries_url, __( 'Entries', 'gravityview' ) ) . '</span>';
449 449
 		}
450 450
 
451
-		if( GVCommon::has_cap( array( 'gravityforms_edit_settings', 'gravityview_view_settings' ) ) ) {
451
+		if ( GVCommon::has_cap( array( 'gravityforms_edit_settings', 'gravityview_view_settings' ) ) ) {
452 452
 			$settings_url = admin_url( sprintf( 'admin.php?page=gf_edit_forms&amp;view=settings&amp;id=%d', $form_id ) );
453
-			$links[] = '<span>'.gravityview_get_link( $settings_url, __('Settings', 'gravityview'), 'title='.__('Edit settings for this form', 'gravityview') ).'</span>';
453
+			$links[ ] = '<span>' . gravityview_get_link( $settings_url, __( 'Settings', 'gravityview' ), 'title=' . __( 'Edit settings for this form', 'gravityview' ) ) . '</span>';
454 454
 		}
455 455
 
456
-		if( GVCommon::has_cap( array("gravityforms_edit_forms", "gravityforms_create_form", "gravityforms_preview_forms") ) ) {
456
+		if ( GVCommon::has_cap( array( "gravityforms_edit_forms", "gravityforms_create_form", "gravityforms_preview_forms" ) ) ) {
457 457
 			$preview_url = site_url( sprintf( '?gf_page=preview&amp;id=%d', $form_id ) );
458
-			$links[] = '<span>'.gravityview_get_link( $preview_url, __('Preview Form', 'gravityview'), 'title='.__('Preview this form', 'gravityview') ).'</span>';
458
+			$links[ ] = '<span>' . gravityview_get_link( $preview_url, __( 'Preview Form', 'gravityview' ), 'title=' . __( 'Preview this form', 'gravityview' ) ) . '</span>';
459 459
 		}
460 460
 
461 461
 		$output = '';
462 462
 
463
-		if( !empty( $include_form_link ) ) {
463
+		if ( ! empty( $include_form_link ) ) {
464 464
 			$output .= $form_link;
465 465
 		}
466 466
 
@@ -472,7 +472,7 @@  discard block
 block discarded – undo
472 472
 		 */
473 473
 		$links = apply_filters( 'gravityview_connected_form_links', $links, $form );
474 474
 
475
-		$output .= '<div class="row-actions">'. implode( ' | ', $links ) .'</div>';
475
+		$output .= '<div class="row-actions">' . implode( ' | ', $links ) . '</div>';
476 476
 
477 477
 		return $output;
478 478
 	}
@@ -486,8 +486,8 @@  discard block
 block discarded – undo
486 486
 		// Get the date column and save it for later to add back in.
487 487
 		// This adds it after the Data Source column.
488 488
 		// This way, we don't need to do array_slice, array_merge, etc.
489
-		$date = $columns['date'];
490
-		unset( $columns['date'] );
489
+		$date = $columns[ 'date' ];
490
+		unset( $columns[ 'date' ] );
491 491
 
492 492
 		$data_source_required_caps = array(
493 493
 			'gravityforms_edit_forms',
@@ -498,14 +498,14 @@  discard block
 block discarded – undo
498 498
 			'gravityforms_preview_forms',
499 499
 		);
500 500
 
501
-		if( GVCommon::has_cap( $data_source_required_caps ) ) {
502
-			$columns['gv_connected_form'] = __( 'Data Source', 'gravityview' );
501
+		if ( GVCommon::has_cap( $data_source_required_caps ) ) {
502
+			$columns[ 'gv_connected_form' ] = __( 'Data Source', 'gravityview' );
503 503
 		}
504 504
 
505
-		$columns['gv_template'] = _x( 'Template', 'Column title that shows what template is being used for Views', 'gravityview' );
505
+		$columns[ 'gv_template' ] = _x( 'Template', 'Column title that shows what template is being used for Views', 'gravityview' );
506 506
 
507 507
 		// Add the date back in.
508
-		$columns['date'] = $date;
508
+		$columns[ 'date' ] = $date;
509 509
 
510 510
 		return $columns;
511 511
 	}
@@ -518,12 +518,12 @@  discard block
 block discarded – undo
518 518
 	 */
519 519
 	function save_postdata( $post_id ) {
520 520
 
521
-		if( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ){
521
+		if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) {
522 522
 			return;
523 523
 		}
524 524
 
525 525
 		// validate post_type
526
-		if ( ! isset( $_POST['post_type'] ) || 'gravityview' != $_POST['post_type'] ) {
526
+		if ( ! isset( $_POST[ 'post_type' ] ) || 'gravityview' != $_POST[ 'post_type' ] ) {
527 527
 			return;
528 528
 		}
529 529
 
@@ -538,63 +538,63 @@  discard block
 block discarded – undo
538 538
 		$statii = array();
539 539
 
540 540
 		// check if this is a start fresh View
541
-		if ( isset( $_POST['gravityview_select_form_nonce'] ) && wp_verify_nonce( $_POST['gravityview_select_form_nonce'], 'gravityview_select_form' ) ) {
541
+		if ( isset( $_POST[ 'gravityview_select_form_nonce' ] ) && wp_verify_nonce( $_POST[ 'gravityview_select_form_nonce' ], 'gravityview_select_form' ) ) {
542 542
 
543
-			$form_id = !empty( $_POST['gravityview_form_id'] ) ? $_POST['gravityview_form_id'] : '';
543
+			$form_id = ! empty( $_POST[ 'gravityview_form_id' ] ) ? $_POST[ 'gravityview_form_id' ] : '';
544 544
 			// save form id
545
-			$statii['form_id'] = update_post_meta( $post_id, '_gravityview_form_id', $form_id );
545
+			$statii[ 'form_id' ] = update_post_meta( $post_id, '_gravityview_form_id', $form_id );
546 546
 
547 547
 		}
548 548
 
549
-		if( false === GVCommon::has_cap( 'gravityforms_create_form' ) && empty( $statii['form_id'] ) ) {
549
+		if ( false === GVCommon::has_cap( 'gravityforms_create_form' ) && empty( $statii[ 'form_id' ] ) ) {
550 550
 			gravityview()->log->error( 'Current user does not have the capability to create a new Form.', array( 'data' => wp_get_current_user() ) );
551 551
 			return;
552 552
 		}
553 553
 
554 554
 		// Was this a start fresh?
555
-		if ( ! empty( $_POST['gravityview_form_id_start_fresh'] ) ) {
556
-			$statii['start_fresh'] = add_post_meta( $post_id, '_gravityview_start_fresh', 1 );
555
+		if ( ! empty( $_POST[ 'gravityview_form_id_start_fresh' ] ) ) {
556
+			$statii[ 'start_fresh' ] = add_post_meta( $post_id, '_gravityview_start_fresh', 1 );
557 557
 		} else {
558
-			$statii['start_fresh'] = delete_post_meta( $post_id, '_gravityview_start_fresh' );
558
+			$statii[ 'start_fresh' ] = delete_post_meta( $post_id, '_gravityview_start_fresh' );
559 559
 		}
560 560
 
561 561
 		// Check if we have a template id
562
-		if ( isset( $_POST['gravityview_select_template_nonce'] ) && wp_verify_nonce( $_POST['gravityview_select_template_nonce'], 'gravityview_select_template' ) ) {
562
+		if ( isset( $_POST[ 'gravityview_select_template_nonce' ] ) && wp_verify_nonce( $_POST[ 'gravityview_select_template_nonce' ], 'gravityview_select_template' ) ) {
563 563
 
564
-			$template_id = !empty( $_POST['gravityview_directory_template'] ) ? $_POST['gravityview_directory_template'] : '';
564
+			$template_id = ! empty( $_POST[ 'gravityview_directory_template' ] ) ? $_POST[ 'gravityview_directory_template' ] : '';
565 565
 
566 566
 			// now save template id
567
-			$statii['directory_template'] = update_post_meta( $post_id, '_gravityview_directory_template', $template_id );
567
+			$statii[ 'directory_template' ] = update_post_meta( $post_id, '_gravityview_directory_template', $template_id );
568 568
 		}
569 569
 
570 570
 
571 571
 		// save View Configuration metabox
572
-		if ( isset( $_POST['gravityview_view_configuration_nonce'] ) && wp_verify_nonce( $_POST['gravityview_view_configuration_nonce'], 'gravityview_view_configuration' ) ) {
572
+		if ( isset( $_POST[ 'gravityview_view_configuration_nonce' ] ) && wp_verify_nonce( $_POST[ 'gravityview_view_configuration_nonce' ], 'gravityview_view_configuration' ) ) {
573 573
 
574 574
 			// template settings
575
-			if( empty( $_POST['template_settings'] ) ) {
576
-				$_POST['template_settings'] = array();
575
+			if ( empty( $_POST[ 'template_settings' ] ) ) {
576
+				$_POST[ 'template_settings' ] = array();
577 577
 			}
578
-			$statii['template_settings'] = update_post_meta( $post_id, '_gravityview_template_settings', $_POST['template_settings'] );
578
+			$statii[ 'template_settings' ] = update_post_meta( $post_id, '_gravityview_template_settings', $_POST[ 'template_settings' ] );
579 579
 
580 580
 			// guard against unloaded View configuration page
581
-			if ( isset( $_POST['gv_fields'] ) && isset( $_POST['gv_fields_done'] ) ) {
581
+			if ( isset( $_POST[ 'gv_fields' ] ) && isset( $_POST[ 'gv_fields_done' ] ) ) {
582 582
 				$fields = array();
583 583
 
584
-				if ( ! empty( $_POST['gv_fields'] ) ) {
584
+				if ( ! empty( $_POST[ 'gv_fields' ] ) ) {
585 585
 					$fields = _gravityview_process_posted_fields();
586 586
 				}
587 587
 
588 588
 				$fields = wp_slash( $fields );
589 589
 
590
-				$statii['directory_fields'] = update_post_meta( $post_id, '_gravityview_directory_fields', $fields );
590
+				$statii[ 'directory_fields' ] = update_post_meta( $post_id, '_gravityview_directory_fields', $fields );
591 591
 			}
592 592
 
593 593
 			// Directory Visible Widgets
594
-			if( empty( $_POST['widgets'] ) ) {
595
-				$_POST['widgets'] = array();
594
+			if ( empty( $_POST[ 'widgets' ] ) ) {
595
+				$_POST[ 'widgets' ] = array();
596 596
 			}
597
-			$statii['directory_widgets'] = gravityview_set_directory_widgets( $post_id, $_POST['widgets'] );
597
+			$statii[ 'directory_widgets' ] = gravityview_set_directory_widgets( $post_id, $_POST[ 'widgets' ] );
598 598
 
599 599
 		} // end save view configuration
600 600
 
@@ -604,7 +604,7 @@  discard block
 block discarded – undo
604 604
 		 * @param array $statii Array of statuses of the post meta saving processes. If saving worked, each key should be mapped to a value of the post ID (`directory_widgets` => `124`). If failed (or didn't change), the value will be false.
605 605
 		 * @since 1.17.2
606 606
 		 */
607
-		do_action('gravityview_view_saved', $post_id, $statii );
607
+		do_action( 'gravityview_view_saved', $post_id, $statii );
608 608
 
609 609
 		gravityview()->log->debug( '[save_postdata] Update Post Meta Statuses (also returns false if nothing changed)', array( 'data' => array_map( 'intval', $statii ) ) );
610 610
 	}
@@ -649,20 +649,20 @@  discard block
 block discarded – undo
649 649
 
650 650
 		$output = '';
651 651
 
652
-		if( !empty( $fields ) ) {
652
+		if ( ! empty( $fields ) ) {
653 653
 
654
-			foreach( $fields as $id => $details ) {
654
+			foreach ( $fields as $id => $details ) {
655 655
 
656
-				if( in_array( $details['type'], (array) $blacklist_field_types ) ) {
656
+				if ( in_array( $details[ 'type' ], (array)$blacklist_field_types ) ) {
657 657
 					continue;
658 658
 				}
659 659
 
660 660
 				// Edit mode only allows editing the parent fields, not single inputs.
661
-				if( $context === 'edit' && ! empty( $details['parent'] ) ) {
661
+				if ( $context === 'edit' && ! empty( $details[ 'parent' ] ) ) {
662 662
 					continue;
663 663
 				}
664 664
 
665
-				$output .= new GravityView_Admin_View_Field( $details['label'], $id, $details, array(), $form );
665
+				$output .= new GravityView_Admin_View_Field( $details[ 'label' ], $id, $details, array(), $form );
666 666
 
667 667
 			} // End foreach
668 668
 		}
@@ -670,7 +670,7 @@  discard block
 block discarded – undo
670 670
 		echo $output;
671 671
 
672 672
 		// For the EDIT view we only want to allow the form fields.
673
-		if( $context === 'edit' ) {
673
+		if ( $context === 'edit' ) {
674 674
 			return;
675 675
 		}
676 676
 
@@ -690,7 +690,7 @@  discard block
 block discarded – undo
690 690
 			array(
691 691
 				'icon' => 'dashicons-plus-alt',
692 692
 				'label_text' => __( 'Add All Form Fields', 'gravityview' ),
693
-				'desc' => __('Insert all the form fields at once.', 'gravityview'),
693
+				'desc' => __( 'Insert all the form fields at once.', 'gravityview' ),
694 694
 				'field_id' => 'all-fields',
695 695
 				'label_type' => 'field',
696 696
 				'input_type' => null,
@@ -706,7 +706,7 @@  discard block
 block discarded – undo
706 706
 		 */
707 707
 		$additional_fields = apply_filters( 'gravityview_additional_fields', $additional_fields );
708 708
 
709
-		foreach ( (array) $additional_fields as $item ) {
709
+		foreach ( (array)$additional_fields as $item ) {
710 710
 
711 711
 			// Prevent items from not having index set
712 712
 			$item = wp_parse_args( $item, array(
@@ -717,16 +717,16 @@  discard block
 block discarded – undo
717 717
 				'field_options' => null,
718 718
 				'settings_html'	=> null,
719 719
 				'icon' => null,
720
-			));
720
+			) );
721 721
 
722 722
 			// Backward compat.
723
-			if( !empty( $item['field_options'] ) ) {
723
+			if ( ! empty( $item[ 'field_options' ] ) ) {
724 724
 				// Use settings_html from now on.
725
-				$item['settings_html'] = $item['field_options'];
725
+				$item[ 'settings_html' ] = $item[ 'field_options' ];
726 726
 			}
727 727
 
728 728
 			// Render a label for each of them
729
-			echo new GravityView_Admin_View_Field( $item['label_text'], $item['field_id'], $item, $settings = array(), $form );
729
+			echo new GravityView_Admin_View_Field( $item[ 'label_text' ], $item[ 'field_id' ], $item, $settings = array(), $form );
730 730
 
731 731
 		}
732 732
 
@@ -738,11 +738,11 @@  discard block
 block discarded – undo
738 738
 	 * @param  string $zone   Either 'single', 'directory', 'header', 'footer'
739 739
 	 * @return array
740 740
 	 */
741
-	function get_entry_default_fields($form, $zone) {
741
+	function get_entry_default_fields( $form, $zone ) {
742 742
 
743 743
 		$entry_default_fields = array();
744 744
 
745
-		if( in_array( $zone, array( 'directory', 'single' ) ) ) {
745
+		if ( in_array( $zone, array( 'directory', 'single' ) ) ) {
746 746
 
747 747
 			$meta_fields = GravityView_Fields::get_all( array( 'meta', 'gravityview' ) );
748 748
 
@@ -752,11 +752,11 @@  discard block
 block discarded – undo
752 752
 				$entry_default_fields += $meta_field->as_array();
753 753
 			}
754 754
 
755
-			if( 'single' !== $zone) {
755
+			if ( 'single' !== $zone ) {
756 756
 
757
-				$entry_default_fields['entry_link'] = array(
758
-					'label' => __('Link to Single Entry', 'gravityview'),
759
-					'desc'	=> __('A dedicated link to the single entry with customizable text.', 'gravityview'),
757
+				$entry_default_fields[ 'entry_link' ] = array(
758
+					'label' => __( 'Link to Single Entry', 'gravityview' ),
759
+					'desc'	=> __( 'A dedicated link to the single entry with customizable text.', 'gravityview' ),
760 760
 					'type' => 'entry_link',
761 761
 					'group' => 'gravityview',
762 762
 				);
@@ -767,16 +767,16 @@  discard block
 block discarded – undo
767 767
 		/**
768 768
 		 * @since  1.2
769 769
 		 */
770
-		$entry_default_fields['custom']	= array(
771
-			'label'	=> __('Custom Content', 'gravityview'),
770
+		$entry_default_fields[ 'custom' ] = array(
771
+			'label'	=> __( 'Custom Content', 'gravityview' ),
772 772
 			'type'	=> 'custom',
773
-			'desc'	=> __('Insert custom text or HTML.', 'gravityview'),
773
+			'desc'	=> __( 'Insert custom text or HTML.', 'gravityview' ),
774 774
 		);
775 775
 
776 776
 		/**
777 777
 		 * @since develop
778 778
 		 */
779
-		$entry_default_fields['sequence'] = array(
779
+		$entry_default_fields[ 'sequence' ] = array(
780 780
 			'label' => __( 'Result Number', 'gravityview' ),
781 781
 			'type'  => 'sequence',
782 782
 			'desc'  => __( 'Display a sequential result number for each entry.', 'gravityview' ),
@@ -789,7 +789,7 @@  discard block
 block discarded – undo
789 789
 		 * @param  string|array $form form_ID or form object
790 790
 		 * @param  string $zone   Either 'single', 'directory', 'header', 'footer'
791 791
 		 */
792
-		return apply_filters( 'gravityview_entry_default_fields', $entry_default_fields, $form, $zone);
792
+		return apply_filters( 'gravityview_entry_default_fields', $entry_default_fields, $form, $zone );
793 793
 	}
794 794
 
795 795
 	/**
@@ -800,7 +800,7 @@  discard block
 block discarded – undo
800 800
 	 */
801 801
 	function get_available_fields( $form = '', $zone = NULL ) {
802 802
 
803
-		if( empty( $form ) ) {
803
+		if ( empty( $form ) ) {
804 804
 			gravityview()->log->error( '$form is empty' );
805 805
 			return array();
806 806
 		}
@@ -809,7 +809,7 @@  discard block
 block discarded – undo
809 809
 		$fields = gravityview_get_form_fields( $form, true );
810 810
 
811 811
 		// get meta fields ( only if form was already created )
812
-		if( !is_array( $form ) ) {
812
+		if ( ! is_array( $form ) ) {
813 813
 			$meta_fields = gravityview_get_entry_meta( $form );
814 814
 		} else {
815 815
 			$meta_fields = array();
@@ -822,14 +822,14 @@  discard block
 block discarded – undo
822 822
 		$fields = $fields + $meta_fields + $default_fields;
823 823
 
824 824
 		// Move Custom Content to top
825
-		$fields = array( 'custom' => $fields['custom'] ) + $fields;
825
+		$fields = array( 'custom' => $fields[ 'custom' ] ) + $fields;
826 826
 
827 827
 		$gv_fields = GravityView_Fields::get_all();
828 828
 
829 829
 		foreach ( $fields as &$field ) {
830 830
 			foreach ( $gv_fields as $gv_field ) {
831
-				if ( $field['type'] === $gv_field->name ) {
832
-					$field['icon'] = $gv_field->icon;
831
+				if ( $field[ 'type' ] === $gv_field->name ) {
832
+					$field[ 'icon' ] = $gv_field->icon;
833 833
 				}
834 834
 			}
835 835
 		}
@@ -857,7 +857,7 @@  discard block
 block discarded – undo
857 857
 		}
858 858
 
859 859
 		foreach ( $widgets as $id => $details ) {
860
-			echo new GravityView_Admin_View_Widget( $details['label'], $id, $details );
860
+			echo new GravityView_Admin_View_Widget( $details[ 'label' ], $id, $details );
861 861
 		}
862 862
 
863 863
 	}
@@ -887,7 +887,7 @@  discard block
 block discarded – undo
887 887
 	function render_active_areas( $template_id, $type, $zone, $rows, $values ) {
888 888
 		global $post;
889 889
 
890
-		if( $type === 'widget' ) {
890
+		if ( $type === 'widget' ) {
891 891
 			$button_label = __( 'Add Widget', 'gravityview' );
892 892
 		} else {
893 893
 			$button_label = __( 'Add Field', 'gravityview' );
@@ -913,10 +913,10 @@  discard block
 block discarded – undo
913 913
 		$form_id = null;
914 914
 
915 915
 		// if saved values, get available fields to label everyone
916
-		if( !empty( $values ) && ( !empty( $post->ID ) || !empty( $_POST['template_id'] ) ) ) {
916
+		if ( ! empty( $values ) && ( ! empty( $post->ID ) || ! empty( $_POST[ 'template_id' ] ) ) ) {
917 917
 
918
-			if( !empty( $_POST['template_id'] ) ) {
919
-				$form = GravityView_Ajax::pre_get_form_fields( $_POST['template_id'] );
918
+			if ( ! empty( $_POST[ 'template_id' ] ) ) {
919
+				$form = GravityView_Ajax::pre_get_form_fields( $_POST[ 'template_id' ] );
920 920
 			} else {
921 921
 				$form_id = $form = gravityview_get_form_id( $post->ID );
922 922
 			}
@@ -934,53 +934,53 @@  discard block
 block discarded – undo
934 934
 			}
935 935
 		}
936 936
 
937
-		foreach( $rows as $row ) :
938
-			foreach( $row as $col => $areas ) :
939
-				$column = ($col == '2-2') ? '1-2' : $col; ?>
937
+		foreach ( $rows as $row ) :
938
+			foreach ( $row as $col => $areas ) :
939
+				$column = ( $col == '2-2' ) ? '1-2' : $col; ?>
940 940
 
941 941
 				<div class="gv-grid-col-<?php echo esc_attr( $column ); ?>">
942 942
 
943
-					<?php foreach( $areas as $area ) : 	?>
943
+					<?php foreach ( $areas as $area ) : 	?>
944 944
 
945
-						<div class="gv-droppable-area" data-areaid="<?php echo esc_attr( $zone .'_'. $area['areaid'] ); ?>" data-context="<?php echo esc_attr( $zone ); ?>">
945
+						<div class="gv-droppable-area" data-areaid="<?php echo esc_attr( $zone . '_' . $area[ 'areaid' ] ); ?>" data-context="<?php echo esc_attr( $zone ); ?>">
946 946
                             <p class="gv-droppable-area-title">
947
-								<strong <?php if ( 'widget' === $type ) { echo 'class="screen-reader-text"'; } ?>><?php echo esc_html( $area['title'] ); ?></strong>
947
+								<strong <?php if ( 'widget' === $type ) { echo 'class="screen-reader-text"'; } ?>><?php echo esc_html( $area[ 'title' ] ); ?></strong>
948 948
 
949 949
 								<?php if ( 'widget' !== $type ) { ?>
950
-									<a class="clear-all-fields alignright" role="button" href="#" data-areaid="<?php echo esc_attr( $zone .'_'. $area['areaid'] ); ?>"><?php esc_html_e( 'Clear all fields', 'gravityview' ); ?></a>
950
+									<a class="clear-all-fields alignright" role="button" href="#" data-areaid="<?php echo esc_attr( $zone . '_' . $area[ 'areaid' ] ); ?>"><?php esc_html_e( 'Clear all fields', 'gravityview' ); ?></a>
951 951
 								<?php } ?>
952 952
 
953
-                                <?php if ( ! empty( $area['subtitle'] ) ) { ?>
954
-									<span class="gv-droppable-area-subtitle"><span class="gf_tooltip gv_tooltip tooltip" title="<?php echo esc_attr( $area['subtitle'] ); ?>"></span></span>
953
+                                <?php if ( ! empty( $area[ 'subtitle' ] ) ) { ?>
954
+									<span class="gv-droppable-area-subtitle"><span class="gf_tooltip gv_tooltip tooltip" title="<?php echo esc_attr( $area[ 'subtitle' ] ); ?>"></span></span>
955 955
 								<?php } ?>
956 956
 							</p>
957 957
 							<div class="active-drop-container active-drop-container-<?php echo esc_attr( $type ); ?>">
958
-							<div class="active-drop active-drop-<?php echo esc_attr( $type ); ?>" data-areaid="<?php echo esc_attr( $zone .'_'. $area['areaid'] ); ?>"><?php // render saved fields
959
-								if( ! empty( $values[ $zone .'_'. $area['areaid'] ] ) ) {
958
+							<div class="active-drop active-drop-<?php echo esc_attr( $type ); ?>" data-areaid="<?php echo esc_attr( $zone . '_' . $area[ 'areaid' ] ); ?>"><?php // render saved fields
959
+								if ( ! empty( $values[ $zone . '_' . $area[ 'areaid' ] ] ) ) {
960 960
 
961
-									foreach( $values[ $zone .'_'. $area['areaid'] ] as $uniqid => $field ) {
961
+									foreach ( $values[ $zone . '_' . $area[ 'areaid' ] ] as $uniqid => $field ) {
962 962
 
963 963
 										// Maybe has a form ID
964
-										$form_id = empty( $field['form_id'] ) ? $form_id : $field['form_id'];
964
+										$form_id = empty( $field[ 'form_id' ] ) ? $form_id : $field[ 'form_id' ];
965 965
 
966 966
 										$input_type = NULL;
967 967
 
968 968
 										if ( $form_id ) {
969
-											$original_item = isset( $available_items[ $form_id ] [ $field['id'] ] ) ? $available_items[ $form_id ] [ $field['id'] ] : false ;
969
+											$original_item = isset( $available_items[ $form_id ] [ $field[ 'id' ] ] ) ? $available_items[ $form_id ] [ $field[ 'id' ] ] : false;
970 970
                                         } else {
971
-											$original_item = isset( $available_items[ $field['id'] ] ) ? $available_items[ $field['id'] ] : false ;
971
+											$original_item = isset( $available_items[ $field[ 'id' ] ] ) ? $available_items[ $field[ 'id' ] ] : false;
972 972
                                         }
973 973
 
974
-										if ( !$original_item ) {
975
-											gravityview()->log->error( 'An item was not available when rendering the output; maybe it was added by a plugin that is now de-activated.', array(' data' => array('available_items' => $available_items, 'field' => $field ) ) );
974
+										if ( ! $original_item ) {
975
+											gravityview()->log->error( 'An item was not available when rendering the output; maybe it was added by a plugin that is now de-activated.', array( ' data' => array( 'available_items' => $available_items, 'field' => $field ) ) );
976 976
 
977 977
 											$original_item = $field;
978 978
 										} else {
979
-											$input_type = isset( $original_item['type'] ) ? $original_item['type'] : NULL;
979
+											$input_type = isset( $original_item[ 'type' ] ) ? $original_item[ 'type' ] : NULL;
980 980
 										}
981 981
 
982 982
 										// Field options dialog box
983
-										$field_options = GravityView_Render_Settings::render_field_options( $form_id, $type, $template_id, $field['id'], $original_item['label'], $zone .'_'. $area['areaid'], $input_type, $uniqid, $field, $zone, $original_item );
983
+										$field_options = GravityView_Render_Settings::render_field_options( $form_id, $type, $template_id, $field[ 'id' ], $original_item[ 'label' ], $zone . '_' . $area[ 'areaid' ], $input_type, $uniqid, $field, $zone, $original_item );
984 984
 
985 985
 										$item = array(
986 986
 											'input_type' => $input_type,
@@ -993,12 +993,12 @@  discard block
 block discarded – undo
993 993
 											$item = wp_parse_args( $item, $original_item );
994 994
 										}
995 995
 
996
-										switch( $type ) {
996
+										switch ( $type ) {
997 997
 											case 'widget':
998
-												echo new GravityView_Admin_View_Widget( $item['label'], $field['id'], $item, $field );
998
+												echo new GravityView_Admin_View_Widget( $item[ 'label' ], $field[ 'id' ], $item, $field );
999 999
 												break;
1000 1000
 											default:
1001
-												echo new GravityView_Admin_View_Field( $field['label'], $field['id'], $item, $field, $form_id );
1001
+												echo new GravityView_Admin_View_Field( $field[ 'label' ], $field[ 'id' ], $item, $field, $form_id );
1002 1002
 										}
1003 1003
 									}
1004 1004
 
@@ -1006,7 +1006,7 @@  discard block
 block discarded – undo
1006 1006
 								<div class="gv-droppable-area-action">
1007 1007
 									<a href="#" class="gv-add-field button button-link button-hero" title=""
1008 1008
 									   data-objecttype="<?php echo esc_attr( $type ); ?>"
1009
-									   data-areaid="<?php echo esc_attr( $zone . '_' . $area['areaid'] ); ?>"
1009
+									   data-areaid="<?php echo esc_attr( $zone . '_' . $area[ 'areaid' ] ); ?>"
1010 1010
 									   data-context="<?php echo esc_attr( $zone ); ?>"
1011 1011
 									   data-formid="<?php echo $view ? esc_attr( $view->form ? $view->form->ID : '' ) : ''; ?>"><?php echo '<span class="dashicons dashicons-plus-alt"></span>' . esc_html( $button_label ); ?></a>
1012 1012
 								</div>
@@ -1039,7 +1039,7 @@  discard block
 block discarded – undo
1039 1039
 				// This is a new View, prefill the widgets
1040 1040
 				$widgets = array(
1041 1041
 					'header_top' => array(
1042
-						substr( md5( microtime( true ) ), 0, 13 ) => array (
1042
+						substr( md5( microtime( true ) ), 0, 13 ) => array(
1043 1043
 							'id' => 'search_bar',
1044 1044
 							'label' => __( 'Search Bar', 'gravityview' ),
1045 1045
 							'search_layout' => 'horizontal',
@@ -1114,12 +1114,12 @@  discard block
 block discarded – undo
1114 1114
 		if ( $post ) {
1115 1115
 			$source_form_id = gravityview_get_form_id( $post->ID );
1116 1116
 			if ( $source_form_id ) {
1117
-				$form_ids[] = $source_form_id;
1117
+				$form_ids[ ] = $source_form_id;
1118 1118
 			}
1119 1119
 
1120 1120
 			$joined_forms = \GV\View::get_joined_forms( $post->ID );
1121 1121
 			foreach ( $joined_forms as $joined_form ) {
1122
-				$form_ids[] = $joined_form->ID;
1122
+				$form_ids[ ] = $joined_form->ID;
1123 1123
 			}
1124 1124
 		}
1125 1125
 		foreach ( array_unique( $form_ids ) as $form_id ) {
@@ -1157,7 +1157,7 @@  discard block
 block discarded – undo
1157 1157
 	 * @return string HTML of the active areas
1158 1158
 	 */
1159 1159
 	function render_directory_active_areas( $template_id = '', $context = 'single', $post_id = '', $echo = false ) {
1160
-		if( empty( $template_id ) ) {
1160
+		if ( empty( $template_id ) ) {
1161 1161
 			gravityview()->log->debug( '[render_directory_active_areas] {template_id} is empty', array( 'template_id' => $template_id ) );
1162 1162
 			return '';
1163 1163
 		}
@@ -1171,12 +1171,12 @@  discard block
 block discarded – undo
1171 1171
 		 */
1172 1172
 		$template_areas = apply_filters( 'gravityview_template_active_areas', array(), $template_id, $context );
1173 1173
 
1174
-		if( empty( $template_areas ) ) {
1174
+		if ( empty( $template_areas ) ) {
1175 1175
 
1176 1176
 			gravityview()->log->debug( '[render_directory_active_areas] No areas defined. Maybe template {template_id} is disabled.', array( 'data' => $template_id ) );
1177 1177
 			$output = '<div>';
1178
-			$output .= '<h2 class="description" style="font-size: 16px; margin:0">'. sprintf( esc_html__( 'This View is configured using the %s View type, which is disabled.', 'gravityview' ), '<em>'.$template_id.'</em>' ) .'</h2>';
1179
-			$output .= '<p class="description" style="font-size: 14px; margin:0 0 1em 0;padding:0">'.esc_html__('The data is not lost; re-activate the associated plugin and the configuration will re-appear.', 'gravityview').'</p>';
1178
+			$output .= '<h2 class="description" style="font-size: 16px; margin:0">' . sprintf( esc_html__( 'This View is configured using the %s View type, which is disabled.', 'gravityview' ), '<em>' . $template_id . '</em>' ) . '</h2>';
1179
+			$output .= '<p class="description" style="font-size: 14px; margin:0 0 1em 0;padding:0">' . esc_html__( 'The data is not lost; re-activate the associated plugin and the configuration will re-appear.', 'gravityview' ) . '</p>';
1180 1180
 			$output .= '</div>';
1181 1181
 		} else {
1182 1182
 
@@ -1191,7 +1191,7 @@  discard block
 block discarded – undo
1191 1191
 
1192 1192
 		}
1193 1193
 
1194
-		if( $echo ) {
1194
+		if ( $echo ) {
1195 1195
 			echo $output;
1196 1196
 		}
1197 1197
 
@@ -1219,31 +1219,31 @@  discard block
 block discarded – undo
1219 1219
 		}
1220 1220
 
1221 1221
 		// Add the GV font (with the Astronaut)
1222
-        wp_enqueue_style( 'gravityview_global', plugins_url('assets/css/admin-global.css', GRAVITYVIEW_FILE), array(), \GV\Plugin::$version );
1222
+        wp_enqueue_style( 'gravityview_global', plugins_url( 'assets/css/admin-global.css', GRAVITYVIEW_FILE ), array(), \GV\Plugin::$version );
1223 1223
 		wp_register_style( 'gravityview_views_styles', plugins_url( 'assets/css/admin-views.css', GRAVITYVIEW_FILE ), array( 'dashicons', 'wp-jquery-ui-dialog' ), \GV\Plugin::$version );
1224 1224
 
1225
-		wp_register_script( 'gravityview-jquery-cookie', plugins_url('assets/lib/jquery.cookie/jquery.cookie.min.js', GRAVITYVIEW_FILE), array( 'jquery' ), \GV\Plugin::$version, true );
1225
+		wp_register_script( 'gravityview-jquery-cookie', plugins_url( 'assets/lib/jquery.cookie/jquery.cookie.min.js', GRAVITYVIEW_FILE ), array( 'jquery' ), \GV\Plugin::$version, true );
1226 1226
 
1227
-		if( GFForms::get_page() === 'form_list' ) {
1227
+		if ( GFForms::get_page() === 'form_list' ) {
1228 1228
 			wp_enqueue_style( 'gravityview_views_styles' );
1229 1229
 			return;
1230 1230
         }
1231 1231
 
1232 1232
 		// Don't process any scripts below here if it's not a GravityView page.
1233
-		if( ! gravityview()->request->is_admin( $hook, 'single' ) && ! $is_widgets_page ) {
1233
+		if ( ! gravityview()->request->is_admin( $hook, 'single' ) && ! $is_widgets_page ) {
1234 1234
 		    return;
1235 1235
 		}
1236 1236
 
1237 1237
         wp_enqueue_script( 'jquery-ui-datepicker' );
1238
-        wp_enqueue_style( 'gravityview_views_datepicker', plugins_url('assets/css/admin-datepicker.css', GRAVITYVIEW_FILE), \GV\Plugin::$version );
1238
+        wp_enqueue_style( 'gravityview_views_datepicker', plugins_url( 'assets/css/admin-datepicker.css', GRAVITYVIEW_FILE ), \GV\Plugin::$version );
1239 1239
 
1240 1240
         // Enqueue scripts
1241 1241
         wp_enqueue_script( 'gravityview_views_scripts', plugins_url( 'assets/js/admin-views' . $script_debug . '.js', GRAVITYVIEW_FILE ), array( 'jquery-ui-tabs', 'jquery-ui-draggable', 'jquery-ui-droppable', 'jquery-ui-sortable', 'jquery-ui-tooltip', 'jquery-ui-dialog', 'gravityview-jquery-cookie', 'jquery-ui-datepicker', 'underscore' ), \GV\Plugin::$version );
1242 1242
 
1243
-        wp_localize_script('gravityview_views_scripts', 'gvGlobals', array(
1243
+        wp_localize_script( 'gravityview_views_scripts', 'gvGlobals', array(
1244 1244
             'cookiepath' => COOKIEPATH,
1245 1245
             'admin_cookiepath' => ADMIN_COOKIE_PATH,
1246
-            'passed_form_id' => (bool) \GV\Utils::_GET( 'form_id' ),
1246
+            'passed_form_id' => (bool)\GV\Utils::_GET( 'form_id' ),
1247 1247
             'nonce' => wp_create_nonce( 'gravityview_ajaxviews' ),
1248 1248
             'label_viewname' => __( 'Enter View name here', 'gravityview' ),
1249 1249
             'label_reorder_search_fields' => __( 'Reorder Search Fields', 'gravityview' ),
@@ -1258,7 +1258,7 @@  discard block
 block discarded – undo
1258 1258
             'loading_error' => esc_html__( 'There was an error loading dynamic content.', 'gravityview' ),
1259 1259
             'field_loaderror' => __( 'Error while adding the field. Please try again or contact GravityView support.', 'gravityview' ),
1260 1260
             'remove_all_fields' => __( 'Would you like to remove all fields in this zone?', 'gravityview' ),
1261
-        ));
1261
+        ) );
1262 1262
 
1263 1263
 		wp_enqueue_style( 'gravityview_views_styles' );
1264 1264
 
@@ -1285,7 +1285,7 @@  discard block
 block discarded – undo
1285 1285
 		);
1286 1286
 
1287 1287
 		if ( wp_is_mobile() ) {
1288
-		    $scripts[] = 'jquery-touch-punch';
1288
+		    $scripts[ ] = 'jquery-touch-punch';
1289 1289
 		}
1290 1290
 
1291 1291
 		wp_enqueue_script( $scripts );
Please login to merge, or discard this patch.
includes/widgets/search-widget/templates/search-field-hidden.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,4 +7,4 @@
 block discarded – undo
7 7
 
8 8
 $gravityview_view = GravityView_View::getInstance();
9 9
 $search_field = $gravityview_view->search_field;
10
-?><div><input type="hidden" name="<?php echo esc_attr( $search_field['name'] ); ?>" value="<?php echo esc_attr( $search_field['value'] ); ?>"></div>
11 10
\ No newline at end of file
11
+?><div><input type="hidden" name="<?php echo esc_attr( $search_field[ 'name' ] ); ?>" value="<?php echo esc_attr( $search_field[ 'value' ] ); ?>"></div>
12 12
\ No newline at end of file
Please login to merge, or discard this patch.
includes/widgets/class-gravityview-widget-pagination-info.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
 
17 17
 	function __construct() {
18 18
 
19
-		$this->widget_description = __('Summary of the number of visible entries out of the total results.', 'gravityview' );
19
+		$this->widget_description = __( 'Summary of the number of visible entries out of the total results.', 'gravityview' );
20 20
 
21 21
 		$default_values = array(
22 22
 			'header' => 1,
@@ -25,18 +25,18 @@  discard block
 block discarded – undo
25 25
 
26 26
 		$settings = array();
27 27
 
28
-		parent::__construct( __( 'Show Pagination Info', 'gravityview' ) , 'page_info', $default_values, $settings );
28
+		parent::__construct( __( 'Show Pagination Info', 'gravityview' ), 'page_info', $default_values, $settings );
29 29
 	}
30 30
 
31
-	public function render_frontend( $widget_args, $content = '', $context = '') {
31
+	public function render_frontend( $widget_args, $content = '', $context = '' ) {
32 32
 		$gravityview_view = GravityView_View::getInstance();
33 33
 
34
-		if( !$this->pre_render_frontend() ) {
34
+		if ( ! $this->pre_render_frontend() ) {
35 35
 			return;
36 36
 		}
37 37
 
38
-		if( !empty( $widget_args['title'] ) ) {
39
-			echo $widget_args['title'];
38
+		if ( ! empty( $widget_args[ 'title' ] ) ) {
39
+			echo $widget_args[ 'title' ];
40 40
 		}
41 41
 
42 42
 		$pagination_counts = $gravityview_view->getPaginationCounts();
@@ -45,16 +45,16 @@  discard block
 block discarded – undo
45 45
 
46 46
 		$output = '';
47 47
 
48
-		if( ! empty( $pagination_counts ) ) {
48
+		if ( ! empty( $pagination_counts ) ) {
49 49
 
50
-			$first = $pagination_counts['first'];
51
-			$last = $pagination_counts['last'];
52
-			$total = $pagination_counts['total'];
50
+			$first = $pagination_counts[ 'first' ];
51
+			$last = $pagination_counts[ 'last' ];
52
+			$total = $pagination_counts[ 'total' ];
53 53
 
54
-			$class = !empty( $widget_args['custom_class'] ) ? $widget_args['custom_class'] : '';
54
+			$class = ! empty( $widget_args[ 'custom_class' ] ) ? $widget_args[ 'custom_class' ] : '';
55 55
 			$class = gravityview_sanitize_html_class( $class );
56 56
 
57
-			$output = '<div class="gv-widget-pagination '.$class.'"><p>'. sprintf(__( 'Displaying %1$s - %2$s of %3$s', 'gravityview' ), number_format_i18n( $first ), number_format_i18n( $last ), number_format_i18n( $total ) ) . '</p></div>';
57
+			$output = '<div class="gv-widget-pagination ' . $class . '"><p>' . sprintf( __( 'Displaying %1$s - %2$s of %3$s', 'gravityview' ), number_format_i18n( $first ), number_format_i18n( $last ), number_format_i18n( $total ) ) . '</p></div>';
58 58
 		}
59 59
 
60 60
 		/**
Please login to merge, or discard this patch.