Completed
Pull Request — master (#1147)
by Gennady
20:27 queued 16:17
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/extensions/delete-entry/fields/delete_link.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -7,11 +7,11 @@
 block discarded – undo
7 7
 extract( $gravityview_view->getCurrentField() );
8 8
 
9 9
 // Only show the link to logged-in users with the rigth caps.
10
-if( !GravityView_Delete_Entry::check_user_cap_delete_entry( $entry, $field_settings ) ) {
10
+if ( ! GravityView_Delete_Entry::check_user_cap_delete_entry( $entry, $field_settings ) ) {
11 11
 	return;
12 12
 }
13 13
 
14
-$link_text = empty( $field_settings['delete_link'] ) ? __('Delete Entry', 'gravityview') : $field_settings['delete_link'];
14
+$link_text = empty( $field_settings[ 'delete_link' ] ) ? __( 'Delete Entry', 'gravityview' ) : $field_settings[ 'delete_link' ];
15 15
 
16 16
 $link_text = apply_filters( 'gravityview_entry_link', GravityView_API::replace_variables( $link_text, $form, $entry ) );
17 17
 
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   +83 added lines, -83 removed lines patch added patch discarded remove patch
@@ -63,28 +63,28 @@  discard block
 block discarded – undo
63 63
 	}
64 64
 
65 65
 	/**
66
-     * When on the Add/Edit View screen, suggest most popular articles related to that
67
-     *
66
+	 * When on the Add/Edit View screen, suggest most popular articles related to that
67
+	 *
68 68
 	 * @param array $localization_data Data to be passed to the Support Port JS
69 69
 	 *
70 70
 	 * @return array
71 71
 	 */
72 72
 	function suggest_support_articles( $localization_data = array() ) {
73 73
 
74
-	    if( ! gravityview()->request->is_view() ) {
75
-	        return $localization_data;
76
-        }
74
+		if( ! gravityview()->request->is_view() ) {
75
+			return $localization_data;
76
+		}
77 77
 
78 78
 		$localization_data['suggest'] = array(
79
-            '57ef23539033602e61d4a560',
80
-            '54c67bb9e4b0512429885513',
81
-            '54c67bb9e4b0512429885512',
82
-            '54c67bbbe4b07997ea3f3f6b',
83
-            '54d1a33ae4b086c0c0964ce9',
84
-            '57ef253c9033602e61d4a563',
85
-            '552355bfe4b0221aadf2572b',
86
-            '54c67bcde4b051242988553e',
87
-        );
79
+			'57ef23539033602e61d4a560',
80
+			'54c67bb9e4b0512429885513',
81
+			'54c67bb9e4b0512429885512',
82
+			'54c67bbbe4b07997ea3f3f6b',
83
+			'54d1a33ae4b086c0c0964ce9',
84
+			'57ef253c9033602e61d4a563',
85
+			'552355bfe4b0221aadf2572b',
86
+			'54c67bcde4b051242988553e',
87
+		);
88 88
 
89 89
 		return $localization_data;
90 90
 	}
@@ -168,7 +168,7 @@  discard block
 block discarded – undo
168 168
 
169 169
 		if( empty( $connected_views ) ) {
170 170
 
171
-		    $menu_items['gravityview'] = array(
171
+			$menu_items['gravityview'] = array(
172 172
 				'label'          => esc_attr__( 'Create a View', 'gravityview' ),
173 173
 				'icon'           => '<i class="fa fa-lg gv-icon-astronaut-head gv-icon"></i>',
174 174
 				'title'          => esc_attr__( 'Create a View using this form as a data source', 'gravityview' ),
@@ -199,13 +199,13 @@  discard block
 block discarded – undo
199 199
 		// If there were no items added, then let's create the parent menu
200 200
 		if( $sub_menu_items ) {
201 201
 
202
-		    $sub_menu_items[] = array(
203
-			    'label' => esc_attr__( 'Create a View', 'gravityview' ),
204
-                'link_class' => 'gv-create-view',
205
-			    'title' => esc_attr__( 'Create a View using this form as a data source', 'gravityview' ),
206
-			    'url'   => admin_url( 'post-new.php?post_type=gravityview&form_id=' . $id ),
207
-			    'capabilities'   => array( 'edit_gravityviews' ),
208
-            );
202
+			$sub_menu_items[] = array(
203
+				'label' => esc_attr__( 'Create a View', 'gravityview' ),
204
+				'link_class' => 'gv-create-view',
205
+				'title' => esc_attr__( 'Create a View using this form as a data source', 'gravityview' ),
206
+				'url'   => admin_url( 'post-new.php?post_type=gravityview&form_id=' . $id ),
207
+				'capabilities'   => array( 'edit_gravityviews' ),
208
+			);
209 209
 
210 210
 			// Make sure Gravity Forms uses the submenu; if there's only one item, it uses a link instead of a dropdown
211 211
 			$sub_menu_items[] = array(
@@ -588,12 +588,12 @@  discard block
 block discarded – undo
588 588
 	 * Render html for displaying available fields based on a Form ID
589 589
 	 * $blacklist_field_types - contains the field types which are not proper to be shown in a directory.
590 590
 	 *
591
-     * @see GravityView_Ajax::get_available_fields_html() Triggers `gravityview_render_available_fields` action
591
+	 * @see GravityView_Ajax::get_available_fields_html() Triggers `gravityview_render_available_fields` action
592 592
 	 * @access public
593
-     *
593
+	 *
594 594
 	 * @param int $form Gravity Forms Form ID (default: '')
595 595
 	 * @param string $context (default: 'single')
596
-     *
596
+	 *
597 597
 	 * @return void
598 598
 	 */
599 599
 	function render_available_fields( $form = 0, $context = 'single' ) {
@@ -607,7 +607,7 @@  discard block
 block discarded – undo
607 607
 
608 608
 		if ( ! is_array( $blacklist_field_types ) ) {
609 609
 
610
-		    gravityview()->log->error( '$blacklist_field_types is not an array', array( 'data' => print_r( $blacklist_field_types, true ) ) );
610
+			gravityview()->log->error( '$blacklist_field_types is not an array', array( 'data' => print_r( $blacklist_field_types, true ) ) );
611 611
 
612 612
 			$blacklist_field_types = array();
613 613
 		}
@@ -739,12 +739,12 @@  discard block
 block discarded – undo
739 739
 				/**
740 740
 				 * @since 1.7.2
741 741
 				 */
742
-			    'other_entries' => array(
743
-				    'label'	=> __('Other Entries', 'gravityview'),
744
-				    'type'	=> 'other_entries',
745
-				    'desc'	=> __('Display other entries created by the entry creator.', 'gravityview'),
746
-			    ),
747
-	        );
742
+				'other_entries' => array(
743
+					'label'	=> __('Other Entries', 'gravityview'),
744
+					'type'	=> 'other_entries',
745
+					'desc'	=> __('Display other entries created by the entry creator.', 'gravityview'),
746
+				),
747
+			);
748 748
 
749 749
 			if( 'single' !== $zone) {
750 750
 
@@ -877,9 +877,9 @@  discard block
 block discarded – undo
877 877
 
878 878
 				$joined_forms = gravityview_get_joined_forms( $post->ID );
879 879
 
880
-                foreach ( $joined_forms as $form ) {
881
-                    $available_items[ $form->ID ] = $this->get_available_fields( $form->ID, $zone );
882
-                }
880
+				foreach ( $joined_forms as $form ) {
881
+					$available_items[ $form->ID ] = $this->get_available_fields( $form->ID, $zone );
882
+				}
883 883
 			} else {
884 884
 				$available_items[ $form ] = $this->get_registered_widgets();
885 885
 			}
@@ -909,9 +909,9 @@  discard block
 block discarded – undo
909 909
 
910 910
 										if ( $form_id ) {
911 911
 											$original_item = isset( $available_items[ $form_id ] [ $field['id'] ] ) ? $available_items[ $form_id ] [ $field['id'] ] : false ;
912
-                                        } else {
912
+										} else {
913 913
 											$original_item = isset( $available_items[ $field['id'] ] ) ? $available_items[ $field['id'] ] : false ;
914
-                                        }
914
+										}
915 915
 
916 916
 										if ( !$original_item ) {
917 917
 											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 ) ) );
@@ -993,13 +993,13 @@  discard block
 block discarded – undo
993 993
 	}
994 994
 
995 995
 	/**
996
-     * Renders "Add Field" tooltips
997
-     *
998
-     * @since 2.0.11
999
-     *
996
+	 * Renders "Add Field" tooltips
997
+	 *
998
+	 * @since 2.0.11
999
+	 *
1000 1000
 	 * @param string $context "directory", "single", or "edit"
1001
-     *
1002
-     * @return void
1001
+	 *
1002
+	 * @return void
1003 1003
 	 */
1004 1004
 	function render_field_pickers( $context = 'directory' ) {
1005 1005
 
@@ -1026,7 +1026,7 @@  discard block
 block discarded – undo
1026 1026
             </div>
1027 1027
 			<?php
1028 1028
 		}
1029
-    }
1029
+	}
1030 1030
 
