@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | /** |
85 | 85 | * @var string The REST API functionality identifier. |
86 | 86 | */ |
87 | - const FEATURE_REST = 'rest_api'; |
|
87 | + const FEATURE_REST = 'rest_api'; |
|
88 | 88 | |
89 | 89 | /** |
90 | 90 | * Get the global instance of \GV\Plugin. |
@@ -210,7 +210,7 @@ discard block |
||
210 | 210 | include_once $this->dir( 'includes/class-frontend-views.php' ); |
211 | 211 | include_once $this->dir( 'includes/class-gravityview-admin-bar.php' ); |
212 | 212 | include_once $this->dir( 'includes/class-gravityview-entry-list.php' ); |
213 | - include_once $this->dir( 'includes/class-gravityview-merge-tags.php'); /** @since 1.8.4 */ |
|
213 | + include_once $this->dir( 'includes/class-gravityview-merge-tags.php' ); /** @since 1.8.4 */ |
|
214 | 214 | include_once $this->dir( 'includes/class-data.php' ); |
215 | 215 | include_once $this->dir( 'includes/class-gravityview-shortcode.php' ); |
216 | 216 | include_once $this->dir( 'includes/class-gravityview-entry-link-shortcode.php' ); |
@@ -244,12 +244,12 @@ discard block |
||
244 | 244 | |
245 | 245 | $locale = get_locale(); |
246 | 246 | |
247 | - if ( function_exists('get_user_locale') && is_admin() ) { |
|
247 | + if ( function_exists( 'get_user_locale' ) && is_admin() ) { |
|
248 | 248 | $locale = get_user_locale(); |
249 | 249 | } |
250 | 250 | |
251 | 251 | $locale = apply_filters( 'plugin_locale', $locale, 'gravityview' ); |
252 | - $mofile = $this->dir( 'languages' ) . '/gravityview-'. $locale .'.mo'; |
|
252 | + $mofile = $this->dir( 'languages' ) . '/gravityview-' . $locale . '.mo'; |
|
253 | 253 | load_textdomain( 'gravityview', $mofile ); |
254 | 254 | } |
255 | 255 | } |
@@ -382,7 +382,7 @@ discard block |
||
382 | 382 | */ |
383 | 383 | public function is_compatible_wordpress( $version = null ) { |
384 | 384 | |
385 | - if( ! $version ) { |
|
385 | + if ( ! $version ) { |
|
386 | 386 | $version = self::$min_wp_version; |
387 | 387 | } |
388 | 388 | |
@@ -423,8 +423,8 @@ discard block |
||
423 | 423 | * @return string The version of PHP. |
424 | 424 | */ |
425 | 425 | private function get_php_version() { |
426 | - return ! empty( $GLOBALS['GRAVITYVIEW_TESTS_PHP_VERSION_OVERRIDE'] ) ? |
|
427 | - $GLOBALS['GRAVITYVIEW_TESTS_PHP_VERSION_OVERRIDE'] : phpversion(); |
|
426 | + return ! empty( $GLOBALS[ 'GRAVITYVIEW_TESTS_PHP_VERSION_OVERRIDE' ] ) ? |
|
427 | + $GLOBALS[ 'GRAVITYVIEW_TESTS_PHP_VERSION_OVERRIDE' ] : phpversion(); |
|
428 | 428 | } |
429 | 429 | |
430 | 430 | /** |
@@ -435,8 +435,8 @@ discard block |
||
435 | 435 | * @return string The version of WordPress. |
436 | 436 | */ |
437 | 437 | private function get_wordpress_version() { |
438 | - return ! empty( $GLOBALS['GRAVITYVIEW_TESTS_WP_VERSION_OVERRIDE'] ) ? |
|
439 | - $GLOBALS['GRAVITYVIEW_TESTS_WP_VERSION_OVERRIDE'] : $GLOBALS['wp_version']; |
|
438 | + return ! empty( $GLOBALS[ 'GRAVITYVIEW_TESTS_WP_VERSION_OVERRIDE' ] ) ? |
|
439 | + $GLOBALS[ 'GRAVITYVIEW_TESTS_WP_VERSION_OVERRIDE' ] : $GLOBALS[ 'wp_version' ]; |
|
440 | 440 | } |
441 | 441 | |
442 | 442 | /** |
@@ -447,13 +447,13 @@ discard block |
||
447 | 447 | * @return string|null The version of Gravity Forms or null if inactive. |
448 | 448 | */ |
449 | 449 | private function get_gravityforms_version() { |
450 | - if ( ! class_exists( '\GFCommon' ) || ! empty( $GLOBALS['GRAVITYVIEW_TESTS_GF_INACTIVE_OVERRIDE'] ) ) { |
|
450 | + if ( ! class_exists( '\GFCommon' ) || ! empty( $GLOBALS[ 'GRAVITYVIEW_TESTS_GF_INACTIVE_OVERRIDE' ] ) ) { |
|
451 | 451 | gravityview()->log->error( 'Gravity Forms is inactive or not installed.' ); |
452 | 452 | return null; |
453 | 453 | } |
454 | 454 | |
455 | - return ! empty( $GLOBALS['GRAVITYVIEW_TESTS_GF_VERSION_OVERRIDE'] ) ? |
|
456 | - $GLOBALS['GRAVITYVIEW_TESTS_GF_VERSION_OVERRIDE'] : \GFCommon::$version; |
|
455 | + return ! empty( $GLOBALS[ 'GRAVITYVIEW_TESTS_GF_VERSION_OVERRIDE' ] ) ? |
|
456 | + $GLOBALS[ 'GRAVITYVIEW_TESTS_GF_VERSION_OVERRIDE' ] : \GFCommon::$version; |
|
457 | 457 | } |
458 | 458 | |
459 | 459 | /** |
@@ -509,9 +509,9 @@ discard block |
||
509 | 509 | $tables = array(); |
510 | 510 | |
511 | 511 | if ( version_compare( \GravityView_GFFormsModel::get_database_version(), '2.3-dev-1', '>=' ) ) { |
512 | - $tables []= \GFFormsModel::get_entry_meta_table_name(); |
|
512 | + $tables [ ] = \GFFormsModel::get_entry_meta_table_name(); |
|
513 | 513 | } |
514 | - $tables []= \GFFormsModel::get_lead_meta_table_name(); |
|
514 | + $tables [ ] = \GFFormsModel::get_lead_meta_table_name(); |
|
515 | 515 | |
516 | 516 | foreach ( $tables as $meta_table ) { |
517 | 517 | $sql = " |
@@ -529,13 +529,13 @@ discard block |
||
529 | 529 | $tables = array(); |
530 | 530 | |
531 | 531 | if ( version_compare( \GravityView_GFFormsModel::get_database_version(), '2.3-dev-1', '>=' ) && method_exists( 'GFFormsModel', 'get_entry_notes_table_name' ) ) { |
532 | - $tables[] = \GFFormsModel::get_entry_notes_table_name(); |
|
532 | + $tables[ ] = \GFFormsModel::get_entry_notes_table_name(); |
|
533 | 533 | } |
534 | 534 | |
535 | - $tables[] = \GFFormsModel::get_lead_notes_table_name(); |
|
535 | + $tables[ ] = \GFFormsModel::get_lead_notes_table_name(); |
|
536 | 536 | |
537 | - $disapproved = __('Disapproved the Entry for GravityView', 'gravityview'); |
|
538 | - $approved = __('Approved the Entry for GravityView', 'gravityview'); |
|
537 | + $disapproved = __( 'Disapproved the Entry for GravityView', 'gravityview' ); |
|
538 | + $approved = __( 'Approved the Entry for GravityView', 'gravityview' ); |
|
539 | 539 | |
540 | 540 | $suppress = $wpdb->suppress_errors(); |
541 | 541 | foreach ( $tables as $notes_table ) { |
@@ -44,7 +44,7 @@ |
||
44 | 44 | |
45 | 45 | |
46 | 46 | /** Entry does not belong to this view. */ |
47 | - if ( $view->form && $view->form->ID != $entry['form_id'] ) { |
|
47 | + if ( $view->form && $view->form->ID != $entry[ 'form_id' ] ) { |
|
48 | 48 | gravityview()->log->error( 'The requested entry does not belong to this View. Entry #{entry_id}, #View {view_id}', array( 'entry_id' => $entry->ID, 'view_id' => $view->ID ) ); |
49 | 49 | return null; |
50 | 50 | } |
@@ -37,8 +37,8 @@ discard block |
||
37 | 37 | 'detail' => null, |
38 | 38 | ) ); |
39 | 39 | |
40 | - if ( ! $view_id = $atts['id'] ? : $atts['view_id'] ) { |
|
41 | - if ( $atts['detail'] && $view = $request->is_view() ) { |
|
40 | + if ( ! $view_id = $atts[ 'id' ] ?: $atts[ 'view_id' ] ) { |
|
41 | + if ( $atts[ 'detail' ] && $view = $request->is_view() ) { |
|
42 | 42 | $view_id = $view->ID; |
43 | 43 | } |
44 | 44 | } |
@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | return get_the_password_form( $view->ID ); |
81 | 81 | } |
82 | 82 | |
83 | - if ( ! $view->form ) { |
|
83 | + if ( ! $view->form ) { |
|
84 | 84 | gravityview()->log->notice( 'View #{id} has no form attached to it.', array( 'id' => $view->ID ) ); |
85 | 85 | |
86 | 86 | /** |
@@ -101,12 +101,12 @@ discard block |
||
101 | 101 | return __( 'You are not allowed to view this content.', 'gravityview' ); |
102 | 102 | } |
103 | 103 | |
104 | - $is_admin_and_can_view = $view->settings->get( 'admin_show_all_statuses' ) && \GVCommon::has_cap('gravityview_moderate_entries', $view->ID ); |
|
104 | + $is_admin_and_can_view = $view->settings->get( 'admin_show_all_statuses' ) && \GVCommon::has_cap( 'gravityview_moderate_entries', $view->ID ); |
|
105 | 105 | |
106 | 106 | /** |
107 | 107 | * View details. |
108 | 108 | */ |
109 | - if ( $atts['detail'] ) { |
|
109 | + if ( $atts[ 'detail' ] ) { |
|
110 | 110 | return $this->detail( $view, $entries, $atts ); |
111 | 111 | |
112 | 112 | /** |
@@ -122,7 +122,7 @@ discard block |
||
122 | 122 | return ''; |
123 | 123 | } |
124 | 124 | |
125 | - if ( $entry['status'] != 'active' ) { |
|
125 | + if ( $entry[ 'status' ] != 'active' ) { |
|
126 | 126 | gravityview()->log->notice( 'Entry ID #{entry_id} is not active', array( 'entry_id' => $entry->ID ) ); |
127 | 127 | return __( 'You are not allowed to view this content.', 'gravityview' ); |
128 | 128 | } |
@@ -133,7 +133,7 @@ discard block |
||
133 | 133 | } |
134 | 134 | |
135 | 135 | if ( $view->settings->get( 'show_only_approved' ) && ! $is_admin_and_can_view ) { |
136 | - if ( ! \GravityView_Entry_Approval_Status::is_approved( gform_get_meta( $entry->ID, \GravityView_Entry_Approval::meta_key ) ) ) { |
|
136 | + if ( ! \GravityView_Entry_Approval_Status::is_approved( gform_get_meta( $entry->ID, \GravityView_Entry_Approval::meta_key ) ) ) { |
|
137 | 137 | gravityview()->log->error( 'Entry ID #{entry_id} is not approved for viewing', array( 'entry_id' => $entry->ID ) ); |
138 | 138 | return __( 'You are not allowed to view this content.', 'gravityview' ); |
139 | 139 | } |
@@ -153,7 +153,7 @@ discard block |
||
153 | 153 | return ''; |
154 | 154 | } |
155 | 155 | |
156 | - if ( $entry['status'] != 'active' ) { |
|
156 | + if ( $entry[ 'status' ] != 'active' ) { |
|
157 | 157 | gravityview()->log->notice( 'Entry ID #{entry_id} is not active', array( 'entry_id' => $entry->ID ) ); |
158 | 158 | return __( 'You are not allowed to view this content.', 'gravityview' ); |
159 | 159 | } |
@@ -164,7 +164,7 @@ discard block |
||
164 | 164 | } |
165 | 165 | |
166 | 166 | if ( $view->settings->get( 'show_only_approved' ) && ! $is_admin_and_can_view ) { |
167 | - if ( ! \GravityView_Entry_Approval_Status::is_approved( gform_get_meta( $entry->ID, \GravityView_Entry_Approval::meta_key ) ) ) { |
|
167 | + if ( ! \GravityView_Entry_Approval_Status::is_approved( gform_get_meta( $entry->ID, \GravityView_Entry_Approval::meta_key ) ) ) { |
|
168 | 168 | gravityview()->log->error( 'Entry ID #{entry_id} is not approved for viewing', array( 'entry_id' => $entry->ID ) ); |
169 | 169 | return __( 'You are not allowed to view this content.', 'gravityview' ); |
170 | 170 | } |
@@ -172,7 +172,7 @@ discard block |
||
172 | 172 | |
173 | 173 | $error = \GVCommon::check_entry_display( $entry->as_entry() ); |
174 | 174 | |
175 | - if( is_wp_error( $error ) ) { |
|
175 | + if ( is_wp_error( $error ) ) { |
|
176 | 176 | gravityview()->log->error( 'Entry ID #{entry_id} is not approved for viewing: {message}', array( 'entry_id' => $entry->ID, 'message' => $error->get_error_message() ) ); |
177 | 177 | return __( 'You are not allowed to view this content.', 'gravityview' ); |
178 | 178 | } |
@@ -188,10 +188,10 @@ discard block |
||
188 | 188 | |
189 | 189 | // Mock the request with the actual View, not the global one |
190 | 190 | $mock_request = new \GV\Mock_Request(); |
191 | - $mock_request->returns['is_view'] = $view; |
|
192 | - $mock_request->returns['is_entry'] = $request->is_entry(); |
|
193 | - $mock_request->returns['is_edit_entry'] = $request->is_edit_entry(); |
|
194 | - $mock_request->returns['is_search'] = $request->is_search(); |
|
191 | + $mock_request->returns[ 'is_view' ] = $view; |
|
192 | + $mock_request->returns[ 'is_entry' ] = $request->is_entry(); |
|
193 | + $mock_request->returns[ 'is_edit_entry' ] = $request->is_edit_entry(); |
|
194 | + $mock_request->returns[ 'is_search' ] = $request->is_search(); |
|
195 | 195 | |
196 | 196 | $request = $mock_request; |
197 | 197 | } |
@@ -227,16 +227,16 @@ discard block |
||
227 | 227 | $filtered_atts = shortcode_atts( $supported_atts, $passed_atts, 'gravityview' ); |
228 | 228 | |
229 | 229 | // Only keep the passed attributes after making sure that they're valid pairs |
230 | - $filtered_atts = array_intersect_key( (array) $passed_atts, $filtered_atts ); |
|
230 | + $filtered_atts = array_intersect_key( (array)$passed_atts, $filtered_atts ); |
|
231 | 231 | |
232 | 232 | $atts = array(); |
233 | 233 | |
234 | - foreach( $filtered_atts as $key => $passed_value ) { |
|
234 | + foreach ( $filtered_atts as $key => $passed_value ) { |
|
235 | 235 | |
236 | 236 | // Allow using GravityView merge tags in shortcode attributes, like {get} and {created_by} |
237 | 237 | $passed_value = \GravityView_Merge_Tags::replace_variables( $passed_value ); |
238 | 238 | |
239 | - switch( $defaults[ $key ]['type'] ) { |
|
239 | + switch ( $defaults[ $key ][ 'type' ] ) { |
|
240 | 240 | |
241 | 241 | /** |
242 | 242 | * Make sure number fields are numeric. |
@@ -244,7 +244,7 @@ discard block |
||
244 | 244 | * @see http://php.net/manual/en/function.is-numeric.php#107326 |
245 | 245 | */ |
246 | 246 | case 'number': |
247 | - if( is_numeric( $passed_value ) ) { |
|
247 | + if ( is_numeric( $passed_value ) ) { |
|
248 | 248 | $atts[ $key ] = ( $passed_value + 0 ); |
249 | 249 | } |
250 | 250 | break; |
@@ -259,8 +259,8 @@ discard block |
||
259 | 259 | */ |
260 | 260 | case 'select': |
261 | 261 | case 'radio': |
262 | - $options = isset( $defaults[ $key ]['choices'] ) ? $defaults[ $key ]['choices'] : $defaults[ $key ]['options']; |
|
263 | - if( in_array( $passed_value, array_keys( $options ) ) ) { |
|
262 | + $options = isset( $defaults[ $key ][ 'choices' ] ) ? $defaults[ $key ][ 'choices' ] : $defaults[ $key ][ 'options' ]; |
|
263 | + if ( in_array( $passed_value, array_keys( $options ) ) ) { |
|
264 | 264 | $atts[ $key ] = $passed_value; |
265 | 265 | } |
266 | 266 | break; |
@@ -272,7 +272,7 @@ discard block |
||
272 | 272 | } |
273 | 273 | } |
274 | 274 | |
275 | - $atts['detail'] = \GV\Utils::get( $passed_atts, 'detail', null ); |
|
275 | + $atts[ 'detail' ] = \GV\Utils::get( $passed_atts, 'detail', null ); |
|
276 | 276 | |
277 | 277 | return $atts; |
278 | 278 | } |
@@ -289,7 +289,7 @@ discard block |
||
289 | 289 | private function detail( $view, $entries, $atts ) { |
290 | 290 | $output = ''; |
291 | 291 | |
292 | - switch ( $key = $atts['detail'] ): |
|
292 | + switch ( $key = $atts[ 'detail' ] ): |
|
293 | 293 | case 'total_entries': |
294 | 294 | $output = number_format_i18n( $entries->total() ); |
295 | 295 | break; |
@@ -105,14 +105,14 @@ discard block |
||
105 | 105 | * @return \GV\GF_Entry|null An instance of this entry or null if not found. |
106 | 106 | */ |
107 | 107 | public static function from_entry( $entry ) { |
108 | - if ( empty( $entry['id'] ) ) { |
|
108 | + if ( empty( $entry[ 'id' ] ) ) { |
|
109 | 109 | return null; |
110 | 110 | } |
111 | 111 | |
112 | 112 | $self = new self(); |
113 | 113 | $self->entry = $entry; |
114 | 114 | |
115 | - $self->ID = $self->entry['id']; |
|
115 | + $self->ID = $self->entry[ 'id' ]; |
|
116 | 116 | $self->slug = \GravityView_API::get_entry_slug( $self->ID, $self->as_entry() ); |
117 | 117 | |
118 | 118 | return $self; |
@@ -127,7 +127,7 @@ discard block |
||
127 | 127 | * @return bool Whether the offset exists or not. |
128 | 128 | */ |
129 | 129 | public function offsetExists( $offset ) { |
130 | - return isset( $this->entry[$offset] ); |
|
130 | + return isset( $this->entry[ $offset ] ); |
|
131 | 131 | } |
132 | 132 | |
133 | 133 | /** |
@@ -142,7 +142,7 @@ discard block |
||
142 | 142 | * @return mixed The value of the requested entry data. |
143 | 143 | */ |
144 | 144 | public function offsetGet( $offset ) { |
145 | - return $this->entry[$offset]; |
|
145 | + return $this->entry[ $offset ]; |
|
146 | 146 | } |
147 | 147 | |
148 | 148 | /** |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | wp_embed_register_handler( 'gravityview_entry', self::get_entry_regex(), array( __CLASS__, 'render' ), 20000 ); |
27 | 27 | wp_oembed_add_provider( self::get_entry_regex(), self::$provider_url, true ); |
28 | 28 | |
29 | - if ( ! empty( $_GET['gv_oembed_provider'] ) && ! empty( $_GET['url'] ) ) { |
|
29 | + if ( ! empty( $_GET[ 'gv_oembed_provider' ] ) && ! empty( $_GET[ 'url' ] ) ) { |
|
30 | 30 | add_action( 'template_redirect', array( __CLASS__, 'render_provider_request' ) ); |
31 | 31 | } |
32 | 32 | |
@@ -43,8 +43,8 @@ discard block |
||
43 | 43 | * @return void |
44 | 44 | */ |
45 | 45 | public static function render_provider_request() { |
46 | - if ( ! empty( $_GET['url'] ) ) { |
|
47 | - $url = $_GET['url']; |
|
46 | + if ( ! empty( $_GET[ 'url' ] ) ) { |
|
47 | + $url = $_GET[ 'url' ]; |
|
48 | 48 | } else { |
49 | 49 | header( 'HTTP/1.0 404 Not Found' ); |
50 | 50 | exit; |
@@ -111,18 +111,18 @@ discard block |
||
111 | 111 | */ |
112 | 112 | private static function parse_matches( $matches, $url ) { |
113 | 113 | // If not using permalinks, re-assign values for matching groups |
114 | - if ( ! empty( $matches['entry_slug2'] ) ) { |
|
115 | - $matches['is_cpt'] = $matches['is_cpt2']; |
|
116 | - $matches['slug'] = $matches['slug2']; |
|
117 | - $matches['entry_slug'] = $matches['entry_slug2']; |
|
118 | - unset( $matches['is_cpt2'], $matches['slug2'], $matches['entry_slug2'] ); |
|
114 | + if ( ! empty( $matches[ 'entry_slug2' ] ) ) { |
|
115 | + $matches[ 'is_cpt' ] = $matches[ 'is_cpt2' ]; |
|
116 | + $matches[ 'slug' ] = $matches[ 'slug2' ]; |
|
117 | + $matches[ 'entry_slug' ] = $matches[ 'entry_slug2' ]; |
|
118 | + unset( $matches[ 'is_cpt2' ], $matches[ 'slug2' ], $matches[ 'entry_slug2' ] ); |
|
119 | 119 | } |
120 | 120 | |
121 | - if ( empty( $matches['entry_slug'] ) ) { |
|
121 | + if ( empty( $matches[ 'entry_slug' ] ) ) { |
|
122 | 122 | gravityview()->log->error( 'Entry slug not parsed by regex.', array( 'data' => $matches ) ); |
123 | 123 | return null; |
124 | 124 | } else { |
125 | - $entry_id = $matches['entry_slug']; |
|
125 | + $entry_id = $matches[ 'entry_slug' ]; |
|
126 | 126 | } |
127 | 127 | |
128 | 128 | if ( ! $entry = \GV\GF_Entry::by_id( $entry_id ) ) { |
@@ -142,12 +142,12 @@ discard block |
||
142 | 142 | if ( ! $view ) { |
143 | 143 | |
144 | 144 | // If the slug doesn't work, maybe using Plain permalinks and not the slug, only ID |
145 | - if( is_numeric( $matches['slug'] ) ) { |
|
146 | - $view = \GV\View::by_id( $matches['slug'] ); |
|
145 | + if ( is_numeric( $matches[ 'slug' ] ) ) { |
|
146 | + $view = \GV\View::by_id( $matches[ 'slug' ] ); |
|
147 | 147 | } |
148 | 148 | |
149 | - if( ! $view ) { |
|
150 | - $view = \GV\View::from_post( get_page_by_path( $matches['slug'], OBJECT, 'gravityview' ) ); |
|
149 | + if ( ! $view ) { |
|
150 | + $view = \GV\View::from_post( get_page_by_path( $matches[ 'slug' ], OBJECT, 'gravityview' ) ); |
|
151 | 151 | } |
152 | 152 | } |
153 | 153 | |
@@ -178,9 +178,9 @@ discard block |
||
178 | 178 | |
179 | 179 | return ' |
180 | 180 | <div class="loading-placeholder" style="background-color:#e6f0f5;"> |
181 | - <h3 style="margin:0; padding:0; font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen-Sans, Ubuntu, Cantarell, \'Helvetica Neue\', sans-serif;">'.$image.$embed_heading.'</h3> |
|
181 | + <h3 style="margin:0; padding:0; font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen-Sans, Ubuntu, Cantarell, \'Helvetica Neue\', sans-serif;">'.$image . $embed_heading . '</h3> |
|
182 | 182 | <p style="margin:0; padding:0; font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen-Sans, Ubuntu, Cantarell, \'Helvetica Neue\', sans-serif;"> |
183 | - '.$embed_text.' |
|
183 | + '.$embed_text . ' |
|
184 | 184 | </p> |
185 | 185 | <br style="clear: both;"> |
186 | 186 | </div>'; |
@@ -194,8 +194,8 @@ discard block |
||
194 | 194 | private static function render_preview_notice() { |
195 | 195 | $floaty = \GravityView_Admin::get_floaty(); |
196 | 196 | $title = esc_html__( 'This will look better when it is embedded.', 'gravityview' ); |
197 | - $message = esc_html__( 'Styles don\'t get loaded when being previewed, so the content below will look strange. Don\'t be concerned!', 'gravityview'); |
|
198 | - return '<div class="updated notice">'.$floaty.'<h3>'.$title.'</h3><p>'.$message.'</p><br style="clear:both;" /></div>'; |
|
197 | + $message = esc_html__( 'Styles don\'t get loaded when being previewed, so the content below will look strange. Don\'t be concerned!', 'gravityview' ); |
|
198 | + return '<div class="updated notice">' . $floaty . '<h3>' . $title . '</h3><p>' . $message . '</p><br style="clear:both;" /></div>'; |
|
199 | 199 | } |
200 | 200 | |
201 | 201 | /** |
@@ -214,13 +214,13 @@ discard block |
||
214 | 214 | return __( 'You are not allowed to view this content.', 'gravityview' ); |
215 | 215 | } |
216 | 216 | |
217 | - if ( $entry && 'active' !== $entry['status'] ) { |
|
217 | + if ( $entry && 'active' !== $entry[ 'status' ] ) { |
|
218 | 218 | gravityview()->log->notice( 'Entry ID #{entry_id} is not active', array( 'entry_id' => $entry->ID ) ); |
219 | 219 | return __( 'You are not allowed to view this content.', 'gravityview' ); |
220 | 220 | } |
221 | 221 | |
222 | 222 | if ( $view->settings->get( 'show_only_approved' ) ) { |
223 | - if ( ! \GravityView_Entry_Approval_Status::is_approved( gform_get_meta( $entry->ID, \GravityView_Entry_Approval::meta_key ) ) ) { |
|
223 | + if ( ! \GravityView_Entry_Approval_Status::is_approved( gform_get_meta( $entry->ID, \GravityView_Entry_Approval::meta_key ) ) ) { |
|
224 | 224 | gravityview()->log->error( 'Entry ID #{entry_id} is not approved for viewing', array( 'entry_id' => $entry->ID ) ); |
225 | 225 | return __( 'You are not allowed to view this content.', 'gravityview' ); |
226 | 226 | } |
@@ -285,7 +285,7 @@ discard block |
||
285 | 285 | // Catch either |
286 | 286 | $match_regex = "(?:{$using_permalinks}|{$not_using_permalinks})"; |
287 | 287 | |
288 | - return '#'.$match_regex.'#i'; |
|
288 | + return '#' . $match_regex . '#i'; |
|
289 | 289 | } |
290 | 290 | |
291 | 291 | /** |
@@ -266,7 +266,7 @@ |
||
266 | 266 | * |
267 | 267 | * @uses GravityView_frontend::get_search_criteria() Convert the $_POST search request into a properly formatted request. |
268 | 268 | * @access public |
269 | - * @return void|boolean |
|
269 | + * @return false|null |
|
270 | 270 | */ |
271 | 271 | public function process_bulk_action() { |
272 | 272 |
@@ -346,14 +346,14 @@ discard block |
||
346 | 346 | /** |
347 | 347 | * update_approved function. |
348 | 348 | * |
349 | - * @since 1.18 Moved to GravityView_Entry_Approval::update_approved |
|
349 | + * @since 1.18 Moved to GravityView_Entry_Approval::update_approved |
|
350 | 350 | * @see GravityView_Entry_Approval::update_approved |
351 | - * |
|
351 | + * |
|
352 | 352 | * @param int $entry_id (default: 0) |
353 | 353 | * @param int $approved (default: 0) |
354 | 354 | * @param int $form_id (default: 0) |
355 | 355 | * @param int $approvedcolumn (default: 0) |
356 | - * |
|
356 | + * |
|
357 | 357 | * @return boolean True: It worked; False: it failed |
358 | 358 | */ |
359 | 359 | public static function update_approved( $entry_id = 0, $approved = 0, $form_id = 0, $approvedcolumn = 0) { |
@@ -363,9 +363,9 @@ discard block |
||
363 | 363 | /** |
364 | 364 | * Calculate the approve field.input id |
365 | 365 | * |
366 | - * @since 1.18 Moved to GravityView_Entry_Approval::get_approved_column |
|
367 | - * @see GravityView_Entry_Approval::get_approved_column |
|
368 | - * |
|
366 | + * @since 1.18 Moved to GravityView_Entry_Approval::get_approved_column |
|
367 | + * @see GravityView_Entry_Approval::get_approved_column |
|
368 | + * |
|
369 | 369 | * @param mixed $form GF Form or Form ID |
370 | 370 | * @return false|null|string Returns the input ID of the approved field. Returns NULL if no approved fields were found. Returns false if $form_id wasn't set. |
371 | 371 | */ |
@@ -486,7 +486,7 @@ discard block |
||
486 | 486 | 'bulk_actions' => $this->get_bulk_actions( $form_id ), |
487 | 487 | 'bulk_message' => $this->bulk_update_message, |
488 | 488 | 'unapprove_title' => GravityView_Entry_Approval_Status::get_title_attr('unapproved'), |
489 | - 'approve_title' => GravityView_Entry_Approval_Status::get_title_attr('disapproved'), |
|
489 | + 'approve_title' => GravityView_Entry_Approval_Status::get_title_attr('disapproved'), |
|
490 | 490 | 'disapprove_title' => GravityView_Entry_Approval_Status::get_title_attr('approved'), |
491 | 491 | 'column_title' => __( 'Show entry in directory view?', 'gravityview'), |
492 | 492 | 'column_link' => esc_url( $this->get_sort_link() ), |
@@ -495,26 +495,26 @@ discard block |
||
495 | 495 | } |
496 | 496 | |
497 | 497 | /** |
498 | - * Generate a link to sort by approval status |
|
499 | - * |
|
500 | - * Note: Sorting by approval will never be great because it's not possible currently to declare the sorting as |
|
501 | - * numeric, but it does group the approved entries together. |
|
502 | - * |
|
503 | - * @since 2.0.14 Remove need for approval field for sorting by approval status |
|
504 | - * |
|
498 | + * Generate a link to sort by approval status |
|
499 | + * |
|
500 | + * Note: Sorting by approval will never be great because it's not possible currently to declare the sorting as |
|
501 | + * numeric, but it does group the approved entries together. |
|
502 | + * |
|
503 | + * @since 2.0.14 Remove need for approval field for sorting by approval status |
|
504 | + * |
|
505 | 505 | * @param int $form_id [NO LONGER USED] |
506 | 506 | * |
507 | 507 | * @return string Sorting link |
508 | 508 | */ |
509 | 509 | private function get_sort_link( $form_id = 0 ) { |
510 | 510 | |
511 | - $args = array( |
|
512 | - 'orderby' => 'is_approved', |
|
513 | - 'order' => ( 'desc' === \GV\Utils::_GET( 'order' ) ) ? 'asc' : 'desc', |
|
514 | - ); |
|
511 | + $args = array( |
|
512 | + 'orderby' => 'is_approved', |
|
513 | + 'order' => ( 'desc' === \GV\Utils::_GET( 'order' ) ) ? 'asc' : 'desc', |
|
514 | + ); |
|
515 | 515 | |
516 | 516 | return add_query_arg( $args ); |
517 | - } |
|
517 | + } |
|
518 | 518 | |
519 | 519 | /** |
520 | 520 | * Get an array of options to be added to the Gravity Forms "Bulk action" dropdown in a "GravityView" option group |
@@ -556,9 +556,9 @@ discard block |
||
556 | 556 | // Sanitize the values, just to be sure. |
557 | 557 | foreach ( $bulk_actions as $key => $group ) { |
558 | 558 | |
559 | - if( empty( $group ) ) { |
|
560 | - continue; |
|
561 | - } |
|
559 | + if( empty( $group ) ) { |
|
560 | + continue; |
|
561 | + } |
|
562 | 562 | |
563 | 563 | foreach ( $group as $i => $action ) { |
564 | 564 | $bulk_actions[ $key ][ $i ]['label'] = esc_html( $bulk_actions[ $key ][ $i ]['label'] ); |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | /** gf_entries page - entries table screen */ |
45 | 45 | |
46 | 46 | // capture bulk actions |
47 | - add_action( 'gform_loaded', array( $this, 'process_bulk_action') ); |
|
47 | + add_action( 'gform_loaded', array( $this, 'process_bulk_action' ) ); |
|
48 | 48 | |
49 | 49 | // add hidden field with approve status |
50 | 50 | add_action( 'gform_entries_first_column_actions', array( $this, 'add_entry_approved_hidden_input' ), 1, 5 ); |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | add_filter( 'gravityview/metaboxes/tooltips', array( $this, 'tooltips' ) ); |
53 | 53 | |
54 | 54 | // adding styles and scripts |
55 | - add_action( 'admin_enqueue_scripts', array( $this, 'add_scripts_and_styles') ); |
|
55 | + add_action( 'admin_enqueue_scripts', array( $this, 'add_scripts_and_styles' ) ); |
|
56 | 56 | // bypass Gravity Forms no-conflict mode |
57 | 57 | add_filter( 'gform_noconflict_scripts', array( $this, 'register_gform_noconflict_script' ) ); |
58 | 58 | add_filter( 'gform_noconflict_styles', array( $this, 'register_gform_noconflict_style' ) ); |
@@ -81,7 +81,7 @@ discard block |
||
81 | 81 | * @param bool $show_filter_links True: show the "approved"/"disapproved" filter links. False: hide them. |
82 | 82 | * @param array $form GF Form object of current form |
83 | 83 | */ |
84 | - if( false === apply_filters( 'gravityview/approve_entries/show_filter_links_entry_list', true, $form ) ) { |
|
84 | + if ( false === apply_filters( 'gravityview/approve_entries/show_filter_links_entry_list', true, $form ) ) { |
|
85 | 85 | return $filter_links; |
86 | 86 | } |
87 | 87 | |
@@ -109,27 +109,27 @@ discard block |
||
109 | 109 | $approved_count = $disapproved_count = $unapproved_count = 0; |
110 | 110 | |
111 | 111 | // Only count if necessary |
112 | - if( $include_counts ) { |
|
113 | - $approved_count = count( gravityview_get_entry_ids( $form['id'], array( 'status' => 'active', 'field_filters' => $field_filters_approved ) ) ); |
|
114 | - $disapproved_count = count( gravityview_get_entry_ids( $form['id'], array( 'status' => 'active', 'field_filters' => $field_filters_disapproved ) ) ); |
|
115 | - $unapproved_count = count( gravityview_get_entry_ids( $form['id'], array( 'status' => 'active', 'field_filters' => $field_filters_unapproved ) ) ); |
|
112 | + if ( $include_counts ) { |
|
113 | + $approved_count = count( gravityview_get_entry_ids( $form[ 'id' ], array( 'status' => 'active', 'field_filters' => $field_filters_approved ) ) ); |
|
114 | + $disapproved_count = count( gravityview_get_entry_ids( $form[ 'id' ], array( 'status' => 'active', 'field_filters' => $field_filters_disapproved ) ) ); |
|
115 | + $unapproved_count = count( gravityview_get_entry_ids( $form[ 'id' ], array( 'status' => 'active', 'field_filters' => $field_filters_unapproved ) ) ); |
|
116 | 116 | } |
117 | 117 | |
118 | - $filter_links[] = array( |
|
118 | + $filter_links[ ] = array( |
|
119 | 119 | 'id' => 'gv_approved', |
120 | 120 | 'field_filters' => $field_filters_approved, |
121 | 121 | 'count' => $approved_count, |
122 | 122 | 'label' => GravityView_Entry_Approval_Status::get_label( GravityView_Entry_Approval_Status::APPROVED ), |
123 | 123 | ); |
124 | 124 | |
125 | - $filter_links[] = array( |
|
125 | + $filter_links[ ] = array( |
|
126 | 126 | 'id' => 'gv_disapproved', |
127 | 127 | 'field_filters' => $field_filters_disapproved, |
128 | 128 | 'count' => $disapproved_count, |
129 | 129 | 'label' => GravityView_Entry_Approval_Status::get_label( GravityView_Entry_Approval_Status::DISAPPROVED ), |
130 | 130 | ); |
131 | 131 | |
132 | - $filter_links[] = array( |
|
132 | + $filter_links[ ] = array( |
|
133 | 133 | 'id' => 'gv_unapproved', |
134 | 134 | 'field_filters' => $field_filters_unapproved, |
135 | 135 | 'count' => $unapproved_count, |
@@ -148,9 +148,9 @@ discard block |
||
148 | 148 | */ |
149 | 149 | function tooltips( $tooltips ) { |
150 | 150 | |
151 | - $tooltips['form_gravityview_fields'] = array( |
|
152 | - 'title' => __('GravityView Fields', 'gravityview'), |
|
153 | - 'value' => __( 'Allow administrators to approve or reject entries and users to opt-in or opt-out of their entries being displayed.', 'gravityview'), |
|
151 | + $tooltips[ 'form_gravityview_fields' ] = array( |
|
152 | + 'title' => __( 'GravityView Fields', 'gravityview' ), |
|
153 | + 'value' => __( 'Allow administrators to approve or reject entries and users to opt-in or opt-out of their entries being displayed.', 'gravityview' ), |
|
154 | 154 | ); |
155 | 155 | |
156 | 156 | return $tooltips; |
@@ -261,7 +261,7 @@ discard block |
||
261 | 261 | |
262 | 262 | $gv_bulk_action = false; |
263 | 263 | |
264 | - if( version_compare( GFForms::$version, '2.0', '>=' ) ) { |
|
264 | + if ( version_compare( GFForms::$version, '2.0', '>=' ) ) { |
|
265 | 265 | $bulk_action = ( '-1' !== \GV\Utils::_POST( 'action' ) ) ? \GV\Utils::_POST( 'action' ) : \GV\Utils::_POST( 'action2' ); |
266 | 266 | } else { |
267 | 267 | // GF 1.9.x - Bulk action 2 is the bottom bulk action select form. |
@@ -269,7 +269,7 @@ discard block |
||
269 | 269 | } |
270 | 270 | |
271 | 271 | // Check the $bulk_action value against GV actions, see if they're the same. I hate strpos(). |
272 | - if( ! empty( $bulk_action ) && preg_match( '/^('. implode( '|', $this->bulk_action_prefixes ) .')/ism', $bulk_action ) ) { |
|
272 | + if ( ! empty( $bulk_action ) && preg_match( '/^(' . implode( '|', $this->bulk_action_prefixes ) . ')/ism', $bulk_action ) ) { |
|
273 | 273 | $gv_bulk_action = $bulk_action; |
274 | 274 | } |
275 | 275 | |
@@ -294,7 +294,7 @@ discard block |
||
294 | 294 | |
295 | 295 | // gforms_entry_list is the nonce that confirms we're on the right page |
296 | 296 | // gforms_update_note is sent when bulk editing entry notes. We don't want to process then. |
297 | - if ( $bulk_action && \GV\Utils::_POST( 'gforms_entry_list' ) && empty( $_POST['gforms_update_note'] ) ) { |
|
297 | + if ( $bulk_action && \GV\Utils::_POST( 'gforms_entry_list' ) && empty( $_POST[ 'gforms_update_note' ] ) ) { |
|
298 | 298 | |
299 | 299 | check_admin_referer( 'gforms_entry_list', 'gforms_entry_list' ); |
300 | 300 | |
@@ -312,13 +312,13 @@ discard block |
||
312 | 312 | } |
313 | 313 | |
314 | 314 | // All entries are set to be updated, not just the visible ones |
315 | - if ( ! empty( $_POST['all_entries'] ) ) { |
|
315 | + if ( ! empty( $_POST[ 'all_entries' ] ) ) { |
|
316 | 316 | |
317 | 317 | // Convert the current entry search into GF-formatted search criteria |
318 | 318 | $search = array( |
319 | - 'search_field' => isset( $_POST['f'] ) ? $_POST['f'][0] : 0, |
|
320 | - 'search_value' => isset( $_POST['v'][0] ) ? $_POST['v'][0] : '', |
|
321 | - 'search_operator' => isset( $_POST['o'][0] ) ? $_POST['o'][0] : 'contains', |
|
319 | + 'search_field' => isset( $_POST[ 'f' ] ) ? $_POST[ 'f' ][ 0 ] : 0, |
|
320 | + 'search_value' => isset( $_POST[ 'v' ][ 0 ] ) ? $_POST[ 'v' ][ 0 ] : '', |
|
321 | + 'search_operator' => isset( $_POST[ 'o' ][ 0 ] ) ? $_POST[ 'o' ][ 0 ] : 'contains', |
|
322 | 322 | ); |
323 | 323 | |
324 | 324 | $search_criteria = GravityView_frontend::get_search_criteria( $search, $form_id ); |
@@ -329,7 +329,7 @@ discard block |
||
329 | 329 | } else { |
330 | 330 | |
331 | 331 | // Changed from 'lead' to 'entry' in 2.0 |
332 | - $entries = isset( $_POST['lead'] ) ? $_POST['lead'] : $_POST['entry']; |
|
332 | + $entries = isset( $_POST[ 'lead' ] ) ? $_POST[ 'lead' ] : $_POST[ 'entry' ]; |
|
333 | 333 | |
334 | 334 | } |
335 | 335 | |
@@ -341,15 +341,15 @@ discard block |
||
341 | 341 | $entry_count = count( $entries ) > 1 ? sprintf( __( '%d entries', 'gravityview' ), count( $entries ) ) : __( '1 entry', 'gravityview' ); |
342 | 342 | |
343 | 343 | switch ( $approved_status ) { |
344 | - case $this->bulk_action_prefixes['approve']: |
|
344 | + case $this->bulk_action_prefixes[ 'approve' ]: |
|
345 | 345 | GravityView_Entry_Approval::update_bulk( $entries, GravityView_Entry_Approval_Status::APPROVED, $form_id ); |
346 | 346 | $this->bulk_update_message = sprintf( __( '%s approved.', 'gravityview' ), $entry_count ); |
347 | 347 | break; |
348 | - case $this->bulk_action_prefixes['unapprove']: |
|
348 | + case $this->bulk_action_prefixes[ 'unapprove' ]: |
|
349 | 349 | GravityView_Entry_Approval::update_bulk( $entries, GravityView_Entry_Approval_Status::UNAPPROVED, $form_id ); |
350 | 350 | $this->bulk_update_message = sprintf( __( '%s unapproved.', 'gravityview' ), $entry_count ); |
351 | 351 | break; |
352 | - case $this->bulk_action_prefixes['disapprove']: |
|
352 | + case $this->bulk_action_prefixes[ 'disapprove' ]: |
|
353 | 353 | GravityView_Entry_Approval::update_bulk( $entries, GravityView_Entry_Approval_Status::DISAPPROVED, $form_id ); |
354 | 354 | $this->bulk_update_message = sprintf( __( '%s disapproved.', 'gravityview' ), $entry_count ); |
355 | 355 | break; |
@@ -371,7 +371,7 @@ discard block |
||
371 | 371 | * |
372 | 372 | * @return boolean True: It worked; False: it failed |
373 | 373 | */ |
374 | - public static function update_approved( $entry_id = 0, $approved = 0, $form_id = 0, $approvedcolumn = 0) { |
|
374 | + public static function update_approved( $entry_id = 0, $approved = 0, $form_id = 0, $approvedcolumn = 0 ) { |
|
375 | 375 | return GravityView_Entry_Approval::update_approved( $entry_id, $approved, $form_id, $approvedcolumn ); |
376 | 376 | } |
377 | 377 | |
@@ -401,20 +401,20 @@ discard block |
||
401 | 401 | * |
402 | 402 | * @return void |
403 | 403 | */ |
404 | - static public function add_entry_approved_hidden_input( $form_id, $field_id, $value, $entry, $query_string ) { |
|
404 | + static public function add_entry_approved_hidden_input( $form_id, $field_id, $value, $entry, $query_string ) { |
|
405 | 405 | |
406 | - if( ! GVCommon::has_cap( 'gravityview_moderate_entries', $entry['id'] ) ) { |
|
406 | + if ( ! GVCommon::has_cap( 'gravityview_moderate_entries', $entry[ 'id' ] ) ) { |
|
407 | 407 | return; |
408 | 408 | } |
409 | 409 | |
410 | - if( empty( $entry['id'] ) ) { |
|
410 | + if ( empty( $entry[ 'id' ] ) ) { |
|
411 | 411 | return; |
412 | 412 | } |
413 | 413 | |
414 | 414 | $status_value = GravityView_Entry_Approval::get_entry_status( $entry, 'value' ); |
415 | 415 | |
416 | - if( $status_value ) { |
|
417 | - echo '<input type="hidden" class="entry_approval" id="entry_approved_'. $entry['id'] .'" value="' . esc_attr( $status_value ) . '" />'; |
|
416 | + if ( $status_value ) { |
|
417 | + echo '<input type="hidden" class="entry_approval" id="entry_approved_' . $entry[ 'id' ] . '" value="' . esc_attr( $status_value ) . '" />'; |
|
418 | 418 | } |
419 | 419 | } |
420 | 420 | |
@@ -427,10 +427,10 @@ discard block |
||
427 | 427 | */ |
428 | 428 | private function get_form_id() { |
429 | 429 | |
430 | - $form_id = GFForms::get('id'); |
|
430 | + $form_id = GFForms::get( 'id' ); |
|
431 | 431 | |
432 | 432 | // If there are no forms identified, use the first form. That's how GF does it. |
433 | - if( empty( $form_id ) && class_exists('RGFormsModel') ) { |
|
433 | + if ( empty( $form_id ) && class_exists( 'RGFormsModel' ) ) { |
|
434 | 434 | $form_id = $this->get_first_form_id(); |
435 | 435 | } |
436 | 436 | |
@@ -450,14 +450,14 @@ discard block |
||
450 | 450 | |
451 | 451 | $forms = RGFormsModel::get_forms( null, 'title' ); |
452 | 452 | |
453 | - if( ! isset( $forms[0] ) ) { |
|
453 | + if ( ! isset( $forms[ 0 ] ) ) { |
|
454 | 454 | gravityview()->log->error( 'No forms were found' ); |
455 | 455 | return 0; |
456 | 456 | } |
457 | 457 | |
458 | - $first_form = $forms[0]; |
|
458 | + $first_form = $forms[ 0 ]; |
|
459 | 459 | |
460 | - $form_id = is_object( $forms[0] ) ? $first_form->id : $first_form['id']; |
|
460 | + $form_id = is_object( $forms[ 0 ] ) ? $first_form->id : $first_form[ 'id' ]; |
|
461 | 461 | |
462 | 462 | return intval( $form_id ); |
463 | 463 | } |
@@ -465,33 +465,33 @@ discard block |
||
465 | 465 | |
466 | 466 | function add_scripts_and_styles( $hook ) { |
467 | 467 | |
468 | - if( ! class_exists( 'GFForms' ) ) { |
|
468 | + if ( ! class_exists( 'GFForms' ) ) { |
|
469 | 469 | gravityview()->log->error( 'GFForms does not exist.' ); |
470 | 470 | return; |
471 | 471 | } |
472 | 472 | |
473 | 473 | // enqueue styles & scripts gf_entries |
474 | 474 | // But only if we're on the main Entries page, not on reports pages |
475 | - if( GFForms::get_page() !== 'entry_list' ) { |
|
475 | + if ( GFForms::get_page() !== 'entry_list' ) { |
|
476 | 476 | return; |
477 | 477 | } |
478 | 478 | |
479 | 479 | $form_id = $this->get_form_id(); |
480 | 480 | |
481 | 481 | // Things are broken; no forms were found |
482 | - if( empty( $form_id ) ) { |
|
482 | + if ( empty( $form_id ) ) { |
|
483 | 483 | return; |
484 | 484 | } |
485 | 485 | |
486 | - wp_enqueue_style( 'gravityview_entries_list', plugins_url('assets/css/admin-entries-list.css', GRAVITYVIEW_FILE), array(), GravityView_Plugin::version ); |
|
486 | + wp_enqueue_style( 'gravityview_entries_list', plugins_url( 'assets/css/admin-entries-list.css', GRAVITYVIEW_FILE ), array(), GravityView_Plugin::version ); |
|
487 | 487 | |
488 | - $script_debug = (defined('SCRIPT_DEBUG') && SCRIPT_DEBUG) ? '' : '.min'; |
|
488 | + $script_debug = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min'; |
|
489 | 489 | |
490 | - wp_enqueue_script( 'gravityview_gf_entries_scripts', plugins_url('assets/js/admin-entries-list'.$script_debug.'.js', GRAVITYVIEW_FILE), array( 'jquery' ), GravityView_Plugin::version ); |
|
490 | + wp_enqueue_script( 'gravityview_gf_entries_scripts', plugins_url( 'assets/js/admin-entries-list' . $script_debug . '.js', GRAVITYVIEW_FILE ), array( 'jquery' ), GravityView_Plugin::version ); |
|
491 | 491 | |
492 | 492 | wp_localize_script( 'gravityview_gf_entries_scripts', 'gvGlobals', array( |
493 | - 'nonce' => wp_create_nonce( 'gravityview_entry_approval'), |
|
494 | - 'admin_nonce' => wp_create_nonce( 'gravityview_admin_entry_approval'), |
|
493 | + 'nonce' => wp_create_nonce( 'gravityview_entry_approval' ), |
|
494 | + 'admin_nonce' => wp_create_nonce( 'gravityview_admin_entry_approval' ), |
|
495 | 495 | 'form_id' => $form_id, |
496 | 496 | 'show_column' => (int)$this->show_approve_entry_column( $form_id ), |
497 | 497 | 'add_bulk_action' => (int)GVCommon::has_cap( 'gravityview_moderate_entries' ), |
@@ -500,10 +500,10 @@ discard block |
||
500 | 500 | 'status_unapproved' => GravityView_Entry_Approval_Status::UNAPPROVED, |
501 | 501 | 'bulk_actions' => $this->get_bulk_actions( $form_id ), |
502 | 502 | 'bulk_message' => $this->bulk_update_message, |
503 | - 'unapprove_title' => GravityView_Entry_Approval_Status::get_title_attr('unapproved'), |
|
504 | - 'approve_title' => GravityView_Entry_Approval_Status::get_title_attr('disapproved'), |
|
505 | - 'disapprove_title' => GravityView_Entry_Approval_Status::get_title_attr('approved'), |
|
506 | - 'column_title' => __( 'Show entry in directory view?', 'gravityview'), |
|
503 | + 'unapprove_title' => GravityView_Entry_Approval_Status::get_title_attr( 'unapproved' ), |
|
504 | + 'approve_title' => GravityView_Entry_Approval_Status::get_title_attr( 'disapproved' ), |
|
505 | + 'disapprove_title' => GravityView_Entry_Approval_Status::get_title_attr( 'approved' ), |
|
506 | + 'column_title' => __( 'Show entry in directory view?', 'gravityview' ), |
|
507 | 507 | 'column_link' => esc_url( $this->get_sort_link() ), |
508 | 508 | ) ); |
509 | 509 | |
@@ -545,16 +545,16 @@ discard block |
||
545 | 545 | $bulk_actions = array( |
546 | 546 | 'GravityView' => array( |
547 | 547 | array( |
548 | - 'label' => GravityView_Entry_Approval_Status::get_string('approved', 'action'), |
|
549 | - 'value' => sprintf( '%s-%d', $this->bulk_action_prefixes['approve'], $form_id ), |
|
548 | + 'label' => GravityView_Entry_Approval_Status::get_string( 'approved', 'action' ), |
|
549 | + 'value' => sprintf( '%s-%d', $this->bulk_action_prefixes[ 'approve' ], $form_id ), |
|
550 | 550 | ), |
551 | 551 | array( |
552 | - 'label' => GravityView_Entry_Approval_Status::get_string('disapproved', 'action'), |
|
553 | - 'value' => sprintf( '%s-%d', $this->bulk_action_prefixes['disapprove'], $form_id ), |
|
552 | + 'label' => GravityView_Entry_Approval_Status::get_string( 'disapproved', 'action' ), |
|
553 | + 'value' => sprintf( '%s-%d', $this->bulk_action_prefixes[ 'disapprove' ], $form_id ), |
|
554 | 554 | ), |
555 | 555 | array( |
556 | - 'label' => GravityView_Entry_Approval_Status::get_string('unapproved', 'action'), |
|
557 | - 'value' => sprintf( '%s-%d', $this->bulk_action_prefixes['unapprove'], $form_id ), |
|
556 | + 'label' => GravityView_Entry_Approval_Status::get_string( 'unapproved', 'action' ), |
|
557 | + 'value' => sprintf( '%s-%d', $this->bulk_action_prefixes[ 'unapprove' ], $form_id ), |
|
558 | 558 | ), |
559 | 559 | ), |
560 | 560 | ); |
@@ -571,13 +571,13 @@ discard block |
||
571 | 571 | // Sanitize the values, just to be sure. |
572 | 572 | foreach ( $bulk_actions as $key => $group ) { |
573 | 573 | |
574 | - if( empty( $group ) ) { |
|
574 | + if ( empty( $group ) ) { |
|
575 | 575 | continue; |
576 | 576 | } |
577 | 577 | |
578 | 578 | foreach ( $group as $i => $action ) { |
579 | - $bulk_actions[ $key ][ $i ]['label'] = esc_html( $bulk_actions[ $key ][ $i ]['label'] ); |
|
580 | - $bulk_actions[ $key ][ $i ]['value'] = esc_attr( $bulk_actions[ $key ][ $i ]['value'] ); |
|
579 | + $bulk_actions[ $key ][ $i ][ 'label' ] = esc_html( $bulk_actions[ $key ][ $i ][ 'label' ] ); |
|
580 | + $bulk_actions[ $key ][ $i ][ 'value' ] = esc_attr( $bulk_actions[ $key ][ $i ][ 'value' ] ); |
|
581 | 581 | } |
582 | 582 | } |
583 | 583 | |
@@ -602,13 +602,13 @@ discard block |
||
602 | 602 | * @since 1.7.2 |
603 | 603 | * @param boolean $hide_if_no_connections |
604 | 604 | */ |
605 | - $hide_if_no_connections = apply_filters('gravityview/approve_entries/hide-if-no-connections', false ); |
|
605 | + $hide_if_no_connections = apply_filters( 'gravityview/approve_entries/hide-if-no-connections', false ); |
|
606 | 606 | |
607 | - if( $hide_if_no_connections ) { |
|
607 | + if ( $hide_if_no_connections ) { |
|
608 | 608 | |
609 | 609 | $connected_views = gravityview_get_connected_views( $form_id ); |
610 | 610 | |
611 | - if( empty( $connected_views ) ) { |
|
611 | + if ( empty( $connected_views ) ) { |
|
612 | 612 | $show_approve_column = false; |
613 | 613 | } |
614 | 614 | } |
@@ -618,18 +618,18 @@ discard block |
||
618 | 618 | * @param boolean $show_approve_column Whether the column will be shown |
619 | 619 | * @param int $form_id The ID of the Gravity Forms form for which entries are being shown |
620 | 620 | */ |
621 | - $show_approve_column = apply_filters('gravityview/approve_entries/show-column', $show_approve_column, $form_id ); |
|
621 | + $show_approve_column = apply_filters( 'gravityview/approve_entries/show-column', $show_approve_column, $form_id ); |
|
622 | 622 | |
623 | 623 | return $show_approve_column; |
624 | 624 | } |
625 | 625 | |
626 | 626 | function register_gform_noconflict_script( $scripts ) { |
627 | - $scripts[] = 'gravityview_gf_entries_scripts'; |
|
627 | + $scripts[ ] = 'gravityview_gf_entries_scripts'; |
|
628 | 628 | return $scripts; |
629 | 629 | } |
630 | 630 | |
631 | 631 | function register_gform_noconflict_style( $styles ) { |
632 | - $styles[] = 'gravityview_entries_list'; |
|
632 | + $styles[ ] = 'gravityview_entries_list'; |
|
633 | 633 | return $styles; |
634 | 634 | } |
635 | 635 |
@@ -121,7 +121,7 @@ discard block |
||
121 | 121 | 'args' => $this->create_sub_item_args() |
122 | 122 | ), |
123 | 123 | ) ); |
124 | - register_rest_route( $namespace, sprintf( '/%s/(?P<id>[\d]+)/%s/(?P<s_id>[\w-]+)%s', $base, $sub_type, $format ) , array( |
|
124 | + register_rest_route( $namespace, sprintf( '/%s/(?P<id>[\d]+)/%s/(?P<s_id>[\w-]+)%s', $base, $sub_type, $format ), array( |
|
125 | 125 | array( |
126 | 126 | 'methods' => \WP_REST_Server::READABLE, |
127 | 127 | 'callback' => array( $this, 'get_sub_item' ), |
@@ -372,7 +372,7 @@ discard block |
||
372 | 372 | * @return \WP_REST_Response |
373 | 373 | */ |
374 | 374 | protected function not_implemented( ) { |
375 | - $error = new \WP_Error( 'not-implemented-yet', __( 'Endpoint Not Yet Implemented.', 'gravityview' ) ); |
|
375 | + $error = new \WP_Error( 'not-implemented-yet', __( 'Endpoint Not Yet Implemented.', 'gravityview' ) ); |
|
376 | 376 | return new \WP_REST_Response( $error, 501 ); |
377 | 377 | } |
378 | 378 |
@@ -7,15 +7,15 @@ |
||
7 | 7 | |
8 | 8 | $gravityview_view = GravityView_View::getInstance(); |
9 | 9 | $view_id = $gravityview_view->getViewId(); |
10 | -$value = $gravityview_view->search_field['value']; |
|
11 | -$label = $gravityview_view->search_field['label']; |
|
10 | +$value = $gravityview_view->search_field[ 'value' ]; |
|
11 | +$label = $gravityview_view->search_field[ 'label' ]; |
|
12 | 12 | |
13 | 13 | $html_input_type = RGFormsModel::is_html5_enabled() ? 'search' : 'text'; |
14 | 14 | ?> |
15 | 15 | |
16 | 16 | <div class="gv-search-box gv-search-field-text gv-search-field-search_all"> |
17 | 17 | <div class="gv-search"> |
18 | - <?php if( ! gv_empty( $label, false, false ) ) { ?> |
|
18 | + <?php if ( ! gv_empty( $label, false, false ) ) { ?> |
|
19 | 19 | <label for="gv_search_<?php echo $view_id; ?>"><?php echo esc_html( $label ); ?></label> |
20 | 20 | <?php } ?> |
21 | 21 | <p><input type="<?php echo $html_input_type; ?>" name="gv_search" id="gv_search_<?php echo $view_id; ?>" value="<?php echo esc_attr( $value ); ?>" /></p> |
@@ -7,13 +7,13 @@ |
||
7 | 7 | |
8 | 8 | $gravityview_view = GravityView_View::getInstance(); |
9 | 9 | $view_id = $gravityview_view->getViewId(); |
10 | -$value = $gravityview_view->search_field['value']; |
|
11 | -$label = $gravityview_view->search_field['label']; |
|
10 | +$value = $gravityview_view->search_field[ 'value' ]; |
|
11 | +$label = $gravityview_view->search_field[ 'label' ]; |
|
12 | 12 | ?> |
13 | 13 | |
14 | 14 | <div class="gv-search-box gv-search-field-entry_id"> |
15 | 15 | <div class="gv-search"> |
16 | - <?php if( ! gv_empty( $label, false, false ) ) { ?> |
|
16 | + <?php if ( ! gv_empty( $label, false, false ) ) { ?> |
|
17 | 17 | <label for="gv_entry_id_<?php echo $view_id; ?>"><?php echo esc_html( $label ); ?></label> |
18 | 18 | <?php } ?> |
19 | 19 | <p><input type="text" name="gv_id" id="gv_entry_id_<?php echo $view_id; ?>" value="<?php echo esc_attr( $value ); ?>" /></p> |