@@ -62,7 +62,7 @@ discard block |
||
62 | 62 | // Add the list columns |
63 | 63 | foreach ( $list_fields as $list_field ) { |
64 | 64 | |
65 | - if( empty( $list_field->enableColumns ) ) { |
|
65 | + if ( empty( $list_field->enableColumns ) ) { |
|
66 | 66 | continue; |
67 | 67 | } |
68 | 68 | |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | } |
84 | 84 | |
85 | 85 | // If there are columns, add them under the parent field |
86 | - if( ! empty( $list_columns ) ) { |
|
86 | + if ( ! empty( $list_columns ) ) { |
|
87 | 87 | |
88 | 88 | $index = array_search( $list_field->id, array_keys( $fields ) ) + 1; |
89 | 89 | |
@@ -91,7 +91,7 @@ discard block |
||
91 | 91 | * Merge the $list_columns into the $fields array at $index |
92 | 92 | * @see https://stackoverflow.com/a/1783125 |
93 | 93 | */ |
94 | - $fields = array_slice( $fields, 0, $index, true) + $list_columns + array_slice( $fields, $index, null, true); |
|
94 | + $fields = array_slice( $fields, 0, $index, true ) + $list_columns + array_slice( $fields, $index, null, true ); |
|
95 | 95 | } |
96 | 96 | |
97 | 97 | unset( $list_columns, $index, $input_id ); |
@@ -118,7 +118,7 @@ discard block |
||
118 | 118 | |
119 | 119 | $list_rows = maybe_unserialize( $field_value ); |
120 | 120 | |
121 | - if( ! is_array( $list_rows ) ) { |
|
121 | + if ( ! is_array( $list_rows ) ) { |
|
122 | 122 | do_action( 'gravityview_log_error', __METHOD__ . ' - $field_value did not unserialize', $field_value ); |
123 | 123 | return null; |
124 | 124 | } |
@@ -131,15 +131,15 @@ discard block |
||
131 | 131 | foreach ( $list_row as $column_key => $column_value ) { |
132 | 132 | |
133 | 133 | // If the label of the column matches $column_id, or the numeric key value matches, add the value |
134 | - if( (string)$column_key === (string)$column_id || ( is_numeric( $column_id ) && (int)$column_id === $current_column ) ) { |
|
135 | - $column_values[] = $column_value; |
|
134 | + if ( (string)$column_key === (string)$column_id || ( is_numeric( $column_id ) && (int)$column_id === $current_column ) ) { |
|
135 | + $column_values[ ] = $column_value; |
|
136 | 136 | } |
137 | 137 | $current_column++; |
138 | 138 | } |
139 | 139 | } |
140 | 140 | |
141 | 141 | // Return the array of values |
142 | - if( 'raw' === $format ) { |
|
142 | + if ( 'raw' === $format ) { |
|
143 | 143 | return $column_values; |
144 | 144 | } |
145 | 145 | // Return the Gravity Forms Field output |
@@ -162,22 +162,22 @@ discard block |
||
162 | 162 | */ |
163 | 163 | public function _filter_field_label( $label, $field, $form, $entry ) { |
164 | 164 | |
165 | - $field_object = RGFormsModel::get_field( $form, $field['id'] ); |
|
165 | + $field_object = RGFormsModel::get_field( $form, $field[ 'id' ] ); |
|
166 | 166 | |
167 | 167 | // Not a list field |
168 | - if( ! $field_object || 'list' !== $field_object->type ) { |
|
168 | + if ( ! $field_object || 'list' !== $field_object->type ) { |
|
169 | 169 | return $label; |
170 | 170 | } |
171 | 171 | |
172 | 172 | // Custom label is defined, so use it |
173 | - if( ! empty( $field['custom_label'] ) ) { |
|
173 | + if ( ! empty( $field[ 'custom_label' ] ) ) { |
|
174 | 174 | return $label; |
175 | 175 | } |
176 | 176 | |
177 | - $column_id = gravityview_get_input_id_from_id( $field['id'] ); |
|
177 | + $column_id = gravityview_get_input_id_from_id( $field[ 'id' ] ); |
|
178 | 178 | |
179 | 179 | // Parent field, not column field |
180 | - if( false === $column_id ) { |
|
180 | + if ( false === $column_id ) { |
|
181 | 181 | return $label; |
182 | 182 | } |
183 | 183 | |
@@ -198,7 +198,7 @@ discard block |
||
198 | 198 | public static function get_column_label( GF_Field_List $field, $column_id, $backup_label = '' ) { |
199 | 199 | |
200 | 200 | // Doesn't have columns enabled |
201 | - if( ! isset( $field->choices ) || ! $field->enableColumns ) { |
|
201 | + if ( ! isset( $field->choices ) || ! $field->enableColumns ) { |
|
202 | 202 | return $backup_label; |
203 | 203 | } |
204 | 204 |
@@ -20,12 +20,12 @@ discard block |
||
20 | 20 | |
21 | 21 | function __construct() { |
22 | 22 | |
23 | - add_action( 'media_buttons', array( $this, 'add_shortcode_button'), 30); |
|
23 | + add_action( 'media_buttons', array( $this, 'add_shortcode_button' ), 30 ); |
|
24 | 24 | |
25 | - add_action( 'admin_footer', array( $this, 'add_shortcode_popup') ); |
|
25 | + add_action( 'admin_footer', array( $this, 'add_shortcode_popup' ) ); |
|
26 | 26 | |
27 | 27 | // adding styles and scripts |
28 | - add_action( 'admin_enqueue_scripts', array( $this, 'add_scripts_and_styles') ); |
|
28 | + add_action( 'admin_enqueue_scripts', array( $this, 'add_scripts_and_styles' ) ); |
|
29 | 29 | |
30 | 30 | // ajax - populate sort fields based on the selected view |
31 | 31 | add_action( 'wp_ajax_gv_sortable_fields', array( $this, 'get_sortable_fields' ) ); |
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | */ |
41 | 41 | function is_post_editor_screen() { |
42 | 42 | global $current_screen, $pagenow; |
43 | - return !empty( $current_screen->post_type ) && 'gravityview' != $current_screen->post_type && in_array( $pagenow , array( 'post.php' , 'post-new.php' ) ); |
|
43 | + return ! empty( $current_screen->post_type ) && 'gravityview' != $current_screen->post_type && in_array( $pagenow, array( 'post.php', 'post-new.php' ) ); |
|
44 | 44 | } |
45 | 45 | |
46 | 46 | |
@@ -55,15 +55,15 @@ discard block |
||
55 | 55 | /** |
56 | 56 | * @since 1.15.3 |
57 | 57 | */ |
58 | - if( ! GVCommon::has_cap( array( 'publish_gravityviews' ) ) ) { |
|
58 | + if ( ! GVCommon::has_cap( array( 'publish_gravityviews' ) ) ) { |
|
59 | 59 | return; |
60 | 60 | } |
61 | 61 | |
62 | - if( !$this->is_post_editor_screen() ) { |
|
62 | + if ( ! $this->is_post_editor_screen() ) { |
|
63 | 63 | return; |
64 | 64 | } |
65 | 65 | ?> |
66 | - <a href="#TB_inline?width=600&height=800&inlineId=select_gravityview_view" class="thickbox hide-if-no-js button gform_media_link" id="add_gravityview" title="<?php esc_attr_e("Insert View", 'gravityview'); ?>"><span class="icon gv-icon-astronaut-head"></span><?php esc_html_e( 'Add View', 'gravityview' ); ?></a> |
|
66 | + <a href="#TB_inline?width=600&height=800&inlineId=select_gravityview_view" class="thickbox hide-if-no-js button gform_media_link" id="add_gravityview" title="<?php esc_attr_e( "Insert View", 'gravityview' ); ?>"><span class="icon gv-icon-astronaut-head"></span><?php esc_html_e( 'Add View', 'gravityview' ); ?></a> |
|
67 | 67 | <?php |
68 | 68 | |
69 | 69 | } |
@@ -79,17 +79,17 @@ discard block |
||
79 | 79 | function add_shortcode_popup() { |
80 | 80 | global $post; |
81 | 81 | |
82 | - if( !$this->is_post_editor_screen() ) { |
|
82 | + if ( ! $this->is_post_editor_screen() ) { |
|
83 | 83 | return; |
84 | 84 | } |
85 | 85 | |
86 | - $post_type = get_post_type_object($post->post_type); |
|
86 | + $post_type = get_post_type_object( $post->post_type ); |
|
87 | 87 | |
88 | - $views = get_posts( array('post_type' => 'gravityview', 'posts_per_page' => -1 ) ); |
|
88 | + $views = get_posts( array( 'post_type' => 'gravityview', 'posts_per_page' => -1 ) ); |
|
89 | 89 | |
90 | 90 | // If there are no views set up yet, we get outta here. |
91 | - if( empty( $views ) ) { |
|
92 | - echo '<div id="select_gravityview_view"><div class="wrap">'. GravityView_Post_Types::no_views_text() .'</div></div>'; |
|
91 | + if ( empty( $views ) ) { |
|
92 | + echo '<div id="select_gravityview_view"><div class="wrap">' . GravityView_Post_Types::no_views_text() . '</div></div>'; |
|
93 | 93 | return; |
94 | 94 | } |
95 | 95 | |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | <div class="wrap"> |
100 | 100 | |
101 | 101 | <h2 class=""><?php esc_html_e( 'Embed a View', 'gravityview' ); ?></h2> |
102 | - <p class="subtitle"><?php printf( esc_attr ( __( 'Use this form to embed a View into this %s. %sLearn more about using shortcodes.%s', 'gravityview') ), $post_type->labels->singular_name, '<a href="http://gravityview.co/support/documentation/202934188/" target="_blank">', '</a>' ); ?></p> |
|
102 | + <p class="subtitle"><?php printf( esc_attr( __( 'Use this form to embed a View into this %s. %sLearn more about using shortcodes.%s', 'gravityview' ) ), $post_type->labels->singular_name, '<a href="http://gravityview.co/support/documentation/202934188/" target="_blank">', '</a>' ); ?></p> |
|
103 | 103 | |
104 | 104 | <div> |
105 | 105 | <h3><label for="gravityview_id"><?php esc_html_e( 'Select a View', 'gravityview' ); ?></label></h3> |
@@ -107,9 +107,9 @@ discard block |
||
107 | 107 | <select name="gravityview_id" id="gravityview_id"> |
108 | 108 | <option value=""><?php esc_html_e( '— Select a View to Insert —', 'gravityview' ); ?></option> |
109 | 109 | <?php |
110 | - foreach( $views as $view ) { |
|
111 | - $title = empty( $view->post_title ) ? __('(no title)', 'gravityview') : $view->post_title; |
|
112 | - echo '<option value="'. $view->ID .'">'. esc_html( sprintf('%s #%d', $title, $view->ID ) ) .'</option>'; |
|
110 | + foreach ( $views as $view ) { |
|
111 | + $title = empty( $view->post_title ) ? __( '(no title)', 'gravityview' ) : $view->post_title; |
|
112 | + echo '<option value="' . $view->ID . '">' . esc_html( sprintf( '%s #%d', $title, $view->ID ) ) . '</option>'; |
|
113 | 113 | } |
114 | 114 | ?> |
115 | 115 | </select> |
@@ -125,7 +125,7 @@ discard block |
||
125 | 125 | |
126 | 126 | foreach ( $settings as $key => $setting ) { |
127 | 127 | |
128 | - if( empty( $setting['show_in_shortcode'] ) ) { continue; } |
|
128 | + if ( empty( $setting[ 'show_in_shortcode' ] ) ) { continue; } |
|
129 | 129 | |
130 | 130 | GravityView_Render_Settings::render_setting_row( $key, array(), NULL, 'gravityview_%s', 'gravityview_%s' ); |
131 | 131 | } |
@@ -134,8 +134,8 @@ discard block |
||
134 | 134 | </table> |
135 | 135 | |
136 | 136 | <div class="submit"> |
137 | - <input type="submit" class="button button-primary button-large alignleft hide-if-js" value="<?php esc_attr_e('Insert View', 'gravityview' ); ?>" id="insert_gravityview_view" /> |
|
138 | - <input class="button button-secondary alignright" type="submit" onclick="tb_remove(); return false;" value="<?php esc_attr_e("Cancel", 'gravityview'); ?>" /> |
|
137 | + <input type="submit" class="button button-primary button-large alignleft hide-if-js" value="<?php esc_attr_e( 'Insert View', 'gravityview' ); ?>" id="insert_gravityview_view" /> |
|
138 | + <input class="button button-secondary alignright" type="submit" onclick="tb_remove(); return false;" value="<?php esc_attr_e( "Cancel", 'gravityview' ); ?>" /> |
|
139 | 139 | </div> |
140 | 140 | |
141 | 141 | </div> |
@@ -156,7 +156,7 @@ discard block |
||
156 | 156 | */ |
157 | 157 | function add_scripts_and_styles() { |
158 | 158 | |
159 | - if( ! $this->is_post_editor_screen() ) { |
|
159 | + if ( ! $this->is_post_editor_screen() ) { |
|
160 | 160 | return; |
161 | 161 | } |
162 | 162 | |
@@ -167,22 +167,22 @@ discard block |
||
167 | 167 | |
168 | 168 | $protocol = is_ssl() ? 'https://' : 'http://'; |
169 | 169 | |
170 | - wp_enqueue_style( 'jquery-ui-datepicker', $protocol.'ajax.googleapis.com/ajax/libs/jqueryui/1.8.18/themes/smoothness/jquery-ui.css', array(), GravityView_Plugin::version ); |
|
170 | + wp_enqueue_style( 'jquery-ui-datepicker', $protocol . 'ajax.googleapis.com/ajax/libs/jqueryui/1.8.18/themes/smoothness/jquery-ui.css', array(), GravityView_Plugin::version ); |
|
171 | 171 | |
172 | 172 | //enqueue styles |
173 | - wp_register_style( 'gravityview_postedit_styles', plugins_url('assets/css/admin-post-edit.css', GRAVITYVIEW_FILE), array(), GravityView_Plugin::version ); |
|
173 | + wp_register_style( 'gravityview_postedit_styles', plugins_url( 'assets/css/admin-post-edit.css', GRAVITYVIEW_FILE ), array(), GravityView_Plugin::version ); |
|
174 | 174 | wp_enqueue_style( 'gravityview_postedit_styles' ); |
175 | 175 | |
176 | - $script_debug = (defined('SCRIPT_DEBUG') && SCRIPT_DEBUG) ? '' : '.min'; |
|
176 | + $script_debug = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min'; |
|
177 | 177 | |
178 | 178 | // custom js |
179 | - wp_register_script( 'gravityview_postedit_scripts', plugins_url('assets/js/admin-post-edit'.$script_debug.'.js', GRAVITYVIEW_FILE), array( 'jquery', 'jquery-ui-datepicker' ), GravityView_Plugin::version ); |
|
179 | + wp_register_script( 'gravityview_postedit_scripts', plugins_url( 'assets/js/admin-post-edit' . $script_debug . '.js', GRAVITYVIEW_FILE ), array( 'jquery', 'jquery-ui-datepicker' ), GravityView_Plugin::version ); |
|
180 | 180 | wp_enqueue_script( 'gravityview_postedit_scripts' ); |
181 | - wp_localize_script('gravityview_postedit_scripts', 'gvGlobals', array( |
|
182 | - 'nonce' => wp_create_nonce( 'gravityview_ajaxaddshortcode'), |
|
181 | + wp_localize_script( 'gravityview_postedit_scripts', 'gvGlobals', array( |
|
182 | + 'nonce' => wp_create_nonce( 'gravityview_ajaxaddshortcode' ), |
|
183 | 183 | 'loading_text' => esc_html__( 'Loading…', 'gravityview' ), |
184 | - 'alert_1' => esc_html__( 'Please select a View', 'gravityview'), |
|
185 | - )); |
|
184 | + 'alert_1' => esc_html__( 'Please select a View', 'gravityview' ), |
|
185 | + ) ); |
|
186 | 186 | |
187 | 187 | } |
188 | 188 | |
@@ -198,16 +198,16 @@ discard block |
||
198 | 198 | function get_sortable_fields() { |
199 | 199 | |
200 | 200 | // Not properly formatted request |
201 | - if ( empty( $_POST['viewid'] ) || !is_numeric( $_POST['viewid'] ) ) { |
|
201 | + if ( empty( $_POST[ 'viewid' ] ) || ! is_numeric( $_POST[ 'viewid' ] ) ) { |
|
202 | 202 | exit( false ); |
203 | 203 | } |
204 | 204 | |
205 | 205 | // Not valid request |
206 | - if( empty( $_POST['nonce'] ) || ! wp_verify_nonce( $_POST['nonce'], 'gravityview_ajaxaddshortcode' ) ) { |
|
206 | + if ( empty( $_POST[ 'nonce' ] ) || ! wp_verify_nonce( $_POST[ 'nonce' ], 'gravityview_ajaxaddshortcode' ) ) { |
|
207 | 207 | exit( false ); |
208 | 208 | } |
209 | 209 | |
210 | - $viewid = (int)$_POST['viewid']; |
|
210 | + $viewid = (int)$_POST[ 'viewid' ]; |
|
211 | 211 | |
212 | 212 | // fetch form id assigned to the view |
213 | 213 | $formid = gravityview_get_form_id( $viewid ); |
@@ -38,13 +38,13 @@ discard block |
||
38 | 38 | /** @var WP_Admin_Bar $wp_admin_bar */ |
39 | 39 | global $wp_admin_bar; |
40 | 40 | |
41 | - if( is_admin() ) { |
|
41 | + if ( is_admin() ) { |
|
42 | 42 | return; |
43 | 43 | } |
44 | 44 | |
45 | 45 | $view_data = GravityView_View_Data::getInstance()->get_views(); |
46 | 46 | |
47 | - if( empty( $view_data ) ) { |
|
47 | + if ( empty( $view_data ) ) { |
|
48 | 48 | return; |
49 | 49 | } |
50 | 50 | |
@@ -104,9 +104,9 @@ discard block |
||
104 | 104 | 'parent' => 'gravityview', |
105 | 105 | 'title' => __( 'Edit Entry', 'gravityview' ), |
106 | 106 | 'meta' => array( |
107 | - 'title' => sprintf( __( 'Edit Entry %s', 'gravityview' ), GravityView_API::get_entry_slug( $entry['id'], $entry ) ), |
|
107 | + 'title' => sprintf( __( 'Edit Entry %s', 'gravityview' ), GravityView_API::get_entry_slug( $entry[ 'id' ], $entry ) ), |
|
108 | 108 | ), |
109 | - 'href' => esc_url_raw( admin_url( sprintf( 'admin.php?page=gf_entries&screen_mode=edit&view=entry&id=%d&lid=%d', $entry['form_id'], $entry['id'] ) ) ), |
|
109 | + 'href' => esc_url_raw( admin_url( sprintf( 'admin.php?page=gf_entries&screen_mode=edit&view=entry&id=%d&lid=%d', $entry[ 'form_id' ], $entry[ 'id' ] ) ) ), |
|
110 | 110 | ) ); |
111 | 111 | |
112 | 112 | } |
@@ -122,7 +122,7 @@ discard block |
||
122 | 122 | /** @var WP_Admin_Bar $wp_admin_bar */ |
123 | 123 | global $wp_admin_bar; |
124 | 124 | |
125 | - if( GVCommon::has_cap( array( 'edit_gravityviews', 'edit_gravityview', 'gravityforms_edit_forms' ) ) ) { |
|
125 | + if ( GVCommon::has_cap( array( 'edit_gravityviews', 'edit_gravityview', 'gravityforms_edit_forms' ) ) ) { |
|
126 | 126 | |
127 | 127 | $view_data = GravityView_View_Data::getInstance(); |
128 | 128 | |
@@ -139,32 +139,32 @@ discard block |
||
139 | 139 | $edit_view_title = __( 'Edit View', 'gravityview' ); |
140 | 140 | $edit_form_title = __( 'Edit Form', 'gravityview' ); |
141 | 141 | |
142 | - if( sizeof( $views ) > 1 ) { |
|
143 | - $edit_view_title = sprintf( _x( 'Edit View #%d', 'Edit View with the ID of %d', 'gravityview' ), $view['id'] ); |
|
144 | - $edit_form_title = sprintf( __( 'Edit Form #%d', 'Edit Form with the ID of %d', 'gravityview' ), $view['form_id'] ); |
|
142 | + if ( sizeof( $views ) > 1 ) { |
|
143 | + $edit_view_title = sprintf( _x( 'Edit View #%d', 'Edit View with the ID of %d', 'gravityview' ), $view[ 'id' ] ); |
|
144 | + $edit_form_title = sprintf( __( 'Edit Form #%d', 'Edit Form with the ID of %d', 'gravityview' ), $view[ 'form_id' ] ); |
|
145 | 145 | } |
146 | 146 | |
147 | - if( GVCommon::has_cap( 'edit_gravityview', $view['id'] ) && ! in_array( $view['id'], $added_views ) ) { |
|
147 | + if ( GVCommon::has_cap( 'edit_gravityview', $view[ 'id' ] ) && ! in_array( $view[ 'id' ], $added_views ) ) { |
|
148 | 148 | |
149 | - $added_views[] = $view['id']; |
|
149 | + $added_views[ ] = $view[ 'id' ]; |
|
150 | 150 | |
151 | 151 | $wp_admin_bar->add_menu( array( |
152 | - 'id' => 'edit-view-' . $view['id'], |
|
152 | + 'id' => 'edit-view-' . $view[ 'id' ], |
|
153 | 153 | 'parent' => 'gravityview', |
154 | 154 | 'title' => $edit_view_title, |
155 | - 'href' => esc_url_raw( admin_url( sprintf( 'post.php?post=%d&action=edit', $view['id'] ) ) ), |
|
155 | + 'href' => esc_url_raw( admin_url( sprintf( 'post.php?post=%d&action=edit', $view[ 'id' ] ) ) ), |
|
156 | 156 | ) ); |
157 | 157 | } |
158 | 158 | |
159 | - if ( ! empty( $view['form_id'] ) && GVCommon::has_cap( array( 'gravityforms_edit_forms' ), $view['form_id'] ) && ! in_array( $view['form_id'], $added_forms ) ) { |
|
159 | + if ( ! empty( $view[ 'form_id' ] ) && GVCommon::has_cap( array( 'gravityforms_edit_forms' ), $view[ 'form_id' ] ) && ! in_array( $view[ 'form_id' ], $added_forms ) ) { |
|
160 | 160 | |
161 | - $added_forms[] = $view['form_id']; |
|
161 | + $added_forms[ ] = $view[ 'form_id' ]; |
|
162 | 162 | |
163 | 163 | $wp_admin_bar->add_menu( array( |
164 | - 'id' => 'edit-form-' . $view['form_id'], |
|
164 | + 'id' => 'edit-form-' . $view[ 'form_id' ], |
|
165 | 165 | 'parent' => 'gravityview', |
166 | 166 | 'title' => $edit_form_title, |
167 | - 'href' => esc_url_raw( admin_url( sprintf( 'admin.php?page=gf_edit_forms&id=%d', $view['form_id'] ) ) ), |
|
167 | + 'href' => esc_url_raw( admin_url( sprintf( 'admin.php?page=gf_edit_forms&id=%d', $view[ 'form_id' ] ) ) ), |
|
168 | 168 | ) ); |
169 | 169 | } |
170 | 170 | } |
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | * @return GV_License_Handler |
41 | 41 | */ |
42 | 42 | public static function get_instance( GravityView_Settings $GFAddOn ) { |
43 | - if( empty( self::$instance ) ) { |
|
43 | + if ( empty( self::$instance ) ) { |
|
44 | 44 | self::$instance = new self( $GFAddOn ); |
45 | 45 | } |
46 | 46 | return self::$instance; |
@@ -70,12 +70,12 @@ discard block |
||
70 | 70 | public function refresh_license_status() { |
71 | 71 | |
72 | 72 | // Only perform on GravityView pages |
73 | - if( ! gravityview_is_admin_page() ) { |
|
73 | + if ( ! gravityview_is_admin_page() ) { |
|
74 | 74 | return; |
75 | 75 | } |
76 | 76 | |
77 | 77 | // The transient is fresh; don't fetch. |
78 | - if( $status = get_transient( self::status_transient_key ) ) { |
|
78 | + if ( $status = get_transient( self::status_transient_key ) ) { |
|
79 | 79 | return; |
80 | 80 | } |
81 | 81 | |
@@ -100,37 +100,37 @@ discard block |
||
100 | 100 | $status = trim( $this->Addon->get_app_setting( 'license_key_status' ) ); |
101 | 101 | $key = trim( $this->Addon->get_app_setting( 'license_key' ) ); |
102 | 102 | |
103 | - if( !empty( $key ) ) { |
|
103 | + if ( ! empty( $key ) ) { |
|
104 | 104 | $response = $this->Addon->get_app_setting( 'license_key_response' ); |
105 | - $response = is_array( $response ) ? (object) $response : json_decode( $response ); |
|
105 | + $response = is_array( $response ) ? (object)$response : json_decode( $response ); |
|
106 | 106 | } else { |
107 | 107 | $response = array(); |
108 | 108 | } |
109 | 109 | |
110 | 110 | wp_localize_script( 'gv-admin-edd-license', 'GVGlobals', array( |
111 | 111 | 'license_box' => $this->get_license_message( $response ) |
112 | - )); |
|
112 | + ) ); |
|
113 | 113 | |
114 | 114 | |
115 | 115 | $fields = array( |
116 | 116 | array( |
117 | 117 | 'name' => 'edd-activate', |
118 | - 'value' => __('Activate License', 'gravityview'), |
|
119 | - 'data-pending_text' => __('Verifying license…', 'gravityview'), |
|
118 | + 'value' => __( 'Activate License', 'gravityview' ), |
|
119 | + 'data-pending_text' => __( 'Verifying license…', 'gravityview' ), |
|
120 | 120 | 'data-edd_action' => 'activate_license', |
121 | 121 | 'class' => 'button-primary', |
122 | 122 | ), |
123 | 123 | array( |
124 | 124 | 'name' => 'edd-deactivate', |
125 | - 'value' => __('Deactivate License', 'gravityview'), |
|
126 | - 'data-pending_text' => __('Deactivating license…', 'gravityview'), |
|
125 | + 'value' => __( 'Deactivate License', 'gravityview' ), |
|
126 | + 'data-pending_text' => __( 'Deactivating license…', 'gravityview' ), |
|
127 | 127 | 'data-edd_action' => 'deactivate_license', |
128 | 128 | 'class' => ( empty( $status ) ? 'button-primary hide' : 'button-primary' ), |
129 | 129 | ), |
130 | 130 | array( |
131 | 131 | 'name' => 'edd-check', |
132 | - 'value' => __('Check License', 'gravityview'), |
|
133 | - 'data-pending_text' => __('Verifying license…', 'gravityview'), |
|
132 | + 'value' => __( 'Check License', 'gravityview' ), |
|
133 | + 'data-pending_text' => __( 'Verifying license…', 'gravityview' ), |
|
134 | 134 | 'title' => 'Check the license before saving it', |
135 | 135 | 'data-edd_action' => 'check_license', |
136 | 136 | 'class' => 'button-secondary', |
@@ -140,17 +140,17 @@ discard block |
||
140 | 140 | |
141 | 141 | $class = 'button gv-edd-action'; |
142 | 142 | |
143 | - $class .= ( !empty( $key ) && $status !== 'valid' ) ? '' : ' hide'; |
|
143 | + $class .= ( ! empty( $key ) && $status !== 'valid' ) ? '' : ' hide'; |
|
144 | 144 | |
145 | 145 | $disabled_attribute = GVCommon::has_cap( 'gravityview_edit_settings' ) ? false : 'disabled'; |
146 | 146 | |
147 | 147 | $submit = '<div class="gv-edd-button-wrapper">'; |
148 | 148 | foreach ( $fields as $field ) { |
149 | - $field['type'] = 'button'; |
|
150 | - $field['class'] = isset( $field['class'] ) ? $field['class'] . ' '. $class : $class; |
|
151 | - $field['style'] = 'margin-left: 10px;'; |
|
152 | - if( $disabled_attribute ) { |
|
153 | - $field['disabled'] = $disabled_attribute; |
|
149 | + $field[ 'type' ] = 'button'; |
|
150 | + $field[ 'class' ] = isset( $field[ 'class' ] ) ? $field[ 'class' ] . ' ' . $class : $class; |
|
151 | + $field[ 'style' ] = 'margin-left: 10px;'; |
|
152 | + if ( $disabled_attribute ) { |
|
153 | + $field[ 'disabled' ] = $disabled_attribute; |
|
154 | 154 | } |
155 | 155 | $submit .= $this->Addon->settings_submit( $field, $echo ); |
156 | 156 | } |
@@ -166,8 +166,8 @@ discard block |
||
166 | 166 | */ |
167 | 167 | private function setup_edd() { |
168 | 168 | |
169 | - if( !class_exists('EDD_SL_Plugin_Updater') ) { |
|
170 | - require_once( GRAVITYVIEW_DIR . 'includes/lib/EDD_SL_Plugin_Updater.php'); |
|
169 | + if ( ! class_exists( 'EDD_SL_Plugin_Updater' ) ) { |
|
170 | + require_once( GRAVITYVIEW_DIR . 'includes/lib/EDD_SL_Plugin_Updater.php' ); |
|
171 | 171 | } |
172 | 172 | |
173 | 173 | // setup the updater |
@@ -204,8 +204,8 @@ discard block |
||
204 | 204 | 'url' => home_url(), |
205 | 205 | ); |
206 | 206 | |
207 | - if( !empty( $action ) ) { |
|
208 | - $settings['edd_action'] = esc_attr( $action ); |
|
207 | + if ( ! empty( $action ) ) { |
|
208 | + $settings[ 'edd_action' ] = esc_attr( $action ); |
|
209 | 209 | } |
210 | 210 | |
211 | 211 | $settings = array_map( 'urlencode', $settings ); |
@@ -219,14 +219,14 @@ discard block |
||
219 | 219 | */ |
220 | 220 | private function _license_get_remote_response( $data, $license = '' ) { |
221 | 221 | |
222 | - $api_params = $this->_get_edd_settings( $data['edd_action'], $license ); |
|
222 | + $api_params = $this->_get_edd_settings( $data[ 'edd_action' ], $license ); |
|
223 | 223 | |
224 | 224 | $url = add_query_arg( $api_params, self::url ); |
225 | 225 | |
226 | 226 | $response = wp_remote_get( $url, array( |
227 | 227 | 'timeout' => 15, |
228 | 228 | 'sslverify' => false, |
229 | - )); |
|
229 | + ) ); |
|
230 | 230 | |
231 | 231 | if ( is_wp_error( $response ) ) { |
232 | 232 | return array(); |
@@ -259,11 +259,11 @@ discard block |
||
259 | 259 | */ |
260 | 260 | function get_license_message( $license_data ) { |
261 | 261 | |
262 | - if( empty( $license_data ) ) { |
|
262 | + if ( empty( $license_data ) ) { |
|
263 | 263 | $message = ''; |
264 | 264 | } else { |
265 | 265 | |
266 | - if( ! empty( $license_data->error ) ) { |
|
266 | + if ( ! empty( $license_data->error ) ) { |
|
267 | 267 | $class = 'error'; |
268 | 268 | $string_key = $license_data->error; |
269 | 269 | } else { |
@@ -271,7 +271,7 @@ discard block |
||
271 | 271 | $string_key = $license_data->license; |
272 | 272 | } |
273 | 273 | |
274 | - $message = sprintf( '<p><strong>%s: %s</strong></p>', $this->strings('status'), $this->strings( $string_key, $license_data ) ); |
|
274 | + $message = sprintf( '<p><strong>%s: %s</strong></p>', $this->strings( 'status' ), $this->strings( $string_key, $license_data ) ); |
|
275 | 275 | |
276 | 276 | $message = $this->generate_license_box( $message, $class ); |
277 | 277 | } |
@@ -308,15 +308,15 @@ discard block |
||
308 | 308 | */ |
309 | 309 | public function license_details( $response = array() ) { |
310 | 310 | |
311 | - $response = (array) $response; |
|
311 | + $response = (array)$response; |
|
312 | 312 | |
313 | 313 | $return = ''; |
314 | 314 | $return .= '<span class="gv-license-details" aria-live="polite" aria-busy="false">'; |
315 | 315 | $return .= '<h3>' . esc_html__( 'License Details:', 'gravityview' ) . '</h3>'; |
316 | 316 | |
317 | - if( in_array( rgar( $response, 'license' ), array( 'invalid', 'deactivated' ) ) ) { |
|
318 | - $return .= $this->strings( $response['license'], $response ); |
|
319 | - } elseif( ! empty( $response['license_name'] ) ) { |
|
317 | + if ( in_array( rgar( $response, 'license' ), array( 'invalid', 'deactivated' ) ) ) { |
|
318 | + $return .= $this->strings( $response[ 'license' ], $response ); |
|
319 | + } elseif ( ! empty( $response[ 'license_name' ] ) ) { |
|
320 | 320 | |
321 | 321 | $response_keys = array( |
322 | 322 | 'license_name' => '', |
@@ -331,19 +331,19 @@ discard block |
||
331 | 331 | // Make sure all the keys are set |
332 | 332 | $response = wp_parse_args( $response, $response_keys ); |
333 | 333 | |
334 | - $login_link = sprintf( '<a href="%s" class="howto" rel="external">%s</a>', esc_url( sprintf( 'https://gravityview.co/wp-login.php?username=%s', $response['customer_email'] ) ), esc_html__( 'Access your GravityView account', 'gravityview' ) ); |
|
335 | - $local_text = ( ! empty( $response['is_local'] ) ? '<span class="howto">' . __( 'This development site does not count toward license activation limits', 'gravityview' ) . '</span>' : '' ); |
|
334 | + $login_link = sprintf( '<a href="%s" class="howto" rel="external">%s</a>', esc_url( sprintf( 'https://gravityview.co/wp-login.php?username=%s', $response[ 'customer_email' ] ) ), esc_html__( 'Access your GravityView account', 'gravityview' ) ); |
|
335 | + $local_text = ( ! empty( $response[ 'is_local' ] ) ? '<span class="howto">' . __( 'This development site does not count toward license activation limits', 'gravityview' ) . '</span>' : '' ); |
|
336 | 336 | $details = array( |
337 | - 'license' => sprintf( esc_html__( 'License level: %s', 'gravityview' ), esc_html( $response['license_name'] ), esc_html( $response['license_limit'] ) ), |
|
338 | - 'licensed_to' => sprintf( esc_html_x( 'Licensed to: %1$s (%2$s)', '1: Customer name; 2: Customer email', 'gravityview' ), esc_html__( $response['customer_name'], 'gravityview' ), esc_html__( $response['customer_email'], 'gravityview' ) ) . $login_link, |
|
339 | - 'activations' => sprintf( esc_html__( 'Activations: %d of %s sites', 'gravityview' ), intval( $response['site_count'] ), esc_html( $response['license_limit'] ) ) . $local_text, |
|
340 | - 'expires' => sprintf( esc_html__( 'Renew on: %s', 'gravityview' ), date_i18n( get_option( 'date_format' ), strtotime( $response['expires'] ) - DAY_IN_SECONDS ) ), |
|
341 | - 'upgrade' => $this->get_upgrade_html( $response['upgrades'] ), |
|
337 | + 'license' => sprintf( esc_html__( 'License level: %s', 'gravityview' ), esc_html( $response[ 'license_name' ] ), esc_html( $response[ 'license_limit' ] ) ), |
|
338 | + 'licensed_to' => sprintf( esc_html_x( 'Licensed to: %1$s (%2$s)', '1: Customer name; 2: Customer email', 'gravityview' ), esc_html__( $response[ 'customer_name' ], 'gravityview' ), esc_html__( $response[ 'customer_email' ], 'gravityview' ) ) . $login_link, |
|
339 | + 'activations' => sprintf( esc_html__( 'Activations: %d of %s sites', 'gravityview' ), intval( $response[ 'site_count' ] ), esc_html( $response[ 'license_limit' ] ) ) . $local_text, |
|
340 | + 'expires' => sprintf( esc_html__( 'Renew on: %s', 'gravityview' ), date_i18n( get_option( 'date_format' ), strtotime( $response[ 'expires' ] ) - DAY_IN_SECONDS ) ), |
|
341 | + 'upgrade' => $this->get_upgrade_html( $response[ 'upgrades' ] ), |
|
342 | 342 | ); |
343 | 343 | |
344 | - if ( ! empty( $response['error'] ) && 'expired' === $response['error'] ) { |
|
345 | - unset( $details['upgrade'] ); |
|
346 | - $details['expires'] = '<div class="error inline"><p>' . $this->strings( 'expired', $response ) . '</p></div>'; |
|
344 | + if ( ! empty( $response[ 'error' ] ) && 'expired' === $response[ 'error' ] ) { |
|
345 | + unset( $details[ 'upgrade' ] ); |
|
346 | + $details[ 'expires' ] = '<div class="error inline"><p>' . $this->strings( 'expired', $response ) . '</p></div>'; |
|
347 | 347 | } |
348 | 348 | |
349 | 349 | $return .= '<ul><li>' . implode( '</li><li>', array_filter( $details ) ) . '</li></ul>'; |
@@ -367,11 +367,11 @@ discard block |
||
367 | 367 | |
368 | 368 | $output = ''; |
369 | 369 | |
370 | - if( ! empty( $upgrades ) ) { |
|
370 | + if ( ! empty( $upgrades ) ) { |
|
371 | 371 | |
372 | 372 | $locale_parts = explode( '_', get_locale() ); |
373 | 373 | |
374 | - $is_english = ( 'en' === $locale_parts[0] ); |
|
374 | + $is_english = ( 'en' === $locale_parts[ 0 ] ); |
|
375 | 375 | |
376 | 376 | $output .= '<h4>' . esc_html__( 'Upgrades available:', 'gravityview' ) . '</h4>'; |
377 | 377 | |
@@ -379,14 +379,14 @@ discard block |
||
379 | 379 | |
380 | 380 | foreach ( $upgrades as $upgrade_id => $upgrade ) { |
381 | 381 | |
382 | - $upgrade = (object) $upgrade; |
|
382 | + $upgrade = (object)$upgrade; |
|
383 | 383 | |
384 | 384 | $anchor_text = sprintf( esc_html_x( 'Upgrade to %1$s for %2$s', '1: GravityView upgrade name, 2: Cost of upgrade', 'gravityview' ), esc_attr( $upgrade->name ), esc_attr( $upgrade->price ) ); |
385 | 385 | |
386 | - if( $is_english && isset( $upgrade->description ) ) { |
|
386 | + if ( $is_english && isset( $upgrade->description ) ) { |
|
387 | 387 | $message = esc_html( $upgrade->description ); |
388 | 388 | } else { |
389 | - switch( $upgrade->price_id ) { |
|
389 | + switch ( $upgrade->price_id ) { |
|
390 | 390 | // Interstellar |
391 | 391 | case 1: |
392 | 392 | default: |
@@ -424,16 +424,16 @@ discard block |
||
424 | 424 | */ |
425 | 425 | public function license_call( $array = array() ) { |
426 | 426 | |
427 | - $is_ajax = ( defined('DOING_AJAX') && DOING_AJAX ); |
|
428 | - $data = empty( $array ) ? $_POST['data'] : $array; |
|
427 | + $is_ajax = ( defined( 'DOING_AJAX' ) && DOING_AJAX ); |
|
428 | + $data = empty( $array ) ? $_POST[ 'data' ] : $array; |
|
429 | 429 | $has_cap = GVCommon::has_cap( 'gravityview_edit_settings' ); |
430 | 430 | |
431 | - if ( $is_ajax && empty( $data['license'] ) ) { |
|
432 | - die( - 1 ); |
|
431 | + if ( $is_ajax && empty( $data[ 'license' ] ) ) { |
|
432 | + die( -1 ); |
|
433 | 433 | } |
434 | 434 | |
435 | 435 | // If the user isn't allowed to edit settings, show an error message |
436 | - if( ! $has_cap ) { |
|
436 | + if ( ! $has_cap ) { |
|
437 | 437 | $license_data = new stdClass(); |
438 | 438 | $license_data->error = 'capability'; |
439 | 439 | $license_data->message = $this->get_license_message( $license_data ); |
@@ -457,9 +457,9 @@ discard block |
||
457 | 457 | |
458 | 458 | $json = json_encode( $license_data ); |
459 | 459 | |
460 | - $update_license = ( ! isset( $data['update'] ) || ! empty( $data['update'] ) ); |
|
460 | + $update_license = ( ! isset( $data[ 'update' ] ) || ! empty( $data[ 'update' ] ) ); |
|
461 | 461 | |
462 | - $is_check_action_button = ( 'check_license' === $data['edd_action'] && defined( 'DOING_AJAX' ) && DOING_AJAX ); |
|
462 | + $is_check_action_button = ( 'check_license' === $data[ 'edd_action' ] && defined( 'DOING_AJAX' ) && DOING_AJAX ); |
|
463 | 463 | |
464 | 464 | // Failed is the response from trying to de-activate a license and it didn't work. |
465 | 465 | // This likely happened because people entered in a different key and clicked "Deactivate", |
@@ -467,7 +467,7 @@ discard block |
||
467 | 467 | // most likely a mistake. |
468 | 468 | if ( $license_data->license !== 'failed' && ! $is_check_action_button && $update_license ) { |
469 | 469 | |
470 | - if ( ! empty( $data['field_id'] ) ) { |
|
470 | + if ( ! empty( $data[ 'field_id' ] ) ) { |
|
471 | 471 | set_transient( self::status_transient_key, $license_data, DAY_IN_SECONDS ); |
472 | 472 | } |
473 | 473 | |
@@ -478,7 +478,7 @@ discard block |
||
478 | 478 | if ( $is_ajax ) { |
479 | 479 | exit( $json ); |
480 | 480 | } else { // Non-ajax call |
481 | - return ( rgget('format', $data ) === 'object' ) ? $license_data : $json; |
|
481 | + return ( rgget( 'format', $data ) === 'object' ) ? $license_data : $json; |
|
482 | 482 | } |
483 | 483 | } |
484 | 484 | |
@@ -492,9 +492,9 @@ discard block |
||
492 | 492 | // Update option with passed data license |
493 | 493 | $settings = $this->Addon->get_app_settings(); |
494 | 494 | |
495 | - $settings['license_key'] = $license_data->license_key = trim( $data['license'] ); |
|
496 | - $settings['license_key_status'] = $license_data->license; |
|
497 | - $settings['license_key_response'] = (array)$license_data; |
|
495 | + $settings[ 'license_key' ] = $license_data->license_key = trim( $data[ 'license' ] ); |
|
496 | + $settings[ 'license_key_status' ] = $license_data->license; |
|
497 | + $settings[ 'license_key_response' ] = (array)$license_data; |
|
498 | 498 | |
499 | 499 | $this->Addon->update_app_settings( $settings ); |
500 | 500 | } |
@@ -507,7 +507,7 @@ discard block |
||
507 | 507 | */ |
508 | 508 | private function get_license_renewal_url( $license_data ) { |
509 | 509 | $license_data = is_array( $license_data ) ? (object)$license_data : $license_data; |
510 | - $renew_license_url = ( ! empty( $license_data ) && !empty( $license_data->license_key ) ) ? sprintf( 'https://gravityview.co/checkout/?download_id=17&edd_license_key=%s&utm_source=admin_notice&utm_medium=admin&utm_content=expired&utm_campaign=Activation&force_login=1', $license_data->license_key ) : 'https://gravityview.co/account/'; |
|
510 | + $renew_license_url = ( ! empty( $license_data ) && ! empty( $license_data->license_key ) ) ? sprintf( 'https://gravityview.co/checkout/?download_id=17&edd_license_key=%s&utm_source=admin_notice&utm_medium=admin&utm_content=expired&utm_campaign=Activation&force_login=1', $license_data->license_key ) : 'https://gravityview.co/account/'; |
|
511 | 511 | return $renew_license_url; |
512 | 512 | } |
513 | 513 | |
@@ -522,31 +522,31 @@ discard block |
||
522 | 522 | |
523 | 523 | |
524 | 524 | $strings = array( |
525 | - 'status' => esc_html__('Status', 'gravityview'), |
|
526 | - 'error' => esc_html__('There was an error processing the request.', 'gravityview'), |
|
527 | - 'failed' => esc_html__('Could not deactivate the license. The license key you attempted to deactivate may not be active or valid.', 'gravityview'), |
|
528 | - 'site_inactive' => esc_html__('The license key is valid, but it has not been activated for this site.', 'gravityview'), |
|
529 | - 'inactive' => esc_html__('The license key is valid, but it has not been activated for this site.', 'gravityview'), |
|
530 | - 'no_activations_left' => esc_html__('Invalid: this license has reached its activation limit.', 'gravityview') . ' ' . sprintf( esc_html__('You can manage license activations %son your GravityView account page%s.', 'gravityview'), '<a href="https://gravityview.co/account/#licenses">', '</a>' ), |
|
531 | - 'deactivated' => esc_html__('The license has been deactivated.', 'gravityview'), |
|
532 | - 'valid' => esc_html__('The license key is valid and active.', 'gravityview'), |
|
533 | - 'invalid' => esc_html__('The license key entered is invalid.', 'gravityview'), |
|
534 | - 'missing' => esc_html__('Invalid license key.', 'gravityview'), |
|
535 | - 'revoked' => esc_html__('This license key has been revoked.', 'gravityview'), |
|
536 | - 'expired' => sprintf( esc_html__('This license key has expired. %sRenew your license on the GravityView website%s to receive updates and support.', 'gravityview'), '<a href="'. esc_url( $this->get_license_renewal_url( $license_data ) ) .'">', '</a>' ), |
|
525 | + 'status' => esc_html__( 'Status', 'gravityview' ), |
|
526 | + 'error' => esc_html__( 'There was an error processing the request.', 'gravityview' ), |
|
527 | + 'failed' => esc_html__( 'Could not deactivate the license. The license key you attempted to deactivate may not be active or valid.', 'gravityview' ), |
|
528 | + 'site_inactive' => esc_html__( 'The license key is valid, but it has not been activated for this site.', 'gravityview' ), |
|
529 | + 'inactive' => esc_html__( 'The license key is valid, but it has not been activated for this site.', 'gravityview' ), |
|
530 | + 'no_activations_left' => esc_html__( 'Invalid: this license has reached its activation limit.', 'gravityview' ) . ' ' . sprintf( esc_html__( 'You can manage license activations %son your GravityView account page%s.', 'gravityview' ), '<a href="https://gravityview.co/account/#licenses">', '</a>' ), |
|
531 | + 'deactivated' => esc_html__( 'The license has been deactivated.', 'gravityview' ), |
|
532 | + 'valid' => esc_html__( 'The license key is valid and active.', 'gravityview' ), |
|
533 | + 'invalid' => esc_html__( 'The license key entered is invalid.', 'gravityview' ), |
|
534 | + 'missing' => esc_html__( 'Invalid license key.', 'gravityview' ), |
|
535 | + 'revoked' => esc_html__( 'This license key has been revoked.', 'gravityview' ), |
|
536 | + 'expired' => sprintf( esc_html__( 'This license key has expired. %sRenew your license on the GravityView website%s to receive updates and support.', 'gravityview' ), '<a href="' . esc_url( $this->get_license_renewal_url( $license_data ) ) . '">', '</a>' ), |
|
537 | 537 | 'capability' => esc_html__( 'You don\'t have the ability to edit plugin settings.', 'gravityview' ), |
538 | 538 | |
539 | - 'verifying_license' => esc_html__('Verifying license…', 'gravityview'), |
|
540 | - 'activate_license' => esc_html__('Activate License', 'gravityview'), |
|
541 | - 'deactivate_license' => esc_html__('Deactivate License', 'gravityview'), |
|
542 | - 'check_license' => esc_html__('Verify License', 'gravityview'), |
|
539 | + 'verifying_license' => esc_html__( 'Verifying license…', 'gravityview' ), |
|
540 | + 'activate_license' => esc_html__( 'Activate License', 'gravityview' ), |
|
541 | + 'deactivate_license' => esc_html__( 'Deactivate License', 'gravityview' ), |
|
542 | + 'check_license' => esc_html__( 'Verify License', 'gravityview' ), |
|
543 | 543 | ); |
544 | 544 | |
545 | - if( empty( $status ) ) { |
|
545 | + if ( empty( $status ) ) { |
|
546 | 546 | return $strings; |
547 | 547 | } |
548 | 548 | |
549 | - if( isset( $strings[ $status ] ) ) { |
|
549 | + if ( isset( $strings[ $status ] ) ) { |
|
550 | 550 | return $strings[ $status ]; |
551 | 551 | } |
552 | 552 |
@@ -25,18 +25,18 @@ discard block |
||
25 | 25 | |
26 | 26 | $post_data = self::get_post_fields( $form, $entry ); |
27 | 27 | |
28 | - $media = get_attached_media( 'image', $entry['post_id'] ); |
|
28 | + $media = get_attached_media( 'image', $entry[ 'post_id' ] ); |
|
29 | 29 | |
30 | 30 | $post_images = array(); |
31 | 31 | |
32 | 32 | foreach ( $media as $media_item ) { |
33 | - foreach( (array) $post_data['images'] as $post_data_item ) { |
|
34 | - if( |
|
33 | + foreach ( (array)$post_data[ 'images' ] as $post_data_item ) { |
|
34 | + if ( |
|
35 | 35 | rgar( $post_data_item, 'title' ) === $media_item->post_title && |
36 | 36 | rgar( $post_data_item, 'description' ) === $media_item->post_content && |
37 | 37 | rgar( $post_data_item, 'caption' ) === $media_item->post_excerpt |
38 | 38 | ) { |
39 | - $post_images["{$post_data_item['field_id']}"] = $media_item->ID; |
|
39 | + $post_images[ "{$post_data_item[ 'field_id' ]}" ] = $media_item->ID; |
|
40 | 40 | } |
41 | 41 | } |
42 | 42 | } |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | * If the method changes to public, use Gravity Forms' method |
65 | 65 | * @todo: If/when the method is public, remove the unneeded copied code. |
66 | 66 | */ |
67 | - if( $reflection->isPublic() ) { |
|
67 | + if ( $reflection->isPublic() ) { |
|
68 | 68 | return parent::get_post_fields( $form, $entry ); |
69 | 69 | } |
70 | 70 | |
@@ -91,7 +91,7 @@ discard block |
||
91 | 91 | * If the method changes to public, use Gravity Forms' method |
92 | 92 | * @todo: If/when the method is public, remove the unneeded copied code. |
93 | 93 | */ |
94 | - if( $reflection->isPublic() ) { |
|
94 | + if ( $reflection->isPublic() ) { |
|
95 | 95 | return parent::copy_post_image( $url, $post_id ); |
96 | 96 | } |
97 | 97 | |
@@ -126,7 +126,7 @@ discard block |
||
126 | 126 | * If the method changes to public, use Gravity Forms' method |
127 | 127 | * @todo: If/when the method is public, remove the unneeded copied code. |
128 | 128 | */ |
129 | - if( $reflection->isPublic() ) { |
|
129 | + if ( $reflection->isPublic() ) { |
|
130 | 130 | return parent::media_handle_upload( $url, $post_id, $post_data ); |
131 | 131 | } |
132 | 132 |
@@ -43,8 +43,8 @@ discard block |
||
43 | 43 | public function fix_survey_fields( $fields ) { |
44 | 44 | |
45 | 45 | /** @var GF_Field $field */ |
46 | - foreach( $fields as &$field ) { |
|
47 | - if( 'survey' === $field->type ) { |
|
46 | + foreach ( $fields as &$field ) { |
|
47 | + if ( 'survey' === $field->type ) { |
|
48 | 48 | $field->allowsPrepopulate = true; |
49 | 49 | } |
50 | 50 | } |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | * @return void |
61 | 61 | */ |
62 | 62 | function add_render_hooks() { |
63 | - add_filter( 'gform_field_value', array( $this, 'fix_survey_field_value'), 10, 3 ); |
|
63 | + add_filter( 'gform_field_value', array( $this, 'fix_survey_field_value' ), 10, 3 ); |
|
64 | 64 | } |
65 | 65 | |
66 | 66 | /** |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | * @return void |
74 | 74 | */ |
75 | 75 | function remove_render_hooks() { |
76 | - remove_filter( 'gform_field_value', array( $this, 'fix_survey_field_value'), 10 ); |
|
76 | + remove_filter( 'gform_field_value', array( $this, 'fix_survey_field_value' ), 10 ); |
|
77 | 77 | } |
78 | 78 | |
79 | 79 | /** |
@@ -91,9 +91,9 @@ discard block |
||
91 | 91 | */ |
92 | 92 | public function fix_survey_field_value( $value, $field, $name ) { |
93 | 93 | |
94 | - if( 'survey' === $field->type ) { |
|
94 | + if ( 'survey' === $field->type ) { |
|
95 | 95 | |
96 | - $entry = GravityView_Edit_Entry::getInstance()->instances['render']->get_entry(); |
|
96 | + $entry = GravityView_Edit_Entry::getInstance()->instances[ 'render' ]->get_entry(); |
|
97 | 97 | |
98 | 98 | // We need to run through each survey row until we find a match for expected values |
99 | 99 | foreach ( $entry as $field_id => $field_value ) { |
@@ -102,11 +102,11 @@ discard block |
||
102 | 102 | continue; |
103 | 103 | } |
104 | 104 | |
105 | - if( rgar( $field, 'gsurveyLikertEnableMultipleRows' ) ) { |
|
105 | + if ( rgar( $field, 'gsurveyLikertEnableMultipleRows' ) ) { |
|
106 | 106 | list( $row_val, $col_val ) = explode( ':', $field_value, 2 ); |
107 | 107 | |
108 | 108 | // If the $name matches the $row_val, we are processing the correct row |
109 | - if( $row_val === $name ) { |
|
109 | + if ( $row_val === $name ) { |
|
110 | 110 | $value = $field_value; |
111 | 111 | break; |
112 | 112 | } |
@@ -47,7 +47,7 @@ |
||
47 | 47 | function edit_entry_fix_hidden_fields( $fields ) { |
48 | 48 | |
49 | 49 | /** @var GF_Field $field */ |
50 | - foreach( $fields as &$field ) { |
|
50 | + foreach ( $fields as &$field ) { |
|
51 | 51 | if ( 'hidden' === $field->type ) { |
52 | 52 | |
53 | 53 | // Replace GF_Field_Hidden with GF_Field_Text, copying all the data from $field |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | * @return void |
31 | 31 | */ |
32 | 32 | private function add_hooks() { |
33 | - add_filter( 'gravityview/edit_entry/field_value_post_custom_field', array( $this, 'edit_entry_field_value'), 10, 2 ); |
|
33 | + add_filter( 'gravityview/edit_entry/field_value_post_custom_field', array( $this, 'edit_entry_field_value' ), 10, 2 ); |
|
34 | 34 | } |
35 | 35 | |
36 | 36 | /** |
@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | */ |
46 | 46 | public function edit_entry_field_value( $field_value, $field ) { |
47 | 47 | |
48 | - if( 'list' === $field->inputType ) { |
|
48 | + if ( 'list' === $field->inputType ) { |
|
49 | 49 | $field_value = is_string( $field_value ) ? json_decode( $field_value, true ) : $field_value; |
50 | 50 | |
51 | 51 | if ( ! is_array( $field_value ) ) { |
@@ -9,7 +9,7 @@ discard block |
||
9 | 9 | |
10 | 10 | var $name = 'post_category'; |
11 | 11 | |
12 | - var $search_operators = array( 'is', 'in', 'not in', 'isnot', 'contains'); |
|
12 | + var $search_operators = array( 'is', 'in', 'not in', 'isnot', 'contains' ); |
|
13 | 13 | |
14 | 14 | var $_gf_field_class_name = 'GF_Field_Post_Category'; |
15 | 15 | |
@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | $entry = GFAPI::get_entry( $entry_id ); |
43 | 43 | $post_id = rgar( $entry, 'post_id' ); |
44 | 44 | |
45 | - if( empty( $post_id ) ) { |
|
45 | + if ( empty( $post_id ) ) { |
|
46 | 46 | return false; |
47 | 47 | } |
48 | 48 | |
@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | |
51 | 51 | $post_category_fields = GFAPI::get_fields_by_type( $form, 'post_category' ); |
52 | 52 | |
53 | - if( $post_category_fields ) { |
|
53 | + if ( $post_category_fields ) { |
|
54 | 54 | |
55 | 55 | $updated_categories = array(); |
56 | 56 | |
@@ -117,18 +117,18 @@ discard block |
||
117 | 117 | * |
118 | 118 | * @return mixed |
119 | 119 | */ |
120 | - function edit_entry_post_category_choices( $choices, $field, $form_id ) { |
|
120 | + function edit_entry_post_category_choices( $choices, $field, $form_id ) { |
|
121 | 121 | |
122 | - $entry = GravityView_Edit_Entry::getInstance()->instances['render']->get_entry(); |
|
122 | + $entry = GravityView_Edit_Entry::getInstance()->instances[ 'render' ]->get_entry(); |
|
123 | 123 | |
124 | 124 | // $entry['post_id'] should always be set, but we check to make sure. |
125 | - if( $entry && isset( $entry['post_id'] ) && $post_id = $entry['post_id'] ) { |
|
125 | + if ( $entry && isset( $entry[ 'post_id' ] ) && $post_id = $entry[ 'post_id' ] ) { |
|
126 | 126 | |
127 | 127 | $post_categories = wp_get_post_categories( $post_id, array( 'fields' => 'ids' ) ); |
128 | 128 | |
129 | 129 | // Always use the live value |
130 | 130 | foreach ( $choices as &$choice ) { |
131 | - $choice['isSelected'] = in_array( $choice['value'], array_values( $post_categories ) ); |
|
131 | + $choice[ 'isSelected' ] = in_array( $choice[ 'value' ], array_values( $post_categories ) ); |
|
132 | 132 | } |
133 | 133 | } |
134 | 134 | |
@@ -137,12 +137,12 @@ discard block |
||
137 | 137 | |
138 | 138 | function field_options( $field_options, $template_id, $field_id, $context, $input_type ) { |
139 | 139 | |
140 | - if( 'edit' === $context ) { |
|
140 | + if ( 'edit' === $context ) { |
|
141 | 141 | return $field_options; |
142 | 142 | } |
143 | 143 | |
144 | - $this->add_field_support('dynamic_data', $field_options ); |
|
145 | - $this->add_field_support('link_to_term', $field_options ); |
|
144 | + $this->add_field_support( 'dynamic_data', $field_options ); |
|
145 | + $this->add_field_support( 'link_to_term', $field_options ); |
|
146 | 146 | |
147 | 147 | return $field_options; |
148 | 148 | } |