1031 1031
 	/**
1032 1032
 	 * Render the Template Active Areas and configured active fields for a given template id and post id
@@ -1098,59 +1098,59 @@  discard block
 block discarded – undo
1098 1098
 
1099 1099
 		// Don't process any scripts below here if it's not a GravityView page.
1100 1100
 		if( ! gravityview_is_admin_page( $hook, 'single' ) && ! $is_widgets_page ) {
1101
-		    return;
1101
+			return;
1102 1102
 		}
1103 1103
 
1104
-        wp_enqueue_script( 'jquery-ui-datepicker' );
1105
-        wp_enqueue_style( 'gravityview_views_datepicker', plugins_url('assets/css/admin-datepicker.css', GRAVITYVIEW_FILE), GravityView_Plugin::version );
1106
-
1107
-        $script_debug = (defined('SCRIPT_DEBUG') && SCRIPT_DEBUG) ? '' : '.min';
1108
-
1109
-        //enqueue scripts
1110
-        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' ), GravityView_Plugin::version );
1111
-
1112
-        wp_localize_script('gravityview_views_scripts', 'gvGlobals', array(
1113
-            'cookiepath' => COOKIEPATH,
1114
-            'passed_form_id' => (bool) \GV\Utils::_GET( 'form_id' ),
1115
-            'nonce' => wp_create_nonce( 'gravityview_ajaxviews' ),
1116
-            'label_viewname' => __( 'Enter View name here', 'gravityview' ),
1117
-            'label_close' => __( 'Close', 'gravityview' ),
1118
-            'label_cancel' => __( 'Cancel', 'gravityview' ),
1119
-            'label_continue' => __( 'Continue', 'gravityview' ),
1120
-            'label_ok' => __( 'Ok', 'gravityview' ),
1121
-            'label_publisherror' => __( 'Error while creating the View for you. Check the settings or contact GravityView support.', 'gravityview' ),
1122
-            'loading_text' => esc_html__( 'Loading&hellip;', 'gravityview' ),
1123
-            'loading_error' => esc_html__( 'There was an error loading dynamic content.', 'gravityview' ),
1124
-            'field_loaderror' => __( 'Error while adding the field. Please try again or contact GravityView support.', 'gravityview' ),
1125
-            'remove_all_fields' => __( 'Would you like to remove all fields in this zone? (You are seeing this message because you were holding down the ALT key)', 'gravityview' ),
1126
-        ));
1127
-
1128
-        wp_enqueue_style( 'gravityview_views_styles', plugins_url( 'assets/css/admin-views.css', GRAVITYVIEW_FILE ), array('dashicons', 'wp-jquery-ui-dialog' ), GravityView_Plugin::version );
1129
-
1130
-        // Enqueue scripts needed for merge tags
1131
-        self::enqueue_gravity_forms_scripts();
1104
+		wp_enqueue_script( 'jquery-ui-datepicker' );
1105
+		wp_enqueue_style( 'gravityview_views_datepicker', plugins_url('assets/css/admin-datepicker.css', GRAVITYVIEW_FILE), GravityView_Plugin::version );
1106
+
1107
+		$script_debug = (defined('SCRIPT_DEBUG') && SCRIPT_DEBUG) ? '' : '.min';
1108
+
1109
+		//enqueue scripts
1110
+		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' ), GravityView_Plugin::version );
1111
+
1112
+		wp_localize_script('gravityview_views_scripts', 'gvGlobals', array(
1113
+			'cookiepath' => COOKIEPATH,
1114
+			'passed_form_id' => (bool) \GV\Utils::_GET( 'form_id' ),
1115
+			'nonce' => wp_create_nonce( 'gravityview_ajaxviews' ),
1116
+			'label_viewname' => __( 'Enter View name here', 'gravityview' ),
1117
+			'label_close' => __( 'Close', 'gravityview' ),
1118
+			'label_cancel' => __( 'Cancel', 'gravityview' ),
1119
+			'label_continue' => __( 'Continue', 'gravityview' ),
1120
+			'label_ok' => __( 'Ok', 'gravityview' ),
1121
+			'label_publisherror' => __( 'Error while creating the View for you. Check the settings or contact GravityView support.', 'gravityview' ),
1122
+			'loading_text' => esc_html__( 'Loading&hellip;', 'gravityview' ),
1123
+			'loading_error' => esc_html__( 'There was an error loading dynamic content.', 'gravityview' ),
1124
+			'field_loaderror' => __( 'Error while adding the field. Please try again or contact GravityView support.', 'gravityview' ),
1125
+			'remove_all_fields' => __( 'Would you like to remove all fields in this zone? (You are seeing this message because you were holding down the ALT key)', 'gravityview' ),
1126
+		));
1127
+
1128
+		wp_enqueue_style( 'gravityview_views_styles', plugins_url( 'assets/css/admin-views.css', GRAVITYVIEW_FILE ), array('dashicons', 'wp-jquery-ui-dialog' ), GravityView_Plugin::version );
1129
+
1130
+		// Enqueue scripts needed for merge tags
1131
+		self::enqueue_gravity_forms_scripts();
1132 1132
 	}
1133 1133
 
1134 1134
 	/**
1135 1135
 	 * Enqueue Gravity Forms scripts, needed for Merge Tags
1136
-     *
1137
-     * @since 1.0.5-beta
1138
-     *
1139
-     * @return void
1136
+	 *
1137
+	 * @since 1.0.5-beta
1138
+	 *
1139
+	 * @return void
1140 1140
 	 */
