@@ -45,7 +45,6 @@ discard block |
||
45 | 45 | * Trick the GF fileupload field to render with the proper HTML ID to enable the plupload JS to work properly |
46 | 46 | * |
47 | 47 | * @param array $form The Form Object currently being processed. |
48 | - * @param string|array $value The field value. From default/dynamic population, $_POST, or a resumed incomplete submission. |
|
49 | 48 | * @param null|array $entry Null or the Entry Object currently being edited. |
50 | 49 | * @param GF_Field_FileUpload $field Gravity Forms field |
51 | 50 | * |
@@ -74,6 +73,7 @@ discard block |
||
74 | 73 | * |
75 | 74 | * @since 2.0 |
76 | 75 | * @param \GV\Template_Context The context. |
76 | + * @param GV\Template_Context $context |
|
77 | 77 | * |
78 | 78 | * @return array Array of file output, with `file_path` and `html` keys (see comments above) |
79 | 79 | */ |
@@ -24,21 +24,21 @@ discard block |
||
24 | 24 | |
25 | 25 | public function field_options( $field_options, $template_id, $field_id, $context, $input_type, $form_id ) { |
26 | 26 | |
27 | - unset( $field_options['search_filter'] ); |
|
27 | + unset( $field_options[ 'search_filter' ] ); |
|
28 | 28 | |
29 | - if( 'edit' === $context ) { |
|
29 | + if ( 'edit' === $context ) { |
|
30 | 30 | return $field_options; |
31 | 31 | } |
32 | 32 | |
33 | - $add_options['link_to_file'] = array( |
|
33 | + $add_options[ 'link_to_file' ] = array( |
|
34 | 34 | 'type' => 'checkbox', |
35 | 35 | 'label' => __( 'Display as a Link:', 'gravityview' ), |
36 | - 'desc' => __('Display the uploaded files as links, rather than embedded content.', 'gravityview'), |
|
36 | + 'desc' => __( 'Display the uploaded files as links, rather than embedded content.', 'gravityview' ), |
|
37 | 37 | 'value' => false, |
38 | 38 | 'merge_tags' => false, |
39 | 39 | ); |
40 | 40 | |
41 | - $add_options['image_width'] = array( |
|
41 | + $add_options[ 'image_width' ] = array( |
|
42 | 42 | 'type' => 'text', |
43 | 43 | 'label' => __( 'Custom Width:', 'gravityview' ), |
44 | 44 | 'desc' => __( 'Override the default image width (250).', 'gravityview' ), |
@@ -127,14 +127,14 @@ discard block |
||
127 | 127 | $base_id = null; |
128 | 128 | |
129 | 129 | $is_single = gravityview_get_context() === 'single'; |
130 | - $lightbox = ! empty( $gravityview_view->atts['lightbox'] ); |
|
130 | + $lightbox = ! empty( $gravityview_view->atts[ 'lightbox' ] ); |
|
131 | 131 | $field_compat = $gravityview_view->getCurrentField(); |
132 | 132 | } |
133 | 133 | |
134 | 134 | $output_arr = array(); |
135 | 135 | |
136 | 136 | // Get an array of file paths for the field. |
137 | - $file_paths = \GV\Utils::get( $field , 'multipleFiles' ) ? json_decode( $value ) : array( $value ); |
|
137 | + $file_paths = \GV\Utils::get( $field, 'multipleFiles' ) ? json_decode( $value ) : array( $value ); |
|
138 | 138 | |
139 | 139 | // The $value JSON was probably truncated; let's check lead_detail_long. |
140 | 140 | if ( ! is_array( $file_paths ) ) { |
@@ -153,7 +153,7 @@ discard block |
||
153 | 153 | $rendered = null; |
154 | 154 | |
155 | 155 | // If the site is HTTPS, use HTTPS |
156 | - if ( function_exists('set_url_scheme') ) { |
|
156 | + if ( function_exists( 'set_url_scheme' ) ) { |
|
157 | 157 | $file_path = set_url_scheme( $file_path ); |
158 | 158 | } |
159 | 159 | |
@@ -164,8 +164,8 @@ discard block |
||
164 | 164 | $file_path_info = pathinfo( $file_path ); |
165 | 165 | |
166 | 166 | // If pathinfo() gave us the extension of the file, run the switch statement using that. |
167 | - $extension = empty( $file_path_info['extension'] ) ? NULL : strtolower( $file_path_info['extension'] ); |
|
168 | - $basename = $file_path_info['basename']; |
|
167 | + $extension = empty( $file_path_info[ 'extension' ] ) ? NULL : strtolower( $file_path_info[ 'extension' ] ); |
|
168 | + $basename = $file_path_info[ 'basename' ]; |
|
169 | 169 | |
170 | 170 | // Get the secure download URL |
171 | 171 | $is_secure = false; |
@@ -202,7 +202,7 @@ discard block |
||
202 | 202 | */ |
203 | 203 | $audio_settings = apply_filters( 'gravityview_audio_settings', array( |
204 | 204 | 'src' => $insecure_file_path, // Needs to be insecure path so WP can parse extension |
205 | - 'class' => 'wp-audio-shortcode gv-audio gv-field-id-'.$field_settings['id'] |
|
205 | + 'class' => 'wp-audio-shortcode gv-audio gv-field-id-' . $field_settings[ 'id' ] |
|
206 | 206 | ), $context ); |
207 | 207 | |
208 | 208 | /** |
@@ -238,7 +238,7 @@ discard block |
||
238 | 238 | */ |
239 | 239 | $video_settings = apply_filters( 'gravityview_video_settings', array( |
240 | 240 | 'src' => $insecure_file_path, // Needs to be insecure path so WP can parse extension |
241 | - 'class' => 'wp-video-shortcode gv-video gv-field-id-'.$field_settings['id'] |
|
241 | + 'class' => 'wp-video-shortcode gv-video gv-field-id-' . $field_settings[ 'id' ] |
|
242 | 242 | ), $context ); |
243 | 243 | |
244 | 244 | /** |
@@ -271,13 +271,13 @@ discard block |
||
271 | 271 | $width = \GV\Utils::get( $field_settings, 'image_width', 250 ); |
272 | 272 | $image_atts = array( |
273 | 273 | 'src' => $file_path, |
274 | - 'class' => 'gv-image gv-field-id-' . $field_settings['id'], |
|
275 | - 'alt' => $field_settings['label'], |
|
276 | - 'width' => ( $is_single ? null : ( $width ? $width: 250 ) ) |
|
274 | + 'class' => 'gv-image gv-field-id-' . $field_settings[ 'id' ], |
|
275 | + 'alt' => $field_settings[ 'label' ], |
|
276 | + 'width' => ( $is_single ? null : ( $width ? $width : 250 ) ) |
|
277 | 277 | ); |
278 | 278 | |
279 | 279 | if ( $is_secure ) { |
280 | - $image_atts['validate_src'] = false; |
|
280 | + $image_atts[ 'validate_src' ] = false; |
|
281 | 281 | } |
282 | 282 | |
283 | 283 | /** |
@@ -307,7 +307,7 @@ discard block |
||
307 | 307 | */ |
308 | 308 | $override_security = apply_filters( 'gravityview/fields/fileupload/allow_insecure_lightbox', false, $file_path, $field_settings, $context ); |
309 | 309 | |
310 | - if ( $lightbox && empty( $field_settings['show_as_link'] ) && ( ! $is_secure || $override_security ) ) { |
|
310 | + if ( $lightbox && empty( $field_settings[ 'show_as_link' ] ) && ( ! $is_secure || $override_security ) ) { |
|
311 | 311 | $lightbox_link_atts = array( |
312 | 312 | 'rel' => sprintf( "%s-%s", $gv_class, $entry_slug ), |
313 | 313 | 'class' => 'thickbox', |
@@ -316,7 +316,7 @@ discard block |
||
316 | 316 | $lightbox_link_atts = apply_filters( 'gravityview/fields/fileupload/link_atts', $lightbox_link_atts, $field_compat, $context ); |
317 | 317 | |
318 | 318 | if ( $override_security ) { |
319 | - $image_atts['src'] = $insecure_file_path; |
|
319 | + $image_atts[ 'src' ] = $insecure_file_path; |
|
320 | 320 | $image = new GravityView_Image( $image_atts ); |
321 | 321 | $file_path = $insecure_file_path; |
322 | 322 | // :( a kitten died somewhere |
@@ -328,7 +328,7 @@ discard block |
||
328 | 328 | } |
329 | 329 | |
330 | 330 | // Show as link should render the image regardless. |
331 | - if ( ! empty( $field_settings['show_as_link'] ) ) { |
|
331 | + if ( ! empty( $field_settings[ 'show_as_link' ] ) ) { |
|
332 | 332 | $text = $rendered; |
333 | 333 | } |
334 | 334 | } |
@@ -345,7 +345,7 @@ discard block |
||
345 | 345 | $disable_wrapped_link = apply_filters( 'gravityview/fields/fileupload/disable_link', false, $field_compat, $context ); |
346 | 346 | |
347 | 347 | // Output textualized content where |
348 | - if ( ! $disable_wrapped_link && ( ! empty( $field_settings['link_to_file'] ) || ! empty( $field_settings['show_as_link'] ) ) ) { |
|
348 | + if ( ! $disable_wrapped_link && ( ! empty( $field_settings[ 'link_to_file' ] ) || ! empty( $field_settings[ 'show_as_link' ] ) ) ) { |
|
349 | 349 | /** |
350 | 350 | * Modify the link text (defaults to the file name) |
351 | 351 | * |
@@ -358,7 +358,7 @@ discard block |
||
358 | 358 | */ |
359 | 359 | $content = apply_filters( 'gravityview/fields/fileupload/link_content', $text, $field_compat, $context ); |
360 | 360 | |
361 | - if ( empty( $field_settings['show_as_link'] ) ) { |
|
361 | + if ( empty( $field_settings[ 'show_as_link' ] ) ) { |
|
362 | 362 | /** |
363 | 363 | * @filter `gravityview/fields/fileupload/link_atts` Modify the link attributes for a file upload field |
364 | 364 | * @param array|string $link_atts Array or attributes string |
@@ -374,7 +374,7 @@ discard block |
||
374 | 374 | $content = empty( $rendered ) ? $text : $rendered; |
375 | 375 | } |
376 | 376 | |
377 | - $output_arr[] = array( |
|
377 | + $output_arr[ ] = array( |
|
378 | 378 | 'file_path' => $file_path, |
379 | 379 | 'content' => $content |
380 | 380 | ); |
@@ -72,7 +72,7 @@ |
||
72 | 72 | * |
73 | 73 | * @param mixed $value The value in. |
74 | 74 | * |
75 | - * @return mixed The value out. |
|
75 | + * @return string The value out. |
|
76 | 76 | */ |
77 | 77 | public function get_value( $value ) { |
78 | 78 | return $this->get_string_from_value( $value ); |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | public function get_content( $output, $entry = array(), $field_settings = array(), $field = array() ) { |
61 | 61 | |
62 | 62 | /** Overridden by a template. */ |
63 | - if( ! empty( $field['field_path'] ) ) { return $output; } |
|
63 | + if ( ! empty( $field[ 'field_path' ] ) ) { return $output; } |
|
64 | 64 | |
65 | 65 | return $this->get_string_from_value( $output ); |
66 | 66 | } |
@@ -92,11 +92,11 @@ discard block |
||
92 | 92 | switch ( intval( $value ) ) { |
93 | 93 | case self::NOT_FULFILLED: |
94 | 94 | default: |
95 | - $return = __('Not Fulfilled', 'gravityview'); |
|
95 | + $return = __( 'Not Fulfilled', 'gravityview' ); |
|
96 | 96 | break; |
97 | 97 | |
98 | 98 | case self::FULFILLED: |
99 | - $return = __('Fulfilled', 'gravityview'); |
|
99 | + $return = __( 'Fulfilled', 'gravityview' ); |
|
100 | 100 | break; |
101 | 101 | } |
102 | 102 | |
@@ -116,13 +116,13 @@ discard block |
||
116 | 116 | * |
117 | 117 | * @return string Original text if {is_fulfilled} isn't found. Otherwise, "Not Fulfilled" or "Fulfilled" |
118 | 118 | */ |
119 | - public function replace_merge_tag( $matches = array(), $text = '', $form = array(), $entry = array(), $url_encode = false, $esc_html = false ) { |
|
119 | + public function replace_merge_tag( $matches = array(), $text = '', $form = array(), $entry = array(), $url_encode = false, $esc_html = false ) { |
|
120 | 120 | |
121 | 121 | $return = $text; |
122 | 122 | |
123 | 123 | foreach ( $matches as $match ) { |
124 | 124 | |
125 | - $full_tag = $match[0]; |
|
125 | + $full_tag = $match[ 0 ]; |
|
126 | 126 | |
127 | 127 | $fulfilled = \GV\Utils::get( $entry, 'is_fulfilled' ); |
128 | 128 |
@@ -69,7 +69,7 @@ |
||
69 | 69 | * @param \GV\Entry $entry The entry. |
70 | 70 | * @param \GV\Request $request The request context. |
71 | 71 | * |
72 | - * @return mixed $value The filtered value. |
|
72 | + * @return string $value The filtered value. |
|
73 | 73 | */ |
74 | 74 | public function get_value( $value, $field, $view, $source, $entry, $request ) { |
75 | 75 | return $this->get_content( $value, $entry->as_entry(), $field->as_configuration() ); |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | public function get_content( $output = '', $entry = array(), $field_settings = array(), $field = array() ) { |
50 | 50 | |
51 | 51 | /** Overridden by a template. */ |
52 | - if( ! empty( $field['field_path'] ) ) { return $output; } |
|
52 | + if ( ! empty( $field[ 'field_path' ] ) ) { return $output; } |
|
53 | 53 | |
54 | 54 | $amount = \GV\Utils::get( $entry, 'payment_amount' ); |
55 | 55 | $return = GFCommon::to_money( $amount, \GV\Utils::get( $entry, 'currency' ) ); |
@@ -88,14 +88,14 @@ discard block |
||
88 | 88 | * |
89 | 89 | * @return string Original text if {date_created} isn't found. Otherwise, replaced text. |
90 | 90 | */ |
91 | - public function replace_merge_tag( $matches = array(), $text = '', $form = array(), $entry = array(), $url_encode = false, $esc_html = false ) { |
|
91 | + public function replace_merge_tag( $matches = array(), $text = '', $form = array(), $entry = array(), $url_encode = false, $esc_html = false ) { |
|
92 | 92 | |
93 | 93 | $return = $text; |
94 | 94 | |
95 | 95 | foreach ( $matches as $match ) { |
96 | 96 | |
97 | - $full_tag = $match[0]; |
|
98 | - $modifier = isset( $match[1] ) ? $match[1] : false; |
|
97 | + $full_tag = $match[ 0 ]; |
|
98 | + $modifier = isset( $match[ 1 ] ) ? $match[ 1 ] : false; |
|
99 | 99 | |
100 | 100 | $amount = \GV\Utils::get( $entry, 'payment_amount' ); |
101 | 101 |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | printf( '<body style="padding: 0; margin: 0; font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen-Sans, Ubuntu, Cantarell, \'Helvetica Neue\', sans-serif;">' ); |
26 | 26 | printf( '<img src="' . plugins_url( 'assets/images/astronaut-200x263.png', GRAVITYVIEW_FILE ) . '" alt="The GravityView Astronaut Says:" style="float: left; height: 60px; margin-right : 10px;" />' ); |
27 | 27 | printf( __( "%sGravityView requires PHP Version %s or newer.%s \n\nYou're using Version %s. Please ask your host to upgrade your server's PHP.", 'gravityview' ), |
28 | - '<h3 style="font-size:16px; margin: 0 0 8px 0;">', GV_MIN_PHP_VERSION , "</h3>\n\n", $version ); |
|
28 | + '<h3 style="font-size:16px; margin: 0 0 8px 0;">', GV_MIN_PHP_VERSION, "</h3>\n\n", $version ); |
|
29 | 29 | printf( '</body>' ); |
30 | 30 | } |
31 | 31 | |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | } |
35 | 35 | |
36 | 36 | /** The future branch of GravityView requires PHP 5.3+ namespaces and SPL. */ |
37 | -if ( version_compare( phpversion(), '5.3.0' , '<' ) ) { |
|
37 | +if ( version_compare( phpversion(), '5.3.0', '<' ) ) { |
|
38 | 38 | require GRAVITYVIEW_DIR . 'future/_stubs.php'; |
39 | 39 | |
40 | 40 | /** All looks fine. */ |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | */ |
77 | 77 | public static function remove() { |
78 | 78 | $shortcode = new static(); |
79 | - unset( self::$shortcodes[$shortcode->name] ); |
|
79 | + unset( self::$shortcodes[ $shortcode->name ] ); |
|
80 | 80 | remove_shortcode( $shortcode->name ); |
81 | 81 | } |
82 | 82 | |
@@ -108,14 +108,14 @@ discard block |
||
108 | 108 | preg_match_all( '/' . get_shortcode_regex() . '/', $content, $matches, PREG_SET_ORDER ); |
109 | 109 | |
110 | 110 | foreach ( $matches as $shortcode ) { |
111 | - $shortcode_name = $shortcode[2]; |
|
111 | + $shortcode_name = $shortcode[ 2 ]; |
|
112 | 112 | |
113 | - $shortcode_atts = shortcode_parse_atts( $shortcode[3] ); |
|
114 | - $shortcode_content = $shortcode[5]; |
|
113 | + $shortcode_atts = shortcode_parse_atts( $shortcode[ 3 ] ); |
|
114 | + $shortcode_content = $shortcode[ 5 ]; |
|
115 | 115 | |
116 | 116 | /** This is a registered GravityView shortcode. */ |
117 | - if ( !empty( self::$shortcodes[$shortcode_name] ) ) { |
|
118 | - $shortcode = clone self::$shortcodes[$shortcode_name]; |
|
117 | + if ( ! empty( self::$shortcodes[ $shortcode_name ] ) ) { |
|
118 | + $shortcode = clone self::$shortcodes[ $shortcode_name ]; |
|
119 | 119 | } else { |
120 | 120 | /** This is some generic shortcode. */ |
121 | 121 | $shortcode = new self; |
@@ -62,7 +62,6 @@ |
||
62 | 62 | * |
63 | 63 | * Internal static cache for gets, and whatnot. |
64 | 64 | * This is not persistent, resets across requests. |
65 | - |
|
66 | 65 | * @internal |
67 | 66 | */ |
68 | 67 | private static $cache = array(); |
@@ -230,8 +230,9 @@ |
||
230 | 230 | * Check permissions. |
231 | 231 | */ |
232 | 232 | while ( $error = $view->can_render( null, $request ) ) { |
233 | - if ( ! is_wp_error( $error ) ) |
|
234 | - break; |
|
233 | + if ( ! is_wp_error( $error ) ) { |
|
234 | + break; |
|
235 | + } |
|
235 | 236 | |
236 | 237 | switch ( str_replace( 'gravityview/', '', $error->get_error_code() ) ) { |
237 | 238 | case 'post_password_required': |
@@ -795,6 +795,7 @@ |
||
795 | 795 | * Retrieve the entries for the current view and request. |
796 | 796 | * |
797 | 797 | * @param \GV\Request The request. Unused for now. |
798 | + * @param Request $request |
|
798 | 799 | * |
799 | 800 | * @return \GV\Entry_Collection The entries. |
800 | 801 | */ |
@@ -125,7 +125,7 @@ discard block |
||
125 | 125 | $supports = array( 'title', 'revisions' ); |
126 | 126 | |
127 | 127 | if ( $is_hierarchical ) { |
128 | - $supports[] = 'page-attributes'; |
|
128 | + $supports[ ] = 'page-attributes'; |
|
129 | 129 | } |
130 | 130 | |
131 | 131 | /** |
@@ -228,11 +228,11 @@ discard block |
||
228 | 228 | $rule = array( sprintf( '%s/([^/]+)/csv/?', $slug ), 'index.php?gravityview=$matches[1]&csv=1', 'top' ); |
229 | 229 | |
230 | 230 | add_filter( 'query_vars', function( $query_vars ) { |
231 | - $query_vars[] = 'csv'; |
|
231 | + $query_vars[ ] = 'csv'; |
|
232 | 232 | return $query_vars; |
233 | 233 | } ); |
234 | 234 | |
235 | - if ( ! isset( $wp_rewrite->extra_rules_top[ $rule[0] ] ) ) { |
|
235 | + if ( ! isset( $wp_rewrite->extra_rules_top[ $rule[ 0 ] ] ) ) { |
|
236 | 236 | call_user_func_array( 'add_rewrite_rule', $rule ); |
237 | 237 | } |
238 | 238 | } |
@@ -292,7 +292,7 @@ discard block |
||
292 | 292 | |
293 | 293 | $message = esc_html__( 'You can only see this message because you are able to edit this View.', 'gravityview' ); |
294 | 294 | |
295 | - $image = sprintf( '<img alt="%s" src="%s" style="margin-top: 10px;" />', esc_attr__( 'Data Source', 'gravityview' ), esc_url( plugins_url( 'assets/images/screenshots/data-source.png', GRAVITYVIEW_FILE ) ) ); |
|
295 | + $image = sprintf( '<img alt="%s" src="%s" style="margin-top: 10px;" />', esc_attr__( 'Data Source', 'gravityview' ), esc_url( plugins_url( 'assets/images/screenshots/data-source.png', GRAVITYVIEW_FILE ) ) ); |
|
296 | 296 | |
297 | 297 | return \GVCommon::generate_notice( '<h3>' . $title . '</h3>' . wpautop( $message . $image ), 'notice' ); |
298 | 298 | } |
@@ -318,13 +318,13 @@ discard block |
||
318 | 318 | return $content; |
319 | 319 | } |
320 | 320 | |
321 | - $is_admin_and_can_view = $view->settings->get( 'admin_show_all_statuses' ) && \GVCommon::has_cap('gravityview_moderate_entries', $view->ID ); |
|
321 | + $is_admin_and_can_view = $view->settings->get( 'admin_show_all_statuses' ) && \GVCommon::has_cap( 'gravityview_moderate_entries', $view->ID ); |
|
322 | 322 | |
323 | 323 | /** |
324 | 324 | * Editing a single entry. |
325 | 325 | */ |
326 | 326 | if ( $entry = $request->is_edit_entry( $view->form ? $view->form->ID : 0 ) ) { |
327 | - if ( $entry['status'] != 'active' ) { |
|
327 | + if ( $entry[ 'status' ] != 'active' ) { |
|
328 | 328 | gravityview()->log->notice( 'Entry ID #{entry_id} is not active', array( 'entry_id' => $entry->ID ) ); |
329 | 329 | return __( 'You are not allowed to view this content.', 'gravityview' ); |
330 | 330 | } |
@@ -335,7 +335,7 @@ discard block |
||
335 | 335 | } |
336 | 336 | |
337 | 337 | if ( $view->settings->get( 'show_only_approved' ) && ! $is_admin_and_can_view ) { |
338 | - if ( ! \GravityView_Entry_Approval_Status::is_approved( gform_get_meta( $entry->ID, \GravityView_Entry_Approval::meta_key ) ) ) { |
|
338 | + if ( ! \GravityView_Entry_Approval_Status::is_approved( gform_get_meta( $entry->ID, \GravityView_Entry_Approval::meta_key ) ) ) { |
|
339 | 339 | gravityview()->log->error( 'Entry ID #{entry_id} is not approved for viewing', array( 'entry_id' => $entry->ID ) ); |
340 | 340 | return __( 'You are not allowed to view this content.', 'gravityview' ); |
341 | 341 | } |
@@ -358,7 +358,7 @@ discard block |
||
358 | 358 | |
359 | 359 | foreach ( $entryset as $e ) { |
360 | 360 | |
361 | - if ( 'active' !== $e['status'] ) { |
|
361 | + if ( 'active' !== $e[ 'status' ] ) { |
|
362 | 362 | gravityview()->log->notice( 'Entry ID #{entry_id} is not active', array( 'entry_id' => $e->ID ) ); |
363 | 363 | return __( 'You are not allowed to view this content.', 'gravityview' ); |
364 | 364 | } |
@@ -369,7 +369,7 @@ discard block |
||
369 | 369 | } |
370 | 370 | |
371 | 371 | if ( $show_only_approved && ! $is_admin_and_can_view ) { |
372 | - if ( ! \GravityView_Entry_Approval_Status::is_approved( gform_get_meta( $e->ID, \GravityView_Entry_Approval::meta_key ) ) ) { |
|
372 | + if ( ! \GravityView_Entry_Approval_Status::is_approved( gform_get_meta( $e->ID, \GravityView_Entry_Approval::meta_key ) ) ) { |
|
373 | 373 | gravityview()->log->error( 'Entry ID #{entry_id} is not approved for viewing', array( 'entry_id' => $e->ID ) ); |
374 | 374 | return __( 'You are not allowed to view this content.', 'gravityview' ); |
375 | 375 | } |
@@ -544,7 +544,7 @@ discard block |
||
544 | 544 | $join_column = is_numeric( $join_column ) ? GF_Field::by_id( $join, $join_column ) : Internal_Field::by_id( $join_column ); |
545 | 545 | $join_on_column = is_numeric( $join_on_column ) ? GF_Field::by_id( $join_on, $join_on_column ) : Internal_Field::by_id( $join_on_column ); |
546 | 546 | |
547 | - $joins [] = new Join( $join, $join_column, $join_on, $join_on_column ); |
|
547 | + $joins [ ] = new Join( $join, $join_column, $join_on, $join_on_column ); |
|
548 | 548 | } |
549 | 549 | |
550 | 550 | return $joins; |
@@ -634,13 +634,13 @@ discard block |
||
634 | 634 | } |
635 | 635 | |
636 | 636 | foreach ( $_fields as $field ) { |
637 | - if ( ! empty( $field['unions'] ) ) { |
|
638 | - foreach ( $field['unions'] as $form_id => $field_id ) { |
|
637 | + if ( ! empty( $field[ 'unions' ] ) ) { |
|
638 | + foreach ( $field[ 'unions' ] as $form_id => $field_id ) { |
|
639 | 639 | if ( ! isset( $unions[ $form_id ] ) ) { |
640 | 640 | $unions[ $form_id ] = array(); |
641 | 641 | } |
642 | 642 | |
643 | - $unions[ $form_id ][ $field['id'] ] = |
|
643 | + $unions[ $form_id ][ $field[ 'id' ] ] = |
|
644 | 644 | is_numeric( $field_id ) ? \GV\GF_Field::by_id( \GV\GF_Form::by_id( $form_id ), $field_id ) : \GV\Internal_Field::by_id( $field_id ); |
645 | 645 | } |
646 | 646 | } |
@@ -695,7 +695,7 @@ discard block |
||
695 | 695 | if ( ! $view->form ) { |
696 | 696 | gravityview()->log->error( 'View #{view_id} tried attaching non-existent Form #{form_id} to it.', array( |
697 | 697 | 'view_id' => $view->ID, |
698 | - 'form_id' => $view->_gravityview_form_id ? : 0, |
|
698 | + 'form_id' => $view->_gravityview_form_id ?: 0, |
|
699 | 699 | ) ); |
700 | 700 | } |
701 | 701 | |
@@ -934,11 +934,11 @@ discard block |
||
934 | 934 | * Remove multiple sorting before calling legacy filters. |
935 | 935 | * This allows us to fake it till we make it. |
936 | 936 | */ |
937 | - if ( ! empty( $parameters['sort_field'] ) && is_array( $parameters['sort_field'] ) ) { |
|
937 | + if ( ! empty( $parameters[ 'sort_field' ] ) && is_array( $parameters[ 'sort_field' ] ) ) { |
|
938 | 938 | $has_multisort = true; |
939 | - $parameters['sort_field'] = reset( $parameters['sort_field'] ); |
|
940 | - if ( ! empty( $parameters['sort_direction'] ) && is_array( $parameters['sort_direction'] ) ) { |
|
941 | - $parameters['sort_direction'] = reset( $parameters['sort_direction'] ); |
|
939 | + $parameters[ 'sort_field' ] = reset( $parameters[ 'sort_field' ] ); |
|
940 | + if ( ! empty( $parameters[ 'sort_direction' ] ) && is_array( $parameters[ 'sort_direction' ] ) ) { |
|
941 | + $parameters[ 'sort_direction' ] = reset( $parameters[ 'sort_direction' ] ); |
|
942 | 942 | } |
943 | 943 | } |
944 | 944 | |
@@ -947,31 +947,30 @@ discard block |
||
947 | 947 | */ |
948 | 948 | $parameters = \GravityView_frontend::get_view_entries_parameters( $parameters, $this->form->ID ); |
949 | 949 | |
950 | - $parameters['context_view_id'] = $this->ID; |
|
950 | + $parameters[ 'context_view_id' ] = $this->ID; |
|
951 | 951 | $parameters = \GVCommon::calculate_get_entries_criteria( $parameters, $this->form->ID ); |
952 | 952 | |
953 | 953 | if ( ! is_array( $parameters ) ) { |
954 | 954 | $parameters = array(); |
955 | 955 | } |
956 | 956 | |
957 | - if ( ! is_array( $parameters['search_criteria'] ) ) { |
|
958 | - $parameters['search_criteria'] = array(); |
|
957 | + if ( ! is_array( $parameters[ 'search_criteria' ] ) ) { |
|
958 | + $parameters[ 'search_criteria' ] = array(); |
|
959 | 959 | } |
960 | 960 | |
961 | - if ( ( ! isset( $parameters['search_criteria']['field_filters'] ) ) || ( ! is_array( $parameters['search_criteria']['field_filters'] ) ) ) { |
|
962 | - $parameters['search_criteria']['field_filters'] = array(); |
|
961 | + if ( ( ! isset( $parameters[ 'search_criteria' ][ 'field_filters' ] ) ) || ( ! is_array( $parameters[ 'search_criteria' ][ 'field_filters' ] ) ) ) { |
|
962 | + $parameters[ 'search_criteria' ][ 'field_filters' ] = array(); |
|
963 | 963 | } |
964 | 964 | |
965 | 965 | if ( $request instanceof REST\Request ) { |
966 | 966 | $atts = $this->settings->as_atts(); |
967 | 967 | $paging_parameters = wp_parse_args( $request->get_paging(), array( |
968 | - 'paging' => array( 'page_size' => $atts['page_size'] ), |
|
968 | + 'paging' => array( 'page_size' => $atts[ 'page_size' ] ), |
|
969 | 969 | ) ); |
970 | - $parameters['paging'] = $paging_parameters['paging']; |
|
970 | + $parameters[ 'paging' ] = $paging_parameters[ 'paging' ]; |
|
971 | 971 | } |
972 | 972 | |
973 | - $page = Utils::get( $parameters['paging'], 'current_page' ) ? |
|
974 | - : ( ( ( $parameters['paging']['offset'] - $this->settings->get( 'offset' ) ) / \GV\Utils::get( $parameters, 'paging/page_size', 25 ) ) + 1 ); |
|
973 | + $page = Utils::get( $parameters[ 'paging' ], 'current_page' ) ?: ( ( ( $parameters[ 'paging' ][ 'offset' ] - $this->settings->get( 'offset' ) ) / \GV\Utils::get( $parameters, 'paging/page_size', 25 ) ) + 1 ); |
|
975 | 974 | |
976 | 975 | /** |
977 | 976 | * Cleanup duplicate field_filter parameters to simplify the query. |
@@ -979,14 +978,14 @@ discard block |
||
979 | 978 | $unique_field_filters = array(); |
980 | 979 | foreach ( Utils::get( $parameters, 'search_criteria/field_filters', array() ) as $key => $filter ) { |
981 | 980 | if ( 'mode' === $key ) { |
982 | - $unique_field_filters['mode'] = $filter; |
|
981 | + $unique_field_filters[ 'mode' ] = $filter; |
|
983 | 982 | } else if ( ! in_array( $filter, $unique_field_filters ) ) { |
984 | - $unique_field_filters[] = $filter; |
|
983 | + $unique_field_filters[ ] = $filter; |
|
985 | 984 | } |
986 | 985 | } |
987 | - $parameters['search_criteria']['field_filters'] = $unique_field_filters; |
|
986 | + $parameters[ 'search_criteria' ][ 'field_filters' ] = $unique_field_filters; |
|
988 | 987 | |
989 | - if ( ! empty( $parameters['search_criteria']['field_filters'] ) ) { |
|
988 | + if ( ! empty( $parameters[ 'search_criteria' ][ 'field_filters' ] ) ) { |
|
990 | 989 | gravityview()->log->notice( 'search_criteria/field_filters is not empty, third-party code may be using legacy search_criteria filters.' ); |
991 | 990 | } |
992 | 991 | |
@@ -995,7 +994,7 @@ discard block |
||
995 | 994 | $query_class = $this->get_query_class(); |
996 | 995 | |
997 | 996 | /** @type \GF_Query $query */ |
998 | - $query = new $query_class( $this->form->ID, $parameters['search_criteria'], Utils::get( $parameters, 'sorting' ) ); |
|
997 | + $query = new $query_class( $this->form->ID, $parameters[ 'search_criteria' ], Utils::get( $parameters, 'sorting' ) ); |
|
999 | 998 | |
1000 | 999 | /** |
1001 | 1000 | * Apply multisort. |
@@ -1006,15 +1005,15 @@ discard block |
||
1006 | 1005 | $view_setting_sort_field_ids = \GV\Utils::get( $atts, 'sort_field', array() ); |
1007 | 1006 | $view_setting_sort_directions = \GV\Utils::get( $atts, 'sort_direction', array() ); |
1008 | 1007 | |
1009 | - $has_sort_query_param = ! empty( $_GET['sort'] ) && is_array( $_GET['sort'] ); |
|
1008 | + $has_sort_query_param = ! empty( $_GET[ 'sort' ] ) && is_array( $_GET[ 'sort' ] ); |
|
1010 | 1009 | |
1011 | - if( $has_sort_query_param ) { |
|
1012 | - $has_sort_query_param = array_filter( array_values( $_GET['sort'] ) ); |
|
1010 | + if ( $has_sort_query_param ) { |
|
1011 | + $has_sort_query_param = array_filter( array_values( $_GET[ 'sort' ] ) ); |
|
1013 | 1012 | } |
1014 | 1013 | |
1015 | 1014 | if ( $this->settings->get( 'sort_columns' ) && $has_sort_query_param ) { |
1016 | - $sort_field_ids = array_keys( $_GET['sort'] ); |
|
1017 | - $sort_directions = array_values( $_GET['sort'] ); |
|
1015 | + $sort_field_ids = array_keys( $_GET[ 'sort' ] ); |
|
1016 | + $sort_directions = array_values( $_GET[ 'sort' ] ); |
|
1018 | 1017 | } else { |
1019 | 1018 | $sort_field_ids = $view_setting_sort_field_ids; |
1020 | 1019 | $sort_directions = $view_setting_sort_directions; |
@@ -1022,7 +1021,7 @@ discard block |
||
1022 | 1021 | |
1023 | 1022 | $skip_first = false; |
1024 | 1023 | |
1025 | - foreach ( (array) $sort_field_ids as $key => $sort_field_id ) { |
|
1024 | + foreach ( (array)$sort_field_ids as $key => $sort_field_id ) { |
|
1026 | 1025 | |
1027 | 1026 | if ( ! $skip_first && ! $has_sort_query_param ) { |
1028 | 1027 | $skip_first = true; // Skip the first one, it's already in the query |
@@ -1052,15 +1051,15 @@ discard block |
||
1052 | 1051 | |
1053 | 1052 | $merged_time = false; |
1054 | 1053 | |
1055 | - foreach ( $q['order'] as $oid => $order ) { |
|
1056 | - if ( $order[0] instanceof \GF_Query_Column ) { |
|
1057 | - $column = $order[0]; |
|
1058 | - } else if ( $order[0] instanceof \GF_Query_Call ) { |
|
1059 | - if ( count( $order[0]->columns ) != 1 || ! $order[0]->columns[0] instanceof \GF_Query_Column ) { |
|
1054 | + foreach ( $q[ 'order' ] as $oid => $order ) { |
|
1055 | + if ( $order[ 0 ] instanceof \GF_Query_Column ) { |
|
1056 | + $column = $order[ 0 ]; |
|
1057 | + } else if ( $order[ 0 ] instanceof \GF_Query_Call ) { |
|
1058 | + if ( count( $order[ 0 ]->columns ) != 1 || ! $order[ 0 ]->columns[ 0 ] instanceof \GF_Query_Column ) { |
|
1060 | 1059 | $orders[ $oid ] = $order; |
1061 | 1060 | continue; // Need something that resembles a single sort |
1062 | 1061 | } |
1063 | - $column = $order[0]->columns[0]; |
|
1062 | + $column = $order[ 0 ]->columns[ 0 ]; |
|
1064 | 1063 | } |
1065 | 1064 | |
1066 | 1065 | if ( ( ! $field = \GFAPI::get_field( $column->source, $column->field_id ) ) || $field->type !== 'time' ) { |
@@ -1074,7 +1073,7 @@ discard block |
||
1074 | 1073 | |
1075 | 1074 | $orders[ $oid ] = array( |
1076 | 1075 | new \GV\Mocks\GF_Query_Call_TIMESORT( 'timesort', array( $column, $sql ) ), |
1077 | - $order[1] // Mock it! |
|
1076 | + $order[ 1 ] // Mock it! |
|
1078 | 1077 | ); |
1079 | 1078 | |
1080 | 1079 | $merged_time = true; |
@@ -1085,15 +1084,15 @@ discard block |
||
1085 | 1084 | * ORDER again. |
1086 | 1085 | */ |
1087 | 1086 | if ( ! empty( $orders ) && $_orders = $query->_order_generate( $orders ) ) { |
1088 | - $sql['order'] = 'ORDER BY ' . implode( ', ', $_orders ); |
|
1087 | + $sql[ 'order' ] = 'ORDER BY ' . implode( ', ', $_orders ); |
|
1089 | 1088 | } |
1090 | 1089 | } |
1091 | 1090 | |
1092 | 1091 | return $sql; |
1093 | 1092 | } ); |
1094 | 1093 | |
1095 | - $query->limit( $parameters['paging']['page_size'] ) |
|
1096 | - ->offset( ( ( $page - 1 ) * $parameters['paging']['page_size'] ) + $this->settings->get( 'offset' ) ); |
|
1094 | + $query->limit( $parameters[ 'paging' ][ 'page_size' ] ) |
|
1095 | + ->offset( ( ( $page - 1 ) * $parameters[ 'paging' ][ 'page_size' ] ) + $this->settings->get( 'offset' ) ); |
|
1097 | 1096 | |
1098 | 1097 | /** |
1099 | 1098 | * Any joins? |
@@ -1116,7 +1115,7 @@ discard block |
||
1116 | 1115 | |
1117 | 1116 | $query_parameters = $query->_introspect(); |
1118 | 1117 | |
1119 | - $query->where( \GF_Query_Condition::_and( $query_parameters['where'], $condition ) ); |
|
1118 | + $query->where( \GF_Query_Condition::_and( $query_parameters[ 'where' ], $condition ) ); |
|
1120 | 1119 | } |
1121 | 1120 | |
1122 | 1121 | /** |
@@ -1150,7 +1149,7 @@ discard block |
||
1150 | 1149 | } |
1151 | 1150 | |
1152 | 1151 | $q = $query->_introspect(); |
1153 | - $query->where( \GF_Query_Condition::_and( $q['where'], $condition ) ); |
|
1152 | + $query->where( \GF_Query_Condition::_and( $q[ 'where' ], $condition ) ); |
|
1154 | 1153 | |
1155 | 1154 | if ( $this->settings->get( 'show_only_approved' ) && ! $is_admin_and_can_view ) { |
1156 | 1155 | |
@@ -1175,7 +1174,7 @@ discard block |
||
1175 | 1174 | |
1176 | 1175 | $query_parameters = $query->_introspect(); |
1177 | 1176 | |
1178 | - $query->where( \GF_Query_Condition::_and( $query_parameters['where'], $condition ) ); |
|
1177 | + $query->where( \GF_Query_Condition::_and( $query_parameters[ 'where' ], $condition ) ); |
|
1179 | 1178 | } |
1180 | 1179 | } |
1181 | 1180 | |
@@ -1199,7 +1198,7 @@ discard block |
||
1199 | 1198 | $conditions = array(); |
1200 | 1199 | |
1201 | 1200 | foreach ( $condition->expressions as $_condition ) { |
1202 | - $conditions[] = $recurse( $_condition, $fields, $recurse ); |
|
1201 | + $conditions[ ] = $recurse( $_condition, $fields, $recurse ); |
|
1203 | 1202 | } |
1204 | 1203 | |
1205 | 1204 | return call_user_func_array( |
@@ -1228,10 +1227,10 @@ discard block |
||
1228 | 1227 | $q = new $query_class( $form_id ); |
1229 | 1228 | |
1230 | 1229 | // Copy the WHERE clauses but substitute the field_ids to the respective ones |
1231 | - $q->where( $where_union_substitute( $query_parameters['where'], $fields, $where_union_substitute ) ); |
|
1230 | + $q->where( $where_union_substitute( $query_parameters[ 'where' ], $fields, $where_union_substitute ) ); |
|
1232 | 1231 | |
1233 | 1232 | // Copy the ORDER clause and substitute the field_ids to the respective ones |
1234 | - foreach ( $query_parameters['order'] as $order ) { |
|
1233 | + foreach ( $query_parameters[ 'order' ] as $order ) { |
|
1235 | 1234 | list( $column, $_order ) = $order; |
1236 | 1235 | |
1237 | 1236 | if ( $column && $column instanceof \GF_Query_Column ) { |
@@ -1245,15 +1244,15 @@ discard block |
||
1245 | 1244 | |
1246 | 1245 | add_filter( 'gform_gf_query_sql', $gf_query_sql_callback = function( $sql ) use ( &$unions_sql ) { |
1247 | 1246 | // Remove SQL_CALC_FOUND_ROWS as it's not needed in UNION clauses |
1248 | - $select = 'UNION ALL ' . str_replace( 'SQL_CALC_FOUND_ROWS ', '', $sql['select'] ); |
|
1247 | + $select = 'UNION ALL ' . str_replace( 'SQL_CALC_FOUND_ROWS ', '', $sql[ 'select' ] ); |
|
1249 | 1248 | |
1250 | 1249 | // Record the SQL |
1251 | - $unions_sql[] = array( |
|
1250 | + $unions_sql[ ] = array( |
|
1252 | 1251 | // Remove columns, we'll rebuild them |
1253 | 1252 | 'select' => preg_replace( '#DISTINCT (.*)#', 'DISTINCT ', $select ), |
1254 | - 'from' => $sql['from'], |
|
1255 | - 'join' => $sql['join'], |
|
1256 | - 'where' => $sql['where'], |
|
1253 | + 'from' => $sql[ 'from' ], |
|
1254 | + 'join' => $sql[ 'join' ], |
|
1255 | + 'where' => $sql[ 'where' ], |
|
1257 | 1256 | // Remove order and limit |
1258 | 1257 | ); |
1259 | 1258 | |
@@ -1270,11 +1269,11 @@ discard block |
||
1270 | 1269 | |
1271 | 1270 | add_filter( 'gform_gf_query_sql', $gf_query_sql_callback = function( $sql ) use ( $unions_sql ) { |
1272 | 1271 | // Remove SQL_CALC_FOUND_ROWS as it's not needed in UNION clauses |
1273 | - $sql['select'] = str_replace( 'SQL_CALC_FOUND_ROWS ', '', $sql['select'] ); |
|
1272 | + $sql[ 'select' ] = str_replace( 'SQL_CALC_FOUND_ROWS ', '', $sql[ 'select' ] ); |
|
1274 | 1273 | |
1275 | 1274 | // Remove columns, we'll rebuild them |
1276 | - preg_match( '#DISTINCT (`[motc]\d+`.`.*?`)#', $sql['select'], $select_match ); |
|
1277 | - $sql['select'] = preg_replace( '#DISTINCT (.*)#', 'DISTINCT ', $sql['select'] ); |
|
1275 | + preg_match( '#DISTINCT (`[motc]\d+`.`.*?`)#', $sql[ 'select' ], $select_match ); |
|
1276 | + $sql[ 'select' ] = preg_replace( '#DISTINCT (.*)#', 'DISTINCT ', $sql[ 'select' ] ); |
|
1278 | 1277 | |
1279 | 1278 | $unions = array(); |
1280 | 1279 | |
@@ -1285,30 +1284,30 @@ discard block |
||
1285 | 1284 | }; |
1286 | 1285 | |
1287 | 1286 | // Add all the order columns into the selects, so we can order by the whole union group |
1288 | - preg_match_all( '#(`[motc]\d+`.`.*?`)#', $sql['order'], $order_matches ); |
|
1287 | + preg_match_all( '#(`[motc]\d+`.`.*?`)#', $sql[ 'order' ], $order_matches ); |
|
1289 | 1288 | |
1290 | 1289 | $columns = array( |
1291 | - sprintf( '%s AS %s', $select_match[1], $column_to_alias( $select_match[1] ) ) |
|
1290 | + sprintf( '%s AS %s', $select_match[ 1 ], $column_to_alias( $select_match[ 1 ] ) ) |
|
1292 | 1291 | ); |
1293 | 1292 | |
1294 | 1293 | foreach ( array_slice( $order_matches, 1 ) as $match ) { |
1295 | - $columns[] = sprintf( '%s AS %s', $match[0], $column_to_alias( $match[0] ) ); |
|
1294 | + $columns[ ] = sprintf( '%s AS %s', $match[ 0 ], $column_to_alias( $match[ 0 ] ) ); |
|
1296 | 1295 | |
1297 | 1296 | // Rewrite the order columns to the shared aliases |
1298 | - $sql['order'] = str_replace( $match[0], $column_to_alias( $match[0] ), $sql['order'] ); |
|
1297 | + $sql[ 'order' ] = str_replace( $match[ 0 ], $column_to_alias( $match[ 0 ] ), $sql[ 'order' ] ); |
|
1299 | 1298 | } |
1300 | 1299 | |
1301 | 1300 | $columns = array_unique( $columns ); |
1302 | 1301 | |
1303 | 1302 | // Add the columns to every UNION |
1304 | 1303 | foreach ( $unions_sql as $union_sql ) { |
1305 | - $union_sql['select'] .= implode( ', ', $columns ); |
|
1306 | - $unions []= implode( ' ', $union_sql ); |
|
1304 | + $union_sql[ 'select' ] .= implode( ', ', $columns ); |
|
1305 | + $unions [ ] = implode( ' ', $union_sql ); |
|
1307 | 1306 | } |
1308 | 1307 | |
1309 | 1308 | // Add the columns to the main SELECT, but only grab the entry id column |
1310 | - $sql['select'] = 'SELECT SQL_CALC_FOUND_ROWS t1_id FROM (' . $sql['select'] . implode( ', ', $columns ); |
|
1311 | - $sql['order'] = implode( ' ', $unions ) . ') AS u ' . $sql['order']; |
|
1309 | + $sql[ 'select' ] = 'SELECT SQL_CALC_FOUND_ROWS t1_id FROM (' . $sql[ 'select' ] . implode( ', ', $columns ); |
|
1310 | + $sql[ 'order' ] = implode( ' ', $unions ) . ') AS u ' . $sql[ 'order' ]; |
|
1312 | 1311 | |
1313 | 1312 | return $sql; |
1314 | 1313 | } ); |
@@ -1353,20 +1352,20 @@ discard block |
||
1353 | 1352 | } ); |
1354 | 1353 | } else { |
1355 | 1354 | $entries = $this->form->entries |
1356 | - ->filter( \GV\GF_Entry_Filter::from_search_criteria( $parameters['search_criteria'] ) ) |
|
1355 | + ->filter( \GV\GF_Entry_Filter::from_search_criteria( $parameters[ 'search_criteria' ] ) ) |
|
1357 | 1356 | ->offset( $this->settings->get( 'offset' ) ) |
1358 | - ->limit( $parameters['paging']['page_size'] ) |
|
1357 | + ->limit( $parameters[ 'paging' ][ 'page_size' ] ) |
|
1359 | 1358 | ->page( $page ); |
1360 | 1359 | |
1361 | - if ( ! empty( $parameters['sorting'] ) && is_array( $parameters['sorting'] && ! isset( $parameters['sorting']['key'] ) ) ) { |
|
1360 | + if ( ! empty( $parameters[ 'sorting' ] ) && is_array( $parameters[ 'sorting' ] && ! isset( $parameters[ 'sorting' ][ 'key' ] ) ) ) { |
|
1362 | 1361 | // Pluck off multisort arrays |
1363 | - $parameters['sorting'] = $parameters['sorting'][0]; |
|
1362 | + $parameters[ 'sorting' ] = $parameters[ 'sorting' ][ 0 ]; |
|
1364 | 1363 | } |
1365 | 1364 | |
1366 | - if ( ! empty( $parameters['sorting'] ) && ! empty( $parameters['sorting']['key'] ) ) { |
|
1365 | + if ( ! empty( $parameters[ 'sorting' ] ) && ! empty( $parameters[ 'sorting' ][ 'key' ] ) ) { |
|
1367 | 1366 | $field = new \GV\Field(); |
1368 | - $field->ID = $parameters['sorting']['key']; |
|
1369 | - $direction = strtolower( $parameters['sorting']['direction'] ) == 'asc' ? \GV\Entry_Sort::ASC : \GV\Entry_Sort::DESC; |
|
1367 | + $field->ID = $parameters[ 'sorting' ][ 'key' ]; |
|
1368 | + $direction = strtolower( $parameters[ 'sorting' ][ 'direction' ] ) == 'asc' ? \GV\Entry_Sort::ASC : \GV\Entry_Sort::DESC; |
|
1370 | 1369 | $entries = $entries->sort( new \GV\Entry_Sort( $field, $direction ) ); |
1371 | 1370 | } |
1372 | 1371 | } |
@@ -1441,7 +1440,7 @@ discard block |
||
1441 | 1440 | $allowed = $headers = array(); |
1442 | 1441 | |
1443 | 1442 | foreach ( $view->fields->by_position( "directory_*" )->by_visible( $view )->all() as $id => $field ) { |
1444 | - $allowed[] = $field; |
|
1443 | + $allowed[ ] = $field; |
|
1445 | 1444 | } |
1446 | 1445 | |
1447 | 1446 | $renderer = new Field_Renderer(); |
@@ -1463,17 +1462,17 @@ discard block |
||
1463 | 1462 | } ); |
1464 | 1463 | |
1465 | 1464 | foreach ( array_diff( $allowed_field_ids, wp_list_pluck( $allowed, 'ID' ) ) as $field_id ) { |
1466 | - $allowed[] = is_numeric( $field_id ) ? \GV\GF_Field::by_id( $view->form, $field_id ) : \GV\Internal_Field::by_id( $field_id ); |
|
1465 | + $allowed[ ] = is_numeric( $field_id ) ? \GV\GF_Field::by_id( $view->form, $field_id ) : \GV\Internal_Field::by_id( $field_id ); |
|
1467 | 1466 | } |
1468 | 1467 | |
1469 | 1468 | foreach ( $allowed as $field ) { |
1470 | 1469 | $source = is_numeric( $field->ID ) ? $view->form : new \GV\Internal_Source(); |
1471 | 1470 | |
1472 | - $return[] = $renderer->render( $field, $view, $source, $entry, gravityview()->request, '\GV\Field_CSV_Template' ); |
|
1471 | + $return[ ] = $renderer->render( $field, $view, $source, $entry, gravityview()->request, '\GV\Field_CSV_Template' ); |
|
1473 | 1472 | |
1474 | 1473 | if ( ! $headers_done ) { |
1475 | 1474 | $label = $field->get_label( $view, $source, $entry ); |
1476 | - $headers[] = $label ? $label : $field->ID; |
|
1475 | + $headers[ ] = $label ? $label : $field->ID; |
|
1477 | 1476 | } |
1478 | 1477 | } |
1479 | 1478 |
@@ -163,14 +163,14 @@ |
||
163 | 163 | return $settings; |
164 | 164 | } |
165 | 165 | |
166 | - /** |
|
166 | + /** |
|
167 | 167 | * Get the Widget ID. |
168 | 168 | * |
169 | - * @return string The Widget ID. |
|
170 | - */ |
|
171 | - public function get_widget_id() { |
|
172 | - return $this->widget_id; |
|
173 | - } |
|
169 | + * @return string The Widget ID. |
|
170 | + */ |
|
171 | + public function get_widget_id() { |
|
172 | + return $this->widget_id; |
|
173 | + } |
|
174 | 174 | |
175 | 175 | /** |
176 | 176 | * Get the widget settings |
@@ -151,7 +151,7 @@ discard block |
||
151 | 151 | $enable_custom_class = apply_filters( 'gravityview/widget/enable_custom_class', false, $this ); |
152 | 152 | |
153 | 153 | if ( $enable_custom_class ) { |
154 | - $settings['custom_class'] = array( |
|
154 | + $settings[ 'custom_class' ] = array( |
|
155 | 155 | 'type' => 'text', |
156 | 156 | 'label' => __( 'Custom CSS Class:', 'gravityview' ), |
157 | 157 | 'desc' => __( 'This class will be added to the widget container', 'gravityview' ), |
@@ -203,8 +203,8 @@ discard block |
||
203 | 203 | */ |
204 | 204 | public static function get_default_widget_areas() { |
205 | 205 | $default_areas = array( |
206 | - array( '1-1' => array( array( 'areaid' => 'top', 'title' => __( 'Top', 'gravityview' ) , 'subtitle' => '' ) ) ), |
|
207 | - array( '1-2' => array( array( 'areaid' => 'left', 'title' => __( 'Left', 'gravityview' ) , 'subtitle' => '' ) ), '2-2' => array( array( 'areaid' => 'right', 'title' => __( 'Right', 'gravityview' ) , 'subtitle' => '' ) ) ), |
|
206 | + array( '1-1' => array( array( 'areaid' => 'top', 'title' => __( 'Top', 'gravityview' ), 'subtitle' => '' ) ) ), |
|
207 | + array( '1-2' => array( array( 'areaid' => 'left', 'title' => __( 'Left', 'gravityview' ), 'subtitle' => '' ) ), '2-2' => array( array( 'areaid' => 'right', 'title' => __( 'Right', 'gravityview' ), 'subtitle' => '' ) ) ), |
|
208 | 208 | ); |
209 | 209 | |
210 | 210 | /** |
@@ -234,7 +234,7 @@ discard block |
||
234 | 234 | } |
235 | 235 | |
236 | 236 | $widgets[ $this->get_widget_id() ] = array( |
237 | - 'label' => $this->widget_label , |
|
237 | + 'label' => $this->widget_label, |
|
238 | 238 | 'description' => $this->widget_description, |
239 | 239 | 'subtitle' => $this->widget_subtitle, |
240 | 240 | 'class' => get_called_class(), |
@@ -255,7 +255,7 @@ discard block |
||
255 | 255 | */ |
256 | 256 | public function assign_widget_options( $options = array(), $template = '', $widget = '' ) { |
257 | 257 | if ( $this->get_widget_id() === $widget ) { |
258 | - if( $settings = $this->get_settings() ) { |
|
258 | + if ( $settings = $this->get_settings() ) { |
|
259 | 259 | $options = array_merge( $options, $settings ); |
260 | 260 | } |
261 | 261 | } |
@@ -306,7 +306,7 @@ discard block |
||
306 | 306 | return; |
307 | 307 | } |
308 | 308 | |
309 | - add_shortcode( $this->shortcode_name, array( $this, 'render_shortcode') ); |
|
309 | + add_shortcode( $this->shortcode_name, array( $this, 'render_shortcode' ) ); |
|
310 | 310 | } |
311 | 311 | |
312 | 312 | /** |
@@ -393,7 +393,7 @@ |
||
393 | 393 | * @internal |
394 | 394 | * @since 2.0 |
395 | 395 | * |
396 | - * @return \GV\Widget|null The widget implementation from configuration or none. |
|
396 | + * @return Widget The widget implementation from configuration or none. |
|
397 | 397 | */ |
398 | 398 | public static function from_configuration( $configuration ) { |
399 | 399 | $registered_widgets = self::registered(); |
@@ -34,7 +34,7 @@ |
||
34 | 34 | global $post; |
35 | 35 | |
36 | 36 | if ( $post ) { |
37 | - $context['post'] = $post; |
|
37 | + $context[ 'post' ] = $post; |
|
38 | 38 | } |
39 | 39 | |
40 | 40 | \GV\Mocks\Legacy_Context::push( $context ); |
@@ -113,14 +113,14 @@ |
||
113 | 113 | |
114 | 114 | /** Require critical legacy core files. @todo Deprecate */ |
115 | 115 | require_once $this->plugin->dir( 'includes/helper-functions.php' ); |
116 | - require_once $this->plugin->dir( 'includes/class-common.php'); |
|
117 | - require_once $this->plugin->dir( 'includes/connector-functions.php'); |
|
116 | + require_once $this->plugin->dir( 'includes/class-common.php' ); |
|
117 | + require_once $this->plugin->dir( 'includes/connector-functions.php' ); |
|
118 | 118 | require_once $this->plugin->dir( 'includes/class-gravityview-compatibility.php' ); |
119 | 119 | require_once $this->plugin->dir( 'includes/class-gravityview-roles-capabilities.php' ); |
120 | 120 | require_once $this->plugin->dir( 'includes/class-gravityview-admin-notices.php' ); |
121 | 121 | require_once $this->plugin->dir( 'includes/class-admin.php' ); |
122 | - require_once $this->plugin->dir( 'includes/class-post-types.php'); |
|
123 | - require_once $this->plugin->dir( 'includes/class-cache.php'); |
|
122 | + require_once $this->plugin->dir( 'includes/class-post-types.php' ); |
|
123 | + require_once $this->plugin->dir( 'includes/class-cache.php' ); |
|
124 | 124 | |
125 | 125 | /** |
126 | 126 | * GravityView extensions and widgets. |