1141 1141
 	static function enqueue_gravity_forms_scripts() {
1142 1142
 		GFForms::register_scripts();
1143 1143
 
1144 1144
 		$scripts = array(
1145
-		    'sack',
1146
-		    'gform_gravityforms',
1147
-		    'gform_forms',
1148
-		    'gform_form_admin',
1149
-		    'jquery-ui-autocomplete'
1145
+			'sack',
1146
+			'gform_gravityforms',
1147
+			'gform_forms',
1148
+			'gform_form_admin',
1149
+			'jquery-ui-autocomplete'
1150 1150
 		);
1151 1151
 
1152 1152
 		if ( wp_is_mobile() ) {
1153
-		    $scripts[] = 'jquery-touch-punch';
1153
+			$scripts[] = 'jquery-touch-punch';
1154 1154
 		}
1155 1155
 
1156 1156
 		wp_enqueue_script( $scripts );
Please login to merge, or discard this patch.
Spacing   +179 added lines, -179 removed lines patch added patch discarded remove patch
@@ -28,31 +28,31 @@  discard block
 block discarded – undo
28 28
 		add_filter( 'gravityview_blacklist_field_types', array( $this, 'default_field_blacklist' ), 10, 2 );
29 29
 
30 30
 		// Tooltips
31
-		add_filter( 'gform_tooltips', array( $this, 'tooltips') );
31
+		add_filter( 'gform_tooltips', array( $this, 'tooltips' ) );
32 32
 
33 33
 		// adding styles and scripts
34
-		add_action( 'admin_enqueue_scripts', array( 'GravityView_Admin_Views', 'add_scripts_and_styles'), 999 );
35
-		add_filter( 'gform_noconflict_styles', array( $this, 'register_no_conflict') );
36
-		add_filter( 'gform_noconflict_scripts', array( $this, 'register_no_conflict') );
37
-		add_filter( 'gravityview_noconflict_styles', array( $this, 'register_no_conflict') );
38
-		add_filter( 'gravityview_noconflict_scripts', array( $this, 'register_no_conflict') );
39
-
40
-		add_action( 'gravityview_render_directory_active_areas', array( $this, 'render_directory_active_areas'), 10, 4 );
41
-		add_action( 'gravityview_render_widgets_active_areas', array( $this, 'render_widgets_active_areas'), 10, 3 );
42
-		add_action( 'gravityview_render_field_pickers', array( $this, 'render_field_pickers') );
43
-		add_action( 'gravityview_render_available_fields', array( $this, 'render_available_fields'), 10, 2 );
44
-		add_action( 'gravityview_render_available_widgets', array( $this, 'render_available_widgets') );
45
-		add_action( 'gravityview_render_active_areas', array( $this, 'render_active_areas'), 10, 5 );
34
+		add_action( 'admin_enqueue_scripts', array( 'GravityView_Admin_Views', 'add_scripts_and_styles' ), 999 );
35
+		add_filter( 'gform_noconflict_styles', array( $this, 'register_no_conflict' ) );
36
+		add_filter( 'gform_noconflict_scripts', array( $this, 'register_no_conflict' ) );
37
+		add_filter( 'gravityview_noconflict_styles', array( $this, 'register_no_conflict' ) );
38
+		add_filter( 'gravityview_noconflict_scripts', array( $this, 'register_no_conflict' ) );
39
+
40
+		add_action( 'gravityview_render_directory_active_areas', array( $this, 'render_directory_active_areas' ), 10, 4 );
41
+		add_action( 'gravityview_render_widgets_active_areas', array( $this, 'render_widgets_active_areas' ), 10, 3 );
42
+		add_action( 'gravityview_render_field_pickers', array( $this, 'render_field_pickers' ) );
43
+		add_action( 'gravityview_render_available_fields', array( $this, 'render_available_fields' ), 10, 2 );
44
+		add_action( 'gravityview_render_available_widgets', array( $this, 'render_available_widgets' ) );
45
+		add_action( 'gravityview_render_active_areas', array( $this, 'render_active_areas' ), 10, 5 );
46 46
 
47 47
 		// @todo check if this hook is needed..
48 48
 		//add_action( 'gravityview_render_field_options', array( $this, 'render_field_options'), 10, 9 );
49 49
 
50 50
 		// Add Connected Form column
51
-		add_filter('manage_gravityview_posts_columns' , array( $this, 'add_post_type_columns' ) );
51
+		add_filter( 'manage_gravityview_posts_columns', array( $this, 'add_post_type_columns' ) );
52 52
 
53 53
 		add_filter( 'gform_toolbar_menu', 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
 
@@ -71,11 +71,11 @@  discard block
 block discarded – undo
71 71
 	 */
72 72
 	function suggest_support_articles( $localization_data = array() ) {
73 73
 
74
-	    if( ! gravityview()->request->is_view() ) {
74
+	    if ( ! gravityview()->request->is_view() ) {
75 75
 	        return $localization_data;
76 76
         }
77 77
 
78
-		$localization_data['suggest'] = array(
78
+		$localization_data[ 'suggest' ] = array(
79 79
             '57ef23539033602e61d4a560',
80 80
             '54c67bb9e4b0512429885513',
81 81
             '54c67bb9e4b0512429885512',
@@ -96,13 +96,13 @@  discard block
 block discarded – undo
96 96
 	public function filter_pre_get_posts_by_gravityview_form_id( &$query ) {
97 97
 		global $pagenow;
98 98
 
99
-		if ( !is_admin() ) {
99
+		if ( ! is_admin() ) {
100 100
 			return;
101 101
 		}
102 102
 
103
-		$form_id = isset( $_GET['gravityview_form_id'] ) ? (int) $_GET['gravityview_form_id'] : false;
103
+		$form_id = isset( $_GET[ 'gravityview_form_id' ] ) ? (int)$_GET[ 'gravityview_form_id' ] : false;
104 104
 
105
-		if( 'edit.php' !== $pagenow || ! $form_id || ! isset( $query->query_vars[ 'post_type' ] ) ) {
105
+		if ( 'edit.php' !== $pagenow || ! $form_id || ! isset( $query->query_vars[ 'post_type' ] ) ) {
106 106
 			return;
107 107
 		}
108 108
 
@@ -119,18 +119,18 @@  discard block
 block discarded – undo
119 119
 	function add_view_dropdown() {
120 120
 		$current_screen = get_current_screen();
121 121
 
122
-		if( 'gravityview' !== $current_screen->post_type ) {
122
+		if ( 'gravityview' !== $current_screen->post_type ) {
123 123
 			return;
124 124
 		}
125 125
 
126 126
 		$forms = gravityview_get_forms();
127 127
 		$current_form = \GV\Utils::_GET( 'gravityview_form_id' );
128 128
 		// If there are no forms to select, show no forms.
129
-		if( !empty( $forms ) ) { ?>
129
+		if ( ! empty( $forms ) ) { ?>
130 130
 			<select name="gravityview_form_id" id="gravityview_form_id">
131 131
 				<option value="" <?php selected( '', $current_form, true ); ?>><?php esc_html_e( 'All forms', 'gravityview' ); ?></option>
132
-				<?php foreach( $forms as $form ) { ?>
133
-					<option value="<?php echo $form['id']; ?>" <?php selected( $form['id'], $current_form, true ); ?>><?php echo esc_html( $form['title'] ); ?></option>
132
+				<?php foreach ( $forms as $form ) { ?>
133
+					<option value="<?php echo $form[ 'id' ]; ?>" <?php selected( $form[ 'id' ], $current_form, true ); ?>><?php echo esc_html( $form[ 'title' ] ); ?></option>
134 134
 				<?php } ?>
135 135
 			</select>
136 136
 		<?php }
@@ -143,7 +143,7 @@  discard block
 block discarded – undo
143 143
 	 */
144 144
 	public static function render_setting_row( $key = '', $current_settings = array(), $override_input = null, $name = 'template_settings[%s]', $id = 'gravityview_se_%s' ) {
145 145
 		_deprecated_function( 'GravityView_Admin_Views::render_setting_row', '1.1.7', 'GravityView_Render_Settings::render_setting_row' );
146
-		GravityView_Render_Settings::render_setting_row( $key, $current_settings, $override_input, $name , $id );
146
+		GravityView_Render_Settings::render_setting_row( $key, $current_settings, $override_input, $name, $id );
147 147
 	}
148 148
 
149 149
 	/**
@@ -166,9 +166,9 @@  discard block
 block discarded – undo
166 166
 
167 167
 		$connected_views = gravityview_get_connected_views( $id, array( 'post_status' => 'any' ) );
168 168
 
169
-		if( empty( $connected_views ) ) {
169
+		if ( empty( $connected_views ) ) {
170 170
 
171
-		    $menu_items['gravityview'] = array(
171
+		    $menu_items[ 'gravityview' ] = array(
172 172
 				'label'          => esc_attr__( 'Create a View', 'gravityview' ),
173 173
 				'icon'           => '<i class="fa fa-lg gv-icon-astronaut-head gv-icon"></i>',
174 174
 				'title'          => esc_attr__( 'Create a View using this form as a data source', 'gravityview' ),
@@ -184,22 +184,22 @@  discard block
 block discarded – undo
184 184
 		$sub_menu_items = array();
185 185
 		foreach ( (array)$connected_views as $view ) {
186 186
 
187
-			if( ! GVCommon::has_cap( 'edit_gravityview', $view->ID ) ) {
187
+			if ( ! GVCommon::has_cap( 'edit_gravityview', $view->ID ) ) {
188 188
 				continue;
189 189
 			}
190 190
 
191
-			$label = empty( $view->post_title ) ? sprintf( __('No Title (View #%d)', 'gravityview' ), $view->ID ) : $view->post_title;
191
+			$label = empty( $view->post_title ) ? sprintf( __( 'No Title (View #%d)', 'gravityview' ), $view->ID ) : $view->post_title;
192 192
 
193
-			$sub_menu_items[] = array(
193
+			$sub_menu_items[ ] = array(
194 194
 				'label' => esc_attr( $label ),
195
-				'url' => admin_url( 'post.php?action=edit&post='.$view->ID ),
195
+				'url' => admin_url( 'post.php?action=edit&post=' . $view->ID ),
196 196
 			);
197 197
 		}
198 198
 
199 199
 		// If there were no items added, then let's create the parent menu
200
-		if( $sub_menu_items ) {
200
+		if ( $sub_menu_items ) {
201 201
 
202
-		    $sub_menu_items[] = array(
202
+		    $sub_menu_items[ ] = array(
203 203
 			    'label' => esc_attr__( 'Create a View', 'gravityview' ),
204 204
                 'link_class' => 'gv-create-view',
205 205
 			    'title' => esc_attr__( 'Create a View using this form as a data source', 'gravityview' ),
@@ -208,14 +208,14 @@  discard block
 block discarded – undo
208 208
             );
209 209
 
210 210
 			// Make sure Gravity Forms uses the submenu; if there's only one item, it uses a link instead of a dropdown
211
-			$sub_menu_items[] = array(
211
+			$sub_menu_items[ ] = array(
212 212
 				'url' => '#',
213 213
 				'label' => '',
214 214
 				'menu_class' => 'hidden',
215 215
 				'capabilities' => '',
216 216
 			);
217 217
 
218
-			$menu_items['gravityview'] = array(
218
+			$menu_items[ 'gravityview' ] = array(
219 219
 				'label'          => __( 'Connected Views', 'gravityview' ),
220 220
 				'icon'           => '<i class="fa fa-lg gv-icon-astronaut-head gv-icon"></i>',
221 221
 				'title'          => __( 'GravityView Views using this form as a data source', 'gravityview' ),
@@ -244,8 +244,8 @@  discard block
 block discarded – undo
244 244
 		$add = array( 'captcha', 'page' );
245 245
 
246 246
 		// Don't allowing editing the following values:
247
-		if( $context === 'edit' ) {
248
-			$add[] = 'post_id';
247
+		if ( $context === 'edit' ) {
248
+			$add[ ] = 'post_id';
249 249
 		}
250 250
 
251 251
 		$return = array_merge( $array, $add );
@@ -268,32 +268,32 @@  discard block
 block discarded – undo
268 268
 		foreach ( $default_args as $key => $arg ) {
269 269
 
270 270
 			// If an arg has `tooltip` defined, but it's false, don't display a tooltip
271
-			if( isset( $arg['tooltip'] ) && empty( $arg['tooltip'] ) ) { continue; }
271
+			if ( isset( $arg[ 'tooltip' ] ) && empty( $arg[ 'tooltip' ] ) ) { continue; }
272 272
 
273 273
 			// By default, use `tooltip` if defined.
274
-			$tooltip = empty( $arg['tooltip'] ) ? NULL : $arg['tooltip'];
274
+			$tooltip = empty( $arg[ 'tooltip' ] ) ? NULL : $arg[ 'tooltip' ];
275 275
 
276 276
 			// Otherwise, use the description as a tooltip.
277
-			if( empty( $tooltip ) && !empty( $arg['desc'] ) ) {
278
-				$tooltip = $arg['desc'];
277
+			if ( empty( $tooltip ) && ! empty( $arg[ 'desc' ] ) ) {
278
+				$tooltip = $arg[ 'desc' ];
279 279
 			}
280 280
 
281 281
 			// If there's no tooltip set, continue
282
-			if( empty( $tooltip ) ) {
282
+			if ( empty( $tooltip ) ) {
283 283
 				continue;
284 284
 			}
285 285
 
286 286
 			// Add the tooltip
287
-			$gv_tooltips[ 'gv_'.$key ] = array(
288
-				'title'	=> $arg['label'],
287
+			$gv_tooltips[ 'gv_' . $key ] = array(
288
+				'title'	=> $arg[ 'label' ],
289 289
 				'value'	=> $tooltip,
290 290
 			);
291 291
 
292 292
 		}
293 293
 
294
-		$gv_tooltips['gv_css_merge_tags'] = array(
295
-			'title' => __('CSS Merge Tags', 'gravityview'),
296
-			'value' => sprintf( __( 'Developers: The CSS classes will be sanitized using the %ssanitize_title_with_dashes()%s function.', 'gravityview'), '<code>', '</code>' )
294
+		$gv_tooltips[ 'gv_css_merge_tags' ] = array(
295
+			'title' => __( 'CSS Merge Tags', 'gravityview' ),
296
+			'value' => sprintf( __( 'Developers: The CSS classes will be sanitized using the %ssanitize_title_with_dashes()%s function.', 'gravityview' ), '<code>', '</code>' )
297 297
 		);
298 298
 
299 299
 		/**
@@ -311,9 +311,9 @@  discard block
 block discarded – undo
311 311
 
312 312
 		foreach ( $gv_tooltips as $key => $tooltip ) {
313 313
 
314
-			$title = empty( $tooltip['title'] ) ? '' : '<h6>'.esc_html( $tooltip['title'] ) .'</h6>';
314
+			$title = empty( $tooltip[ 'title' ] ) ? '' : '<h6>' . esc_html( $tooltip[ 'title' ] ) . '</h6>';
315 315
 
316
-			$tooltips[ $key ] = $title . wpautop( esc_html( $tooltip['value'] ) );
316
+			$tooltips[ $key ] = $title . wpautop( esc_html( $tooltip[ 'value' ] ) );
317 317
 		}
318 318
 
319 319
 		return $tooltips;
@@ -327,7 +327,7 @@  discard block
 block discarded – undo
327 327
 	 *
328 328
 	 * @return void
329 329
 	 */
330
-	public function add_custom_column_content( $column_name = NULL, $post_id )	{
330
+	public function add_custom_column_content( $column_name = NULL, $post_id ) {
331 331
 
332 332
 		$output = '';
333 333
 
@@ -349,7 +349,7 @@  discard block
 block discarded – undo
349 349
 				// Generate backup if label doesn't exist: `example_name` => `Example Name`
350 350
 				$template_id_pretty = ucwords( implode( ' ', explode( '_', $template_id ) ) );
351 351
 
352
-				$output = $template ? $template['label'] : $template_id_pretty;
352
+				$output = $template ? $template[ 'label' ] : $template_id_pretty;
353 353
 
354 354
 				break;
355 355
 
@@ -390,44 +390,44 @@  discard block
 block discarded – undo
390 390
 	static public function get_connected_form_links( $form, $include_form_link = true ) {
391 391
 
392 392
 		// Either the form is empty or the form ID is 0, not yet set.
393
-		if( empty( $form ) ) {
393
+		if ( empty( $form ) ) {
394 394
 			return '';
395 395
 		}
396 396
 
397 397
 		// The $form is passed as the form ID
398
-		if( !is_array( $form ) ) {
398
+		if ( ! is_array( $form ) ) {
399 399
 			$form = gravityview_get_form( $form );
400 400
 		}
401 401
 
402
-		$form_id = $form['id'];
402
+		$form_id = $form[ 'id' ];
403 403
 		$links = array();
404 404
 
405
-		if( GVCommon::has_cap( 'gravityforms_edit_forms' ) ) {
405
+		if ( GVCommon::has_cap( 'gravityforms_edit_forms' ) ) {
406 406
 			$form_url = admin_url( sprintf( 'admin.php?page=gf_edit_forms&amp;id=%d', $form_id ) );
407
-			$form_link = '<strong class="gv-form-title">'.gravityview_get_link( $form_url, $form['title'], 'class=row-title' ).'</strong>';
408
-			$links[] = '<span>'.gravityview_get_link( $form_url, __('Edit Form', 'gravityview') ).'</span>';
407
+			$form_link = '<strong class="gv-form-title">' . gravityview_get_link( $form_url, $form[ 'title' ], 'class=row-title' ) . '</strong>';
408
+			$links[ ] = '<span>' . gravityview_get_link( $form_url, __( 'Edit Form', 'gravityview' ) ) . '</span>';
409 409
 		} else {
410
-			$form_link = '<strong class="gv-form-title">'. esc_html( $form['title'] ). '</strong>';
410
+			$form_link = '<strong class="gv-form-title">' . esc_html( $form[ 'title' ] ) . '</strong>';
411 411
 		}
412 412
 
413
-		if( GVCommon::has_cap( 'gravityforms_view_entries' ) ) {
413
+		if ( GVCommon::has_cap( 'gravityforms_view_entries' ) ) {
414 414
 			$entries_url = admin_url( sprintf( 'admin.php?page=gf_entries&amp;id=%d', $form_id ) );
415
-			$links[] = '<span>'.gravityview_get_link( $entries_url, __('Entries', 'gravityview') ).'</span>';
415
+			$links[ ] = '<span>' . gravityview_get_link( $entries_url, __( 'Entries', 'gravityview' ) ) . '</span>';
416 416
 		}
417 417
 
418
-		if( GVCommon::has_cap( array( 'gravityforms_edit_settings', 'gravityview_view_settings' ) ) ) {
418
+		if ( GVCommon::has_cap( array( 'gravityforms_edit_settings', 'gravityview_view_settings' ) ) ) {
419 419
 			$settings_url = admin_url( sprintf( 'admin.php?page=gf_edit_forms&amp;view=settings&amp;id=%d', $form_id ) );
420
-			$links[] = '<span>'.gravityview_get_link( $settings_url, __('Settings', 'gravityview'), 'title='.__('Edit settings for this form', 'gravityview') ).'</span>';
420
+			$links[ ] = '<span>' . gravityview_get_link( $settings_url, __( 'Settings', 'gravityview' ), 'title=' . __( 'Edit settings for this form', 'gravityview' ) ) . '</span>';
421 421
 		}
422 422
 
423
-		if( GVCommon::has_cap( array("gravityforms_edit_forms", "gravityforms_create_form", "gravityforms_preview_forms") ) ) {
423
+		if ( GVCommon::has_cap( array( "gravityforms_edit_forms", "gravityforms_create_form", "gravityforms_preview_forms" ) ) ) {
424 424
 			$preview_url = site_url( sprintf( '?gf_page=preview&amp;id=%d', $form_id ) );
425
-			$links[] = '<span>'.gravityview_get_link( $preview_url, __('Preview Form', 'gravityview'), 'title='.__('Preview this form', 'gravityview') ).'</span>';
425
+			$links[ ] = '<span>' . gravityview_get_link( $preview_url, __( 'Preview Form', 'gravityview' ), 'title=' . __( 'Preview this form', 'gravityview' ) ) . '</span>';
426 426
 		}
427 427
 
428 428
 		$output = '';
429 429
 
430
-		if( !empty( $include_form_link ) ) {
430
+		if ( ! empty( $include_form_link ) ) {
431 431
 			$output .= $form_link;
432 432
 		}
433 433
 
@@ -439,7 +439,7 @@  discard block
 block discarded – undo
439 439
 		 */
440 440
 		$links = apply_filters( 'gravityview_connected_form_links', $links, $form );
441 441
 
442
-		$output .= '<div class="row-actions">'. implode( ' | ', $links ) .'</div>';
442
+		$output .= '<div class="row-actions">' . implode( ' | ', $links ) . '</div>';
443 443
 
444 444
 		return $output;
445 445
 	}
@@ -453,8 +453,8 @@  discard block
 block discarded – undo
453 453
 		// Get the date column and save it for later to add back in.
454 454
 		// This adds it after the Data Source column.
455 455
 		// This way, we don't need to do array_slice, array_merge, etc.
456
-		$date = $columns['date'];
457
-		unset( $columns['date'] );
456
+		$date = $columns[ 'date' ];
457
+		unset( $columns[ 'date' ] );
458 458
 
459 459
 		$data_source_required_caps = array(
460 460
 			'gravityforms_edit_forms',
@@ -465,14 +465,14 @@  discard block
 block discarded – undo
465 465
 			'gravityforms_preview_forms',
466 466
 		);
467 467
 
468
-		if( GVCommon::has_cap( $data_source_required_caps ) ) {
469
-			$columns['gv_connected_form'] = __( 'Data Source', 'gravityview' );
468
+		if ( GVCommon::has_cap( $data_source_required_caps ) ) {
469
+			$columns[ 'gv_connected_form' ] = __( 'Data Source', 'gravityview' );
470 470
 		}
471 471
 
472
-		$columns['gv_template'] = _x( 'Template', 'Column title that shows what template is being used for Views', 'gravityview' );
472
+		$columns[ 'gv_template' ] = _x( 'Template', 'Column title that shows what template is being used for Views', 'gravityview' );
473 473
 
474 474
 		// Add the date back in.
475
-		$columns['date'] = $date;
475
+		$columns[ 'date' ] = $date;
476 476
 
477 477
 		return $columns;
478 478
 	}
@@ -486,12 +486,12 @@  discard block
 block discarded – undo
486 486
 	 */
487 487
 	function save_postdata( $post_id ) {
488 488
 
489
-		if( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ){
489
+		if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) {
490 490
 			return;
491 491
 		}
492 492
 
493 493
 		// validate post_type
494
-		if ( ! isset( $_POST['post_type'] ) || 'gravityview' != $_POST['post_type'] ) {
494
+		if ( ! isset( $_POST[ 'post_type' ] ) || 'gravityview' != $_POST[ 'post_type' ] ) {
495 495
 			return;
496 496
 		}
497 497
 
@@ -506,64 +506,64 @@  discard block
 block discarded – undo
506 506
 		$statii = array();
507 507
 
508 508
 		// check if this is a start fresh View
509
-		if ( isset( $_POST['gravityview_select_form_nonce'] ) && wp_verify_nonce( $_POST['gravityview_select_form_nonce'], 'gravityview_select_form' ) ) {
509
+		if ( isset( $_POST[ 'gravityview_select_form_nonce' ] ) && wp_verify_nonce( $_POST[ 'gravityview_select_form_nonce' ], 'gravityview_select_form' ) ) {
510 510
 
511
-			$form_id = !empty( $_POST['gravityview_form_id'] ) ? $_POST['gravityview_form_id'] : '';
511
+			$form_id = ! empty( $_POST[ 'gravityview_form_id' ] ) ? $_POST[ 'gravityview_form_id' ] : '';
512 512
 			// save form id
513
-			$statii['form_id'] = update_post_meta( $post_id, '_gravityview_form_id', $form_id );
513
+			$statii[ 'form_id' ] = update_post_meta( $post_id, '_gravityview_form_id', $form_id );
514 514
 
515 515
 		}
516 516
 
517
-		if( false === GVCommon::has_cap( 'gravityforms_create_form' ) && empty( $statii['form_id'] ) ) {
517
+		if ( false === GVCommon::has_cap( 'gravityforms_create_form' ) && empty( $statii[ 'form_id' ] ) ) {
518 518
 			gravityview()->log->error( 'Current user does not have the capability to create a new Form.', array( 'data' => wp_get_current_user() ) );
519 519
 			return;
520 520
 		}
521 521
 
522 522
 		// Was this a start fresh?
523
-		if ( ! empty( $_POST['gravityview_form_id_start_fresh'] ) ) {
524
-			$statii['start_fresh'] = add_post_meta( $post_id, '_gravityview_start_fresh', 1 );
523
+		if ( ! empty( $_POST[ 'gravityview_form_id_start_fresh' ] ) ) {
524
+			$statii[ 'start_fresh' ] = add_post_meta( $post_id, '_gravityview_start_fresh', 1 );
525 525
 		} else {
526
-			$statii['start_fresh'] = delete_post_meta( $post_id, '_gravityview_start_fresh' );
526
+			$statii[ 'start_fresh' ] = delete_post_meta( $post_id, '_gravityview_start_fresh' );
527 527
 		}
528 528
 
529 529
 		// Check if we have a template id
530
-		if ( isset( $_POST['gravityview_select_template_nonce'] ) && wp_verify_nonce( $_POST['gravityview_select_template_nonce'], 'gravityview_select_template' ) ) {
530
+		if ( isset( $_POST[ 'gravityview_select_template_nonce' ] ) && wp_verify_nonce( $_POST[ 'gravityview_select_template_nonce' ], 'gravityview_select_template' ) ) {
531 531
 
532
-			$template_id = !empty( $_POST['gravityview_directory_template'] ) ? $_POST['gravityview_directory_template'] : '';
532
+			$template_id = ! empty( $_POST[ 'gravityview_directory_template' ] ) ? $_POST[ 'gravityview_directory_template' ] : '';
533 533
 
534 534
 			// now save template id
535
-			$statii['directory_template'] = update_post_meta( $post_id, '_gravityview_directory_template', $template_id );
535
+			$statii[ 'directory_template' ] = update_post_meta( $post_id, '_gravityview_directory_template', $template_id );
536 536
 		}
537 537
 
538 538
 
539 539
 		// save View Configuration metabox
540
-		if ( isset( $_POST['gravityview_view_configuration_nonce'] ) && wp_verify_nonce( $_POST['gravityview_view_configuration_nonce'], 'gravityview_view_configuration' ) ) {
540
+		if ( isset( $_POST[ 'gravityview_view_configuration_nonce' ] ) && wp_verify_nonce( $_POST[ 'gravityview_view_configuration_nonce' ], 'gravityview_view_configuration' ) ) {
541 541
 
542 542
 			// template settings
543
-			if( empty( $_POST['template_settings'] ) ) {
544
-				$_POST['template_settings'] = array();
543
+			if ( empty( $_POST[ 'template_settings' ] ) ) {
544
+				$_POST[ 'template_settings' ] = array();
545 545
 			}
546
-			$statii['template_settings'] = update_post_meta( $post_id, '_gravityview_template_settings', $_POST['template_settings'] );
546
+			$statii[ 'template_settings' ] = update_post_meta( $post_id, '_gravityview_template_settings', $_POST[ 'template_settings' ] );
547 547
 
548 548
 			$fields = array();
549 549
 
550 550
 			// Directory&single Visible Fields
551
-			if( !empty( $preset_fields ) ) {
551
+			if ( ! empty( $preset_fields ) ) {
552 552
 
553 553
 				$fields = $preset_fields;
554 554
 
555
-			} elseif( !empty( $_POST['gv_fields'] ) ) {
555
+			} elseif ( ! empty( $_POST[ 'gv_fields' ] ) ) {
556 556
 				$fields = _gravityview_process_posted_fields();
557 557
 			}
558 558
 
559 559
 			$fields = map_deep( $fields, 'addslashes' );
560
-			$statii['directory_fields'] = update_post_meta( $post_id, '_gravityview_directory_fields', $fields );
560
+			$statii[ 'directory_fields' ] = update_post_meta( $post_id, '_gravityview_directory_fields', $fields );
561 561
 
562 562
 			// Directory Visible Widgets
563
-			if( empty( $_POST['widgets'] ) ) {
564
-				$_POST['widgets'] = array();
563
+			if ( empty( $_POST[ 'widgets' ] ) ) {
564
+				$_POST[ 'widgets' ] = array();
565 565
 			}
566
-			$statii['directory_widgets'] = gravityview_set_directory_widgets( $post_id, $_POST['widgets'] );
566
+			$statii[ 'directory_widgets' ] = gravityview_set_directory_widgets( $post_id, $_POST[ 'widgets' ] );
567 567
 
568 568
 		} // end save view configuration
569 569
 
@@ -573,7 +573,7 @@  discard block
 block discarded – undo
573 573
 		 * @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.
574 574
 		 * @since 1.17.2
575 575
 		 */
576
-		do_action('gravityview_view_saved', $post_id, $statii );
576
+		do_action( 'gravityview_view_saved', $post_id, $statii );
577 577
 
578 578
 		gravityview()->log->debug( '[save_postdata] Update Post Meta Statuses (also returns false if nothing changed)', array( 'data' => array_map( 'intval', $statii ) ) );
579 579
 	}
@@ -617,20 +617,20 @@  discard block
 block discarded – undo
617 617
 
618 618
 		$output = '';
619 619
 
620
-		if( !empty( $fields ) ) {
620
+		if ( ! empty( $fields ) ) {
621 621
 
622
-			foreach( $fields as $id => $details ) {
622
+			foreach ( $fields as $id => $details ) {
623 623
 
624
-				if( in_array( $details['type'], (array) $blacklist_field_types ) ) {
624
+				if ( in_array( $details[ 'type' ], (array)$blacklist_field_types ) ) {
625 625
 					continue;
626 626
 				}
627 627
 
628 628
 				// Edit mode only allows editing the parent fields, not single inputs.
629
-				if( $context === 'edit' && !empty( $details['parent'] ) ) {
629
+				if ( $context === 'edit' && ! empty( $details[ 'parent' ] ) ) {
630 630
 					continue;
631 631
 				}
632 632
 
633
-				$output .= new GravityView_Admin_View_Field( $details['label'], $id, $details, $settings = array(), $form );
633
+				$output .= new GravityView_Admin_View_Field( $details[ 'label' ], $id, $details, $settings = array(), $form );
634 634
 
635 635
 			} // End foreach
636 636
 		}
@@ -638,7 +638,7 @@  discard block
 block discarded – undo
638 638
 		echo $output;
639 639
 
640 640
 		// For the EDIT view we only want to allow the form fields.
641
-		if( $context === 'edit' ) {
641
+		if ( $context === 'edit' ) {
642 642
 			return;
643 643
 		}
644 644
 
@@ -662,16 +662,16 @@  discard block
 block discarded – undo
662 662
 		$additional_fields = apply_filters( 'gravityview_additional_fields', array(
663 663
 			array(
664 664
 				'label_text' => __( '+ Add All Fields', 'gravityview' ),
665
-				'desc' => __('Add all the available fields at once.', 'gravityview'),
665
+				'desc' => __( 'Add all the available fields at once.', 'gravityview' ),
666 666
 				'field_id' => 'all-fields',
667 667
 				'label_type' => 'field',
668 668
 				'input_type' => NULL,
669 669
 				'field_options' => NULL,
670 670
 				'settings_html'	=> NULL,
671 671
 			)
672
-		));
672
+		) );
673 673
 
674
-		if( !empty( $additional_fields )) {
674
+		if ( ! empty( $additional_fields ) ) {
675 675
 			foreach ( (array)$additional_fields as $item ) {
676 676
 
677 677
 				// Prevent items from not having index set
@@ -682,16 +682,16 @@  discard block
 block discarded – undo
682 682
 					'input_type' => NULL,
683 683
 					'field_options' => NULL,
684 684
 					'settings_html'	=> NULL,
685
-				));
685
+				) );
686 686
 
687 687
 				// Backward compat.
688
-				if( !empty( $item['field_options'] ) ) {
688
+				if ( ! empty( $item[ 'field_options' ] ) ) {
689 689
 					// Use settings_html from now on.
690
-					$item['settings_html'] = $item['field_options'];
690
+					$item[ 'settings_html' ] = $item[ 'field_options' ];
691 691
 				}
692 692
 
693 693
 				// Render a label for each of them
694
-				echo new GravityView_Admin_View_Field( $item['label_text'], $item['field_id'], $item, $settings = array(), $form );
694
+				echo new GravityView_Admin_View_Field( $item[ 'label_text' ], $item[ 'field_id' ], $item, $settings = array(), $form );
695 695
 
696 696
 			}
697 697
 		}
@@ -704,54 +704,54 @@  discard block
 block discarded – undo
704 704
 	 * @param  string $zone   Either 'single', 'directory', 'header', 'footer'
705 705
 	 * @return array
706 706
 	 */
707
-	function get_entry_default_fields($form, $zone) {
707
+	function get_entry_default_fields( $form, $zone ) {
708 708
 
709 709
 		$entry_default_fields = array();
710 710
 
711
-		if( in_array( $zone, array( 'directory', 'single' ) ) ) {
711
+		if ( in_array( $zone, array( 'directory', 'single' ) ) ) {
712 712
 
713 713
 			$entry_default_fields = array(
714 714
 				'id' => array(
715
-					'label' => __('Entry ID', 'gravityview'),
715
+					'label' => __( 'Entry ID', 'gravityview' ),
716 716
 					'type' => 'id',
717
-					'desc'	=> __('The unique ID of the entry.', 'gravityview'),
717
+					'desc'	=> __( 'The unique ID of the entry.', 'gravityview' ),
718 718
 				),
719 719
 				'date_created' => array(
720
-					'label' => __('Entry Date', 'gravityview'),
721
-					'desc'	=> __('The date the entry was created.', 'gravityview'),
720
+					'label' => __( 'Entry Date', 'gravityview' ),
721
+					'desc'	=> __( 'The date the entry was created.', 'gravityview' ),
722 722
 					'type' => 'date_created',
723 723
 				),
724 724
 				'source_url' => array(
725
-					'label' => __('Source URL', 'gravityview'),
725
+					'label' => __( 'Source URL', 'gravityview' ),
726 726
 					'type' => 'source_url',
727
-					'desc'	=> __('The URL of the page where the form was submitted.', 'gravityview'),
727
+					'desc'	=> __( 'The URL of the page where the form was submitted.', 'gravityview' ),
728 728
 				),
729 729
 				'ip' => array(
730
-					'label' => __('User IP', 'gravityview'),
730
+					'label' => __( 'User IP', 'gravityview' ),
731 731
 					'type' => 'ip',
732
-					'desc'	=> __('The IP Address of the user who created the entry.', 'gravityview'),
732
+					'desc'	=> __( 'The IP Address of the user who created the entry.', 'gravityview' ),
733 733
 				),
734 734
 				'created_by' => array(
735
-					'label' => __('User', 'gravityview'),
735
+					'label' => __( 'User', 'gravityview' ),
736 736
 					'type' => 'created_by',
737
-					'desc'	=> __('Details of the logged-in user who created the entry (if any).', 'gravityview'),
737
+					'desc'	=> __( 'Details of the logged-in user who created the entry (if any).', 'gravityview' ),
738 738
 				),
739 739
 
740 740
 				/**
741 741
 				 * @since 1.7.2
742 742
 				 */
743 743
 			    'other_entries' => array(
744
-				    'label'	=> __('Other Entries', 'gravityview'),
744
+				    'label'	=> __( 'Other Entries', 'gravityview' ),
745 745
 				    'type'	=> 'other_entries',
746
-				    'desc'	=> __('Display other entries created by the entry creator.', 'gravityview'),
746
+				    'desc'	=> __( 'Display other entries created by the entry creator.', 'gravityview' ),
747 747
 			    ),
748 748
 	        );
749 749
 
750
-			if( 'single' !== $zone) {
750
+			if ( 'single' !== $zone ) {
751 751
 
752
-				$entry_default_fields['entry_link'] = array(
753
-					'label' => __('Link to Entry', 'gravityview'),
754
-					'desc'	=> __('A dedicated link to the single entry with customizable text.', 'gravityview'),
752
+				$entry_default_fields[ 'entry_link' ] = array(
753
+					'label' => __( 'Link to Entry', 'gravityview' ),
754
+					'desc'	=> __( 'A dedicated link to the single entry with customizable text.', 'gravityview' ),
755 755
 					'type' => 'entry_link',
756 756
 				);
757 757
 			}
@@ -761,10 +761,10 @@  discard block
 block discarded – undo
761 761
 		/**
762 762
 		 * @since  1.2
763 763
 		 */
764
-		$entry_default_fields['custom']	= array(
765
-			'label'	=> __('Custom Content', 'gravityview'),
764
+		$entry_default_fields[ 'custom' ] = array(
765
+			'label'	=> __( 'Custom Content', 'gravityview' ),
766 766
 			'type'	=> 'custom',
767
-			'desc'	=> __('Insert custom text or HTML.', 'gravityview'),
767
+			'desc'	=> __( 'Insert custom text or HTML.', 'gravityview' ),
768 768
 		);
769 769
 
770 770
 		/**
@@ -773,7 +773,7 @@  discard block
 block discarded – undo
773 773
 		 * @param  string|array $form form_ID or form object
774 774
 		 * @param  string $zone   Either 'single', 'directory', 'header', 'footer'
775 775
 		 */
776
-		return apply_filters( 'gravityview_entry_default_fields', $entry_default_fields, $form, $zone);
776
+		return apply_filters( 'gravityview_entry_default_fields', $entry_default_fields, $form, $zone );
777 777
 	}
778 778
 
779 779
 	/**
@@ -784,7 +784,7 @@  discard block
 block discarded – undo
784 784
 	 */
785 785
 	function get_available_fields( $form = '', $zone = NULL ) {
786 786
 
787
-		if( empty( $form ) ) {
787
+		if ( empty( $form ) ) {
788 788
 			gravityview()->log->error( '$form is empty' );
789 789
 			return array();
790 790
 		}
@@ -793,7 +793,7 @@  discard block
 block discarded – undo
793 793
 		$fields = gravityview_get_form_fields( $form, true );
794 794
 
795 795
 		// get meta fields ( only if form was already created )
796
-		if( !is_array( $form ) ) {
796
+		if ( ! is_array( $form ) ) {
797 797
 			$meta_fields = gravityview_get_entry_meta( $form );
798 798
 		} else {
799 799
 			$meta_fields = array();
@@ -806,7 +806,7 @@  discard block
 block discarded – undo
806 806
 		$fields = $fields + $meta_fields + $default_fields;
807 807
 
808 808
 		// Move Custom Content to top
809
-		$fields = array( 'custom' => $fields['custom'] ) + $fields;
809
+		$fields = array( 'custom' => $fields[ 'custom' ] ) + $fields;
810 810
 
811 811
 		return $fields;
812 812
 	}
@@ -820,11 +820,11 @@  discard block
 block discarded – undo
820 820
 
821 821
 		$widgets = $this->get_registered_widgets();
822 822
 
823
-		if( !empty( $widgets ) ) {
823
+		if ( ! empty( $widgets ) ) {
824 824
 
825
-			foreach( $widgets as $id => $details ) {
825
+			foreach ( $widgets as $id => $details ) {
826 826
 
827
-				echo new GravityView_Admin_View_Widget( $details['label'], $id, $details );
827
+				echo new GravityView_Admin_View_Widget( $details[ 'label' ], $id, $details );
828 828
 
829 829
 			}
830 830
 		}
@@ -853,7 +853,7 @@  discard block
 block discarded – undo
853 853
 	function render_active_areas( $template_id, $type, $zone, $rows, $values ) {
854 854
 		global $post;
855 855
 
856
-		if( $type === 'widget' ) {
856
+		if ( $type === 'widget' ) {
857 857
 			$button_label = __( 'Add Widget', 'gravityview' );
858 858
 		} else {
859 859
 			$button_label = __( 'Add Field', 'gravityview' );
@@ -865,10 +865,10 @@  discard block
 block discarded – undo
865 865
 		$form_id = null;
866 866
 
867 867
 		// if saved values, get available fields to label everyone
868
-		if( !empty( $values ) && ( !empty( $post->ID ) || !empty( $_POST['template_id'] ) ) ) {
868
+		if ( ! empty( $values ) && ( ! empty( $post->ID ) || ! empty( $_POST[ 'template_id' ] ) ) ) {
869 869
 
870
-			if( !empty( $_POST['template_id'] ) ) {
871
-				$form = GravityView_Ajax::pre_get_form_fields( $_POST['template_id'] );
870
+			if ( ! empty( $_POST[ 'template_id' ] ) ) {
871
+				$form = GravityView_Ajax::pre_get_form_fields( $_POST[ 'template_id' ] );
872 872
 			} else {
873 873
 				$form_id = $form = gravityview_get_form_id( $post->ID );
874 874
 			}
@@ -886,44 +886,44 @@  discard block
 block discarded – undo
886 886
 			}
887 887
 		}
888 888
 
889
-		foreach( $rows as $row ) :
890
-			foreach( $row as $col => $areas ) :
891
-				$column = ($col == '2-2') ? '1-2' : $col; ?>
889
+		foreach ( $rows as $row ) :
890
+			foreach ( $row as $col => $areas ) :
891
+				$column = ( $col == '2-2' ) ? '1-2' : $col; ?>
892 892
 
893 893
 				<div class="gv-grid-col-<?php echo esc_attr( $column ); ?>">
894 894
 
895
-					<?php foreach( $areas as $area ) : 	?>
895
+					<?php foreach ( $areas as $area ) : 	?>
896 896
 
897
-						<div class="gv-droppable-area" data-areaid="<?php echo esc_attr( $zone .'_'. $area['areaid'] ); ?>" data-context="<?php echo esc_attr( $zone ); ?>">
898
-							<div class="active-drop active-drop-<?php echo esc_attr( $type ); ?>" data-areaid="<?php echo esc_attr( $zone .'_'. $area['areaid'] ); ?>">
897
+						<div class="gv-droppable-area" data-areaid="<?php echo esc_attr( $zone . '_' . $area[ 'areaid' ] ); ?>" data-context="<?php echo esc_attr( $zone ); ?>">
898
+							<div class="active-drop active-drop-<?php echo esc_attr( $type ); ?>" data-areaid="<?php echo esc_attr( $zone . '_' . $area[ 'areaid' ] ); ?>">
899 899
 
900 900
 								<?php // render saved fields
901 901
 
902
-								if( ! empty( $values[ $zone .'_'. $area['areaid'] ] ) ) {
902
+								if ( ! empty( $values[ $zone . '_' . $area[ 'areaid' ] ] ) ) {
903 903
 
904
-									foreach( $values[ $zone .'_'. $area['areaid'] ] as $uniqid => $field ) {
904
+									foreach ( $values[ $zone . '_' . $area[ 'areaid' ] ] as $uniqid => $field ) {
905 905
 
906 906
 										// Maybe has a form ID
907
-										$form_id = empty( $field['form_id'] ) ? $form_id : $field['form_id'];
907
+										$form_id = empty( $field[ 'form_id' ] ) ? $form_id : $field[ 'form_id' ];
908 908
 
909 909
 										$input_type = NULL;
910 910
 
911 911
 										if ( $form_id ) {
912
-											$original_item = isset( $available_items[ $form_id ] [ $field['id'] ] ) ? $available_items[ $form_id ] [ $field['id'] ] : false ;
912
+											$original_item = isset( $available_items[ $form_id ] [ $field[ 'id' ] ] ) ? $available_items[ $form_id ] [ $field[ 'id' ] ] : false;
913 913
                                         } else {
914
-											$original_item = isset( $available_items[ $field['id'] ] ) ? $available_items[ $field['id'] ] : false ;
914
+											$original_item = isset( $available_items[ $field[ 'id' ] ] ) ? $available_items[ $field[ 'id' ] ] : false;
915 915
                                         }
916 916
 
917
-										if ( !$original_item ) {
918
-											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 ) ) );
917
+										if ( ! $original_item ) {
918
+											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 ) ) );
919 919
 
920 920
 											$original_item = $field;
921 921
 										} else {
922
-											$input_type = isset( $original_item['type'] ) ? $original_item['type'] : NULL;
922
+											$input_type = isset( $original_item[ 'type' ] ) ? $original_item[ 'type' ] : NULL;
923 923
 										}
924 924
 
925 925
 										// Field options dialog box
926
-										$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 );
926
+										$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 );
927 927
 
928 928
 										$item = array(
929 929
 											'input_type' => $input_type,
@@ -936,23 +936,23 @@  discard block
 block discarded – undo
936 936
 											$item = wp_parse_args( $item, $original_item );
937 937
 										}
938 938
 
939
-										switch( $type ) {
939
+										switch ( $type ) {
940 940
 											case 'widget':
941
-												echo new GravityView_Admin_View_Widget( $item['label'], $field['id'], $item, $field );
941
+												echo new GravityView_Admin_View_Widget( $item[ 'label' ], $field[ 'id' ], $item, $field );
942 942
 												break;
943 943
 											default:
944
-												echo new GravityView_Admin_View_Field( $field['label'], $field['id'], $item, $field, $form_id );
944
+												echo new GravityView_Admin_View_Field( $field[ 'label' ], $field[ 'id' ], $item, $field, $form_id );
945 945
 										}
946 946
 									}
947 947
 
948 948
 								} // End if zone is not empty ?>
949 949
 
950
-								<span class="drop-message"><?php echo sprintf(esc_attr__('"+ %s" or drag existing %ss here.', 'gravityview'), $button_label, $type ); ?></span>
950
+								<span class="drop-message"><?php echo sprintf( esc_attr__( '"+ %s" or drag existing %ss here.', 'gravityview' ), $button_label, $type ); ?></span>
951 951
 							</div>
952 952
 							<div class="gv-droppable-area-action">
953
-								<a href="#" class="gv-add-field button-secondary" title="" data-objecttype="<?php echo esc_attr( $type ); ?>" data-areaid="<?php echo esc_attr( $zone .'_'. $area['areaid'] ); ?>" data-context="<?php echo esc_attr( $zone ); ?>" data-formid="<?php echo $view ? esc_attr( $view->form ? $view->form->ID : '' ) : ''; ?>"><?php echo '+ '.esc_html( $button_label ); ?></a>
953
+								<a href="#" class="gv-add-field button-secondary" title="" data-objecttype="<?php echo esc_attr( $type ); ?>" data-areaid="<?php echo esc_attr( $zone . '_' . $area[ 'areaid' ] ); ?>" data-context="<?php echo esc_attr( $zone ); ?>" data-formid="<?php echo $view ? esc_attr( $view->form ? $view->form->ID : '' ) : ''; ?>"><?php echo '+ ' . esc_html( $button_label ); ?></a>
954 954
 
955
-								<p class="gv-droppable-area-title"><strong><?php echo esc_html( $area['title'] ); ?></strong><?php if( !empty( $area['subtitle'] ) ) { ?><span class="gv-droppable-area-subtitle"> &ndash; <?php echo esc_html( $area['subtitle'] ); ?></span><?php } ?></p>
955
+								<p class="gv-droppable-area-title"><strong><?php echo esc_html( $area[ 'title' ] ); ?></strong><?php if ( ! empty( $area[ 'subtitle' ] ) ) { ?><span class="gv-droppable-area-subtitle"> &ndash; <?php echo esc_html( $area[ 'subtitle' ] ); ?></span><?php } ?></p>
956 956
 							</div>
957 957
 						</div>
958 958
 
@@ -974,7 +974,7 @@  discard block
 block discarded – undo
974 974
 		$default_widget_areas = GravityView_Widget::get_default_widget_areas();
975 975
 
976 976
 		$widgets = array();
977
-		if( !empty( $post_id ) ) {
977
+		if ( ! empty( $post_id ) ) {
978 978
 			$widgets = gravityview_get_directory_widgets( $post_id );
979 979
 		}
980 980
 
@@ -1007,7 +1007,7 @@  discard block
 block discarded – undo
1007 1007
 		// list of available fields to be shown in the popup
1008 1008
 		$forms = gravityview_get_forms( 'any' );
1009 1009
 
1010
-		$form_ids = array_map( function ($form) { return $form['id']; }, $forms);
1010
+		$form_ids = array_map( function( $form ) { return $form[ 'id' ]; }, $forms );
1011 1011
 
1012 1012
 		foreach ( $form_ids as $form_id ) {
1013 1013
 			$filter_field_id = sprintf( 'gv-field-filter-%s-%d', $context, $form_id );
@@ -1020,7 +1020,7 @@  discard block
 block discarded – undo
1020 1020
                 </div>
1021 1021
 
1022 1022
                 <div id="available-fields-<?php echo $filter_field_id; ?>" aria-live="polite" role="listbox">
1023
-                <?php do_action('gravityview_render_available_fields', $form_id, $context ); ?>
1023
+                <?php do_action( 'gravityview_render_available_fields', $form_id, $context ); ?>
1024 1024
                 </div>
1025 1025
 
1026 1026
                 <div class="gv-no-results hidden description"><?php esc_html_e( 'No fields were found matching the search.', 'gravityview' ); ?></div>
@@ -1039,7 +1039,7 @@  discard block
 block discarded – undo
1039 1039
 	 * @return string HTML of the active areas
1040 1040
 	 */
1041 1041
 	function render_directory_active_areas( $template_id = '', $context = 'single', $post_id = '', $echo = false ) {
1042
-		if( empty( $template_id ) ) {
1042
+		if ( empty( $template_id ) ) {
1043 1043
 			gravityview()->log->debug( '[render_directory_active_areas] {template_id} is empty', array( 'template_id' => $template_id ) );
1044 1044
 			return '';
1045 1045
 		}
@@ -1053,12 +1053,12 @@  discard block
 block discarded – undo
1053 1053
 		 */
1054 1054
 		$template_areas = apply_filters( 'gravityview_template_active_areas', array(), $template_id, $context );
1055 1055
 
1056
-		if( empty( $template_areas ) ) {
1056
+		if ( empty( $template_areas ) ) {
1057 1057
 
1058 1058
 			gravityview()->log->debug( '[render_directory_active_areas] No areas defined. Maybe template {template_id} is disabled.', array( 'data' => $template_id ) );
1059 1059
 			$output = '<div>';
1060
-			$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>';
1061
-			$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>';
1060
+			$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>';
1061
+			$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>';
1062 1062
 			$output .= '</div>';
1063 1063
 		} else {
1064 1064
 
@@ -1073,7 +1073,7 @@  discard block
 block discarded – undo
1073 1073
 
1074 1074
 		}
1075 1075
 
1076
-		if( $echo ) {
1076
+		if ( $echo ) {
1077 1077
 			echo $output;
1078 1078
 		}
1079 1079
 
@@ -1093,26 +1093,26 @@  discard block
 block discarded – undo
1093 1093
 		$is_widgets_page = ( $pagenow === 'widgets.php' );
1094 1094
 
1095 1095
 		// Add the GV font (with the Astronaut)
1096
-		wp_enqueue_style( 'gravityview_global', plugins_url('assets/css/admin-global.css', GRAVITYVIEW_FILE), array(), GravityView_Plugin::version );
1096
+		wp_enqueue_style( 'gravityview_global', plugins_url( 'assets/css/admin-global.css', GRAVITYVIEW_FILE ), array(), GravityView_Plugin::version );
1097 1097
 
1098
-		wp_register_script( 'gravityview-jquery-cookie', plugins_url('assets/lib/jquery.cookie/jquery.cookie.min.js', GRAVITYVIEW_FILE), array( 'jquery' ), GravityView_Plugin::version, true );
1098
+		wp_register_script( 'gravityview-jquery-cookie', plugins_url( 'assets/lib/jquery.cookie/jquery.cookie.min.js', GRAVITYVIEW_FILE ), array( 'jquery' ), GravityView_Plugin::version, true );
1099 1099
 
1100 1100
 		// Don't process any scripts below here if it's not a GravityView page.
1101
-		if( ! gravityview_is_admin_page( $hook, 'single' ) && ! $is_widgets_page ) {
1101
+		if ( ! gravityview_is_admin_page( $hook, 'single' ) && ! $is_widgets_page ) {
1102 1102
 		    return;
1103 1103
 		}
1104 1104
 
1105 1105
         wp_enqueue_script( 'jquery-ui-datepicker' );
1106
-        wp_enqueue_style( 'gravityview_views_datepicker', plugins_url('assets/css/admin-datepicker.css', GRAVITYVIEW_FILE), GravityView_Plugin::version );
1106
+        wp_enqueue_style( 'gravityview_views_datepicker', plugins_url( 'assets/css/admin-datepicker.css', GRAVITYVIEW_FILE ), GravityView_Plugin::version );
1107 1107
 
1108
-        $script_debug = (defined('SCRIPT_DEBUG') && SCRIPT_DEBUG) ? '' : '.min';
1108
+        $script_debug = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';
1109 1109
 
1110 1110
         //enqueue scripts
1111 1111
         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' ), GravityView_Plugin::version );
1112 1112
 
1113
-        wp_localize_script('gravityview_views_scripts', 'gvGlobals', array(
1113
+        wp_localize_script( 'gravityview_views_scripts', 'gvGlobals', array(
1114 1114
             'cookiepath' => COOKIEPATH,
1115
-            'passed_form_id' => (bool) \GV\Utils::_GET( 'form_id' ),
1115
+            'passed_form_id' => (bool)\GV\Utils::_GET( 'form_id' ),
1116 1116
             'nonce' => wp_create_nonce( 'gravityview_ajaxviews' ),
1117 1117
             'label_viewname' => __( 'Enter View name here', 'gravityview' ),
1118 1118
             'label_close' => __( 'Close', 'gravityview' ),
@@ -1124,9 +1124,9 @@  discard block
 block discarded – undo
1124 1124
             'loading_error' => esc_html__( 'There was an error loading dynamic content.', 'gravityview' ),
1125 1125
             'field_loaderror' => __( 'Error while adding the field. Please try again or contact GravityView support.', 'gravityview' ),
1126 1126
             'remove_all_fields' => __( 'Would you like to remove all fields in this zone? (You are seeing this message because you were holding down the ALT key)', 'gravityview' ),
1127
-        ));
1127
+        ) );
1128 1128
 
1129
-        wp_enqueue_style( 'gravityview_views_styles', plugins_url( 'assets/css/admin-views.css', GRAVITYVIEW_FILE ), array('dashicons', 'wp-jquery-ui-dialog' ), GravityView_Plugin::version );
1129
+        wp_enqueue_style( 'gravityview_views_styles', plugins_url( 'assets/css/admin-views.css', GRAVITYVIEW_FILE ), array( 'dashicons', 'wp-jquery-ui-dialog' ), GravityView_Plugin::version );
1130 1130
 
1131 1131
         // Enqueue scripts needed for merge tags
1132 1132
         self::enqueue_gravity_forms_scripts();
@@ -1151,7 +1151,7 @@  discard block
 block discarded – undo
1151 1151
 		);
1152 1152
 
1153 1153
 		if ( wp_is_mobile() ) {
1154
-		    $scripts[] = 'jquery-touch-punch';
1154
+		    $scripts[ ] = 'jquery-touch-punch';
1155 1155
 		}
1156 1156
 
1157 1157
 		wp_enqueue_script( $scripts );
Please login to merge, or discard this patch.
includes/widgets/register-gravityview-widgets.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -20,15 +20,15 @@
 block discarded – undo
20 20
  */
21 21
 function gravityview_register_gravityview_widgets() {
22 22
 
23
-	include_once( GRAVITYVIEW_DIR .'includes/widgets/class-gravityview-widget.php' );
23
+	include_once( GRAVITYVIEW_DIR . 'includes/widgets/class-gravityview-widget.php' );
24 24
 
25
-	include_once( GRAVITYVIEW_DIR .'includes/widgets/class-gravityview-widget-pagination-info.php' );
26
-	include_once( GRAVITYVIEW_DIR .'includes/widgets/class-gravityview-widget-page-links.php' );
27
-	include_once( GRAVITYVIEW_DIR .'includes/widgets/class-gravityview-widget-custom-content.php' );
28
-	include_once( GRAVITYVIEW_DIR .'includes/widgets/search-widget/class-search-widget.php' );
25
+	include_once( GRAVITYVIEW_DIR . 'includes/widgets/class-gravityview-widget-pagination-info.php' );
26
+	include_once( GRAVITYVIEW_DIR . 'includes/widgets/class-gravityview-widget-page-links.php' );
27
+	include_once( GRAVITYVIEW_DIR . 'includes/widgets/class-gravityview-widget-custom-content.php' );
28
+	include_once( GRAVITYVIEW_DIR . 'includes/widgets/search-widget/class-search-widget.php' );
29 29
 
30
-	if( class_exists('GFPolls') ) {
31
-		include_once( GRAVITYVIEW_DIR .'includes/widgets/poll/class-gravityview-widget-poll.php' );
30
+	if ( class_exists( 'GFPolls' ) ) {
31
+		include_once( GRAVITYVIEW_DIR . 'includes/widgets/poll/class-gravityview-widget-poll.php' );
32 32
 	}
33 33
 
34 34
 }
Please login to merge, or discard this patch.