@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | $meta_keys = apply_filters_ref_array( 'gravityview/view_collection/from_post/meta_keys', array( array(), $post, &$views ) ); |
100 | 100 | |
101 | 101 | if ( function_exists( 'apply_filters_deprecated' ) ) { |
102 | - $meta_keys = (array) apply_filters_deprecated( 'gravityview/data/parse/meta_keys', array( $meta_keys, $post->ID ), '2.0.7', 'gravityview/view_collection/from_post/meta_keys' ); |
|
102 | + $meta_keys = (array)apply_filters_deprecated( 'gravityview/data/parse/meta_keys', array( $meta_keys, $post->ID ), '2.0.7', 'gravityview/view_collection/from_post/meta_keys' ); |
|
103 | 103 | } else { |
104 | 104 | /** |
105 | 105 | * @filter `gravityview/data/parse/meta_keys` |
@@ -107,7 +107,7 @@ discard block |
||
107 | 107 | * @todo Require WP 4.6.0 so that `apply_filters_deprecated` is always available |
108 | 108 | * @see The `gravityview/view_collection/from_post/meta_keys` filter. |
109 | 109 | */ |
110 | - $meta_keys = (array) apply_filters( 'gravityview/data/parse/meta_keys', $meta_keys, $post->ID ); |
|
110 | + $meta_keys = (array)apply_filters( 'gravityview/data/parse/meta_keys', $meta_keys, $post->ID ); |
|
111 | 111 | } |
112 | 112 | |
113 | 113 | /** What about inside post meta values? */ |
@@ -137,12 +137,12 @@ discard block |
||
137 | 137 | |
138 | 138 | /** Let's find us some [gravityview] shortcodes perhaps. */ |
139 | 139 | foreach ( Shortcode::parse( $content ) as $shortcode ) { |
140 | - if ( $shortcode->name != 'gravityview' || empty( $shortcode->atts['id'] ) ) { |
|
140 | + if ( $shortcode->name != 'gravityview' || empty( $shortcode->atts[ 'id' ] ) ) { |
|
141 | 141 | continue; |
142 | 142 | } |
143 | 143 | |
144 | - if ( is_numeric( $shortcode->atts['id'] ) ) { |
|
145 | - $view = View::by_id( $shortcode->atts['id'] ); |
|
144 | + if ( is_numeric( $shortcode->atts[ 'id' ] ) ) { |
|
145 | + $view = View::by_id( $shortcode->atts[ 'id' ] ); |
|
146 | 146 | if ( ! $view ) { |
147 | 147 | continue; |
148 | 148 | } |
@@ -39,19 +39,19 @@ discard block |
||
39 | 39 | */ |
40 | 40 | function merge_content_meta_keys( $meta_keys = array(), $post = null, & $views = null ) { |
41 | 41 | |
42 | - if( empty( $post->panels_data ) || empty( $post->panels_data['widgets'] ) ) { |
|
42 | + if ( empty( $post->panels_data ) || empty( $post->panels_data[ 'widgets' ] ) ) { |
|
43 | 43 | return $meta_keys; |
44 | 44 | } |
45 | 45 | |
46 | - foreach ( (array) $post->panels_data['widgets'] as $widget ) { |
|
46 | + foreach ( (array)$post->panels_data[ 'widgets' ] as $widget ) { |
|
47 | 47 | |
48 | 48 | $views->merge( \GV\View_Collection::from_content( \GV\Utils::get( $widget, 'text' ) ) ); |
49 | 49 | |
50 | - if ( empty( $widget['tabs'] ) || ! is_array( $widget['tabs'] ) ) { |
|
50 | + if ( empty( $widget[ 'tabs' ] ) || ! is_array( $widget[ 'tabs' ] ) ) { |
|
51 | 51 | continue; |
52 | 52 | } |
53 | 53 | |
54 | - foreach ( $widget['tabs'] as $tab ) { |
|
54 | + foreach ( $widget[ 'tabs' ] as $tab ) { |
|
55 | 55 | |
56 | 56 | // Livemesh Tabs |
57 | 57 | $backup = \GV\Utils::get( $tab, 'tab_content' ); |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | // SiteOrigin Tabs |
60 | 60 | $content = \GV\Utils::get( $tab, 'content_text', $backup ); |
61 | 61 | |
62 | - if( $content ) { |
|
62 | + if ( $content ) { |
|
63 | 63 | $views->merge( \GV\View_Collection::from_content( $content ) ); |
64 | 64 | } |
65 | 65 | } |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | |
56 | 56 | $acf_keys = get_field_objects( $post->ID, array( 'load_value' => false ) ); |
57 | 57 | |
58 | - if( $acf_keys ) { |
|
58 | + if ( $acf_keys ) { |
|
59 | 59 | return array_merge( array_keys( $acf_keys ), $meta_keys ); |
60 | 60 | } |
61 | 61 | |
@@ -70,9 +70,9 @@ discard block |
||
70 | 70 | * @return void |
71 | 71 | */ |
72 | 72 | private function fix_posted_fields() { |
73 | - if( is_admin() && isset( $_POST['action'] ) && isset( $_POST['post_type'] ) ) { |
|
74 | - if( 'editpost' === $_POST['action'] && 'gravityview' === $_POST['post_type'] ) { |
|
75 | - $_POST['fields'] = _gravityview_process_posted_fields(); |
|
73 | + if ( is_admin() && isset( $_POST[ 'action' ] ) && isset( $_POST[ 'post_type' ] ) ) { |
|
74 | + if ( 'editpost' === $_POST[ 'action' ] && 'gravityview' === $_POST[ 'post_type' ] ) { |
|
75 | + $_POST[ 'fields' ] = _gravityview_process_posted_fields(); |
|
76 | 76 | } |
77 | 77 | } |
78 | 78 | } |
@@ -24,9 +24,8 @@ |
||
24 | 24 | /** |
25 | 25 | * Get a \GV\Field by Field ID for this data source. |
26 | 26 | * |
27 | - * @param int $field_id The internal field ID (custom content, etc.) |
|
28 | 27 | * |
29 | - * @return \GV\Field|null The requested field or null if not found. |
|
28 | + * @return null|Internal_Field The requested field or null if not found. |
|
30 | 29 | */ |
31 | 30 | public static function get_field( /** varargs */ ) { |
32 | 31 | $args = func_get_args(); |
@@ -29,12 +29,12 @@ |
||
29 | 29 | */ |
30 | 30 | public static function from_configuration( $configuration ) { |
31 | 31 | |
32 | - if ( empty( $configuration['id'] ) || ! is_string( $configuration['id'] ) ) { |
|
32 | + if ( empty( $configuration[ 'id' ] ) || ! is_string( $configuration[ 'id' ] ) ) { |
|
33 | 33 | gravityview()->log->error( 'Invalid configuration[id] supplied.' ); |
34 | 34 | return null; |
35 | 35 | } |
36 | 36 | |
37 | - $field = self::by_id( $configuration['id'] ); |
|
37 | + $field = self::by_id( $configuration[ 'id' ] ); |
|
38 | 38 | |
39 | 39 | $field->update_configuration( $configuration ); |
40 | 40 |
@@ -53,7 +53,6 @@ discard block |
||
53 | 53 | * Columns are able to be added to View layouts, but not separately searched! |
54 | 54 | * |
55 | 55 | * @param array $fields |
56 | - * @param int $form_id |
|
57 | 56 | * |
58 | 57 | * @return array |
59 | 58 | */ |
@@ -133,7 +132,7 @@ discard block |
||
133 | 132 | * |
134 | 133 | * @param GF_Field_List $field Gravity Forms field |
135 | 134 | * @param string|array $field_value Serialized or unserialized array value for the field |
136 | - * @param int|string $column_id The numeric key of the column (0-index) or the label of the column |
|
135 | + * @param integer $column_id The numeric key of the column (0-index) or the label of the column |
|
137 | 136 | * @param string $format If set to 'raw', return an array of values for the column. Otherwise, allow Gravity Forms to render using `html` or `text` |
138 | 137 | * |
139 | 138 | * @return array|string|null Returns null if the $field_value passed wasn't an array or serialized array |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | public function remove_columns_from_searchable_fields( $fields ) { |
61 | 61 | |
62 | 62 | foreach ( $fields as $key => $field ) { |
63 | - if ( isset( $field['parent'] ) && $field['parent'] instanceof \GF_Field_List ) { |
|
63 | + if ( isset( $field[ 'parent' ] ) && $field[ 'parent' ] instanceof \GF_Field_List ) { |
|
64 | 64 | unset( $fields[ $key ] ); |
65 | 65 | } |
66 | 66 | } |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | // Add the list columns |
87 | 87 | foreach ( $list_fields as $list_field ) { |
88 | 88 | |
89 | - if( empty( $list_field->enableColumns ) ) { |
|
89 | + if ( empty( $list_field->enableColumns ) ) { |
|
90 | 90 | continue; |
91 | 91 | } |
92 | 92 | |
@@ -107,7 +107,7 @@ discard block |
||
107 | 107 | } |
108 | 108 | |
109 | 109 | // If there are columns, add them under the parent field |
110 | - if( ! empty( $list_columns ) ) { |
|
110 | + if ( ! empty( $list_columns ) ) { |
|
111 | 111 | |
112 | 112 | $index = array_search( $list_field->id, array_keys( $fields ) ) + 1; |
113 | 113 | |
@@ -115,7 +115,7 @@ discard block |
||
115 | 115 | * Merge the $list_columns into the $fields array at $index |
116 | 116 | * @see https://stackoverflow.com/a/1783125 |
117 | 117 | */ |
118 | - $fields = array_slice( $fields, 0, $index, true) + $list_columns + array_slice( $fields, $index, null, true); |
|
118 | + $fields = array_slice( $fields, 0, $index, true ) + $list_columns + array_slice( $fields, $index, null, true ); |
|
119 | 119 | } |
120 | 120 | |
121 | 121 | unset( $list_columns, $index, $input_id ); |
@@ -142,7 +142,7 @@ discard block |
||
142 | 142 | |
143 | 143 | $list_rows = maybe_unserialize( $field_value ); |
144 | 144 | |
145 | - if( ! is_array( $list_rows ) ) { |
|
145 | + if ( ! is_array( $list_rows ) ) { |
|
146 | 146 | gravityview()->log->error( '$field_value did not unserialize', array( 'data' => $field_value ) ); |
147 | 147 | return null; |
148 | 148 | } |
@@ -152,18 +152,18 @@ discard block |
||
152 | 152 | // Each list row |
153 | 153 | foreach ( $list_rows as $list_row ) { |
154 | 154 | $current_column = 0; |
155 | - foreach ( (array) $list_row as $column_key => $column_value ) { |
|
155 | + foreach ( (array)$list_row as $column_key => $column_value ) { |
|
156 | 156 | |
157 | 157 | // If the label of the column matches $column_id, or the numeric key value matches, add the value |
158 | - if( (string)$column_key === (string)$column_id || ( is_numeric( $column_id ) && (int)$column_id === $current_column ) ) { |
|
159 | - $column_values[] = $column_value; |
|
158 | + if ( (string)$column_key === (string)$column_id || ( is_numeric( $column_id ) && (int)$column_id === $current_column ) ) { |
|
159 | + $column_values[ ] = $column_value; |
|
160 | 160 | } |
161 | 161 | $current_column++; |
162 | 162 | } |
163 | 163 | } |
164 | 164 | |
165 | 165 | // Return the array of values |
166 | - if( 'raw' === $format ) { |
|
166 | + if ( 'raw' === $format ) { |
|
167 | 167 | return $column_values; |
168 | 168 | } |
169 | 169 | // Return the Gravity Forms Field output |
@@ -186,22 +186,22 @@ discard block |
||
186 | 186 | */ |
187 | 187 | public function _filter_field_label( $label, $field, $form, $entry ) { |
188 | 188 | |
189 | - $field_object = RGFormsModel::get_field( $form, $field['id'] ); |
|
189 | + $field_object = RGFormsModel::get_field( $form, $field[ 'id' ] ); |
|
190 | 190 | |
191 | 191 | // Not a list field |
192 | - if( ! $field_object || 'list' !== $field_object->type ) { |
|
192 | + if ( ! $field_object || 'list' !== $field_object->type ) { |
|
193 | 193 | return $label; |
194 | 194 | } |
195 | 195 | |
196 | 196 | // Custom label is defined, so use it |
197 | - if( ! empty( $field['custom_label'] ) ) { |
|
197 | + if ( ! empty( $field[ 'custom_label' ] ) ) { |
|
198 | 198 | return $label; |
199 | 199 | } |
200 | 200 | |
201 | - $column_id = gravityview_get_input_id_from_id( $field['id'] ); |
|
201 | + $column_id = gravityview_get_input_id_from_id( $field[ 'id' ] ); |
|
202 | 202 | |
203 | 203 | // Parent field, not column field |
204 | - if( false === $column_id ) { |
|
204 | + if ( false === $column_id ) { |
|
205 | 205 | return $label; |
206 | 206 | } |
207 | 207 | |
@@ -222,7 +222,7 @@ discard block |
||
222 | 222 | public static function get_column_label( GF_Field_List $field, $column_id, $backup_label = '' ) { |
223 | 223 | |
224 | 224 | // Doesn't have columns enabled |
225 | - if( ! isset( $field->choices ) || ! $field->enableColumns ) { |
|
225 | + if ( ! isset( $field->choices ) || ! $field->enableColumns ) { |
|
226 | 226 | return $backup_label; |
227 | 227 | } |
228 | 228 |
@@ -603,7 +603,8 @@ discard block |
||
603 | 603 | // Fast-forward 24 hour on the end time |
604 | 604 | $curr_end = date( 'Y-m-d H:i:s', strtotime( $curr_end ) + DAY_IN_SECONDS ); |
605 | 605 | $search_criteria['end_date'] = $adjust_tz ? get_gmt_from_date( $curr_end ) : $curr_end; |
606 | - if ( strpos( $search_criteria['end_date'], '00:00:00' ) ) { // See https://github.com/gravityview/GravityView/issues/1056 |
|
606 | + if ( strpos( $search_criteria['end_date'], '00:00:00' ) ) { |
|
607 | +// See https://github.com/gravityview/GravityView/issues/1056 |
|
607 | 608 | $search_criteria['end_date'] = date( 'Y-m-d H:i:s', strtotime( $search_criteria['end_date'] ) - 1 ); |
608 | 609 | } |
609 | 610 | } |
@@ -874,7 +875,7 @@ discard block |
||
874 | 875 | 'ymd_dot' => 'Y.m.d', |
875 | 876 | ); |
876 | 877 | |
877 | - if ( ! empty( $field->dateFormat ) && isset( $datepicker[ $field->dateFormat ] ) ){ |
|
878 | + if ( ! empty( $field->dateFormat ) && isset( $datepicker[ $field->dateFormat ] ) ) { |
|
878 | 879 | $format = $datepicker[ $field->dateFormat ]; |
879 | 880 | } |
880 | 881 |
@@ -246,7 +246,7 @@ discard block |
||
246 | 246 | /** |
247 | 247 | * Add admin script to the no-conflict scripts whitelist |
248 | 248 | * @param array $allowed Scripts allowed in no-conflict mode |
249 | - * @return array Scripts allowed in no-conflict mode, plus the search widget script |
|
249 | + * @return string[] Scripts allowed in no-conflict mode, plus the search widget script |
|
250 | 250 | */ |
251 | 251 | public function register_no_conflict( $allowed ) { |
252 | 252 | $allowed[] = 'gravityview_searchwidget_admin'; |
@@ -420,6 +420,7 @@ discard block |
||
420 | 420 | * Display hidden fields to add support for sites using Default permalink structure |
421 | 421 | * |
422 | 422 | * @since 1.8 |
423 | + * @param GravityView_Widget_Search $object |
|
423 | 424 | * @return array Search fields, modified if not using permalinks |
424 | 425 | */ |
425 | 426 | public function add_no_permalink_fields( $search_fields, $object, $widget_args = array() ) { |
@@ -729,7 +730,6 @@ discard block |
||
729 | 730 | * Dropin for the legacy flat filters when \GF_Query is available. |
730 | 731 | * |
731 | 732 | * @param \GF_Query $query The current query object reference |
732 | - * @param \GV\View $this The current view object |
|
733 | 733 | * @param \GV\Request $request The request object |
734 | 734 | */ |
735 | 735 | public function gf_query_filter( &$query, $view, $request ) { |
@@ -1428,7 +1428,7 @@ discard block |
||
1428 | 1428 | /** |
1429 | 1429 | * Get the label for a search form field |
1430 | 1430 | * @param array $field Field setting as sent by the GV configuration - has `field`, `input` (input type), and `label` keys |
1431 | - * @param array $form_field Form field data, as fetched by `gravityview_get_field()` |
|
1431 | + * @param GF_Field|null $form_field Form field data, as fetched by `gravityview_get_field()` |
|
1432 | 1432 | * @return string Label for the search form |
1433 | 1433 | */ |
1434 | 1434 | private static function get_field_label( $field, $form_field = array() ) { |
@@ -1486,7 +1486,7 @@ discard block |
||
1486 | 1486 | * @param array $field |
1487 | 1487 | * @param \GV\Context $context |
1488 | 1488 | * |
1489 | - * @return array |
|
1489 | + * @return GV\View |
|
1490 | 1490 | */ |
1491 | 1491 | private function get_search_filter_details( $field, $context ) { |
1492 | 1492 | |
@@ -1634,7 +1634,7 @@ discard block |
||
1634 | 1634 | /** |
1635 | 1635 | * Require the datepicker script for the frontend GV script |
1636 | 1636 | * @param array $js_dependencies Array of existing required scripts for the fe-views.js script |
1637 | - * @return array Array required scripts, with `jquery-ui-datepicker` added |
|
1637 | + * @return string[] Array required scripts, with `jquery-ui-datepicker` added |
|
1638 | 1638 | */ |
1639 | 1639 | public function add_datepicker_js_dependency( $js_dependencies ) { |
1640 | 1640 | |
@@ -1646,7 +1646,7 @@ discard block |
||
1646 | 1646 | /** |
1647 | 1647 | * Modify the array passed to wp_localize_script() |
1648 | 1648 | * |
1649 | - * @param array $js_localization The data padded to the Javascript file |
|
1649 | + * @param array $localizations The data padded to the Javascript file |
|
1650 | 1650 | * @param array $view_data View data array with View settings |
1651 | 1651 | * |
1652 | 1652 | * @return array |
@@ -1826,7 +1826,7 @@ discard block |
||
1826 | 1826 | * |
1827 | 1827 | * @param array $get Where to look for the operator. |
1828 | 1828 | * @param string $key The filter key to look for. |
1829 | - * @param array $allowed The allowed operators (whitelist). |
|
1829 | + * @param string[] $allowed The allowed operators (whitelist). |
|
1830 | 1830 | * @param string $default The default operator. |
1831 | 1831 | * |
1832 | 1832 | * @return string The operator. |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | 'type' => 'radio', |
65 | 65 | 'full_width' => true, |
66 | 66 | 'label' => esc_html__( 'Search Mode', 'gravityview' ), |
67 | - 'desc' => __('Should search results match all search fields, or any?', 'gravityview'), |
|
67 | + 'desc' => __( 'Should search results match all search fields, or any?', 'gravityview' ), |
|
68 | 68 | 'value' => 'any', |
69 | 69 | 'class' => 'hide-if-js', |
70 | 70 | 'options' => array( |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | |
84 | 84 | // admin - add scripts - run at 1100 to make sure GravityView_Admin_Views::add_scripts_and_styles() runs first at 999 |
85 | 85 | add_action( 'admin_enqueue_scripts', array( $this, 'add_scripts_and_styles' ), 1100 ); |
86 | - add_action( 'wp_enqueue_scripts', array( $this, 'register_scripts') ); |
|
86 | + add_action( 'wp_enqueue_scripts', array( $this, 'register_scripts' ) ); |
|
87 | 87 | add_filter( 'gravityview_noconflict_scripts', array( $this, 'register_no_conflict' ) ); |
88 | 88 | |
89 | 89 | // ajax - get the searchable fields |
@@ -227,7 +227,7 @@ discard block |
||
227 | 227 | $script_min = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min'; |
228 | 228 | $script_source = empty( $script_min ) ? '/source' : ''; |
229 | 229 | |
230 | - wp_enqueue_script( 'gravityview_searchwidget_admin', plugins_url( 'assets/js'.$script_source.'/admin-search-widget'.$script_min.'.js', __FILE__ ), array( 'jquery', 'gravityview_views_scripts' ), \GV\Plugin::$version ); |
|
230 | + wp_enqueue_script( 'gravityview_searchwidget_admin', plugins_url( 'assets/js' . $script_source . '/admin-search-widget' . $script_min . '.js', __FILE__ ), array( 'jquery', 'gravityview_views_scripts' ), \GV\Plugin::$version ); |
|
231 | 231 | |
232 | 232 | wp_localize_script( 'gravityview_searchwidget_admin', 'gvSearchVar', array( |
233 | 233 | 'nonce' => wp_create_nonce( 'gravityview_ajaxsearchwidget' ), |
@@ -249,7 +249,7 @@ discard block |
||
249 | 249 | * @return array Scripts allowed in no-conflict mode, plus the search widget script |
250 | 250 | */ |
251 | 251 | public function register_no_conflict( $allowed ) { |
252 | - $allowed[] = 'gravityview_searchwidget_admin'; |
|
252 | + $allowed[ ] = 'gravityview_searchwidget_admin'; |
|
253 | 253 | return $allowed; |
254 | 254 | } |
255 | 255 | |
@@ -262,20 +262,20 @@ discard block |
||
262 | 262 | */ |
263 | 263 | public static function get_searchable_fields() { |
264 | 264 | |
265 | - if ( ! isset( $_POST['nonce'] ) || ! wp_verify_nonce( $_POST['nonce'], 'gravityview_ajaxsearchwidget' ) ) { |
|
265 | + if ( ! isset( $_POST[ 'nonce' ] ) || ! wp_verify_nonce( $_POST[ 'nonce' ], 'gravityview_ajaxsearchwidget' ) ) { |
|
266 | 266 | exit( '0' ); |
267 | 267 | } |
268 | 268 | |
269 | 269 | $form = ''; |
270 | 270 | |
271 | 271 | // Fetch the form for the current View |
272 | - if ( ! empty( $_POST['view_id'] ) ) { |
|
272 | + if ( ! empty( $_POST[ 'view_id' ] ) ) { |
|
273 | 273 | |
274 | - $form = gravityview_get_form_id( $_POST['view_id'] ); |
|
274 | + $form = gravityview_get_form_id( $_POST[ 'view_id' ] ); |
|
275 | 275 | |
276 | - } elseif ( ! empty( $_POST['formid'] ) ) { |
|
276 | + } elseif ( ! empty( $_POST[ 'formid' ] ) ) { |
|
277 | 277 | |
278 | - $form = (int) $_POST['formid']; |
|
278 | + $form = (int)$_POST[ 'formid' ]; |
|
279 | 279 | |
280 | 280 | } |
281 | 281 | |
@@ -325,14 +325,14 @@ discard block |
||
325 | 325 | ); |
326 | 326 | |
327 | 327 | if ( gravityview()->plugin->supports( \GV\Plugin::FEATURE_GFQUERY ) ) { |
328 | - $custom_fields['is_approved'] = array( |
|
328 | + $custom_fields[ 'is_approved' ] = array( |
|
329 | 329 | 'text' => esc_html__( 'Approval Status', 'gravityview' ), |
330 | 330 | 'type' => 'multi', |
331 | 331 | ); |
332 | 332 | } |
333 | 333 | |
334 | - foreach( $custom_fields as $custom_field_key => $custom_field ) { |
|
335 | - $output .= sprintf( '<option value="%s" %s data-inputtypes="%s" data-placeholder="%s">%s</option>', $custom_field_key, selected( $custom_field_key, $current, false ), $custom_field['type'], self::get_field_label( array('field' => $custom_field_key ) ), $custom_field['text'] ); |
|
334 | + foreach ( $custom_fields as $custom_field_key => $custom_field ) { |
|
335 | + $output .= sprintf( '<option value="%s" %s data-inputtypes="%s" data-placeholder="%s">%s</option>', $custom_field_key, selected( $custom_field_key, $current, false ), $custom_field[ 'type' ], self::get_field_label( array( 'field' => $custom_field_key ) ), $custom_field[ 'text' ] ); |
|
336 | 336 | } |
337 | 337 | |
338 | 338 | // Get fields with sub-inputs and no parent |
@@ -354,13 +354,13 @@ discard block |
||
354 | 354 | |
355 | 355 | foreach ( $fields as $id => $field ) { |
356 | 356 | |
357 | - if ( in_array( $field['type'], $blacklist_field_types ) ) { |
|
357 | + if ( in_array( $field[ 'type' ], $blacklist_field_types ) ) { |
|
358 | 358 | continue; |
359 | 359 | } |
360 | 360 | |
361 | - $types = self::get_search_input_types( $id, $field['type'] ); |
|
361 | + $types = self::get_search_input_types( $id, $field[ 'type' ] ); |
|
362 | 362 | |
363 | - $output .= '<option value="'. $id .'" '. selected( $id, $current, false ).'data-inputtypes="'. esc_attr( $types ) .'">'. esc_html( $field['label'] ) .'</option>'; |
|
363 | + $output .= '<option value="' . $id . '" ' . selected( $id, $current, false ) . 'data-inputtypes="' . esc_attr( $types ) . '">' . esc_html( $field[ 'label' ] ) . '</option>'; |
|
364 | 364 | } |
365 | 365 | } |
366 | 366 | |
@@ -383,7 +383,7 @@ discard block |
||
383 | 383 | public static function get_search_input_types( $field_id = '', $field_type = null ) { |
384 | 384 | |
385 | 385 | // @todo - This needs to be improved - many fields have . including products and addresses |
386 | - if ( false !== strpos( (string) $field_id, '.' ) && in_array( $field_type, array( 'checkbox' ) ) || in_array( $field_id, array( 'is_fulfilled' ) ) ) { |
|
386 | + if ( false !== strpos( (string)$field_id, '.' ) && in_array( $field_type, array( 'checkbox' ) ) || in_array( $field_id, array( 'is_fulfilled' ) ) ) { |
|
387 | 387 | $input_type = 'boolean'; // on/off checkbox |
388 | 388 | } elseif ( in_array( $field_type, array( 'checkbox', 'post_category', 'multiselect' ) ) ) { |
389 | 389 | $input_type = 'multi'; //multiselect |
@@ -429,19 +429,19 @@ discard block |
||
429 | 429 | $post_id = 0; |
430 | 430 | |
431 | 431 | // We're in the WordPress Widget context, and an overriding post ID has been set. |
432 | - if ( ! empty( $widget_args['post_id'] ) ) { |
|
433 | - $post_id = absint( $widget_args['post_id'] ); |
|
432 | + if ( ! empty( $widget_args[ 'post_id' ] ) ) { |
|
433 | + $post_id = absint( $widget_args[ 'post_id' ] ); |
|
434 | 434 | } |
435 | 435 | // We're in the WordPress Widget context, and the base View ID should be used |
436 | - else if ( ! empty( $widget_args['view_id'] ) ) { |
|
437 | - $post_id = absint( $widget_args['view_id'] ); |
|
436 | + else if ( ! empty( $widget_args[ 'view_id' ] ) ) { |
|
437 | + $post_id = absint( $widget_args[ 'view_id' ] ); |
|
438 | 438 | } |
439 | 439 | |
440 | 440 | $args = gravityview_get_permalink_query_args( $post_id ); |
441 | 441 | |
442 | 442 | // Add hidden fields to the search form |
443 | 443 | foreach ( $args as $key => $value ) { |
444 | - $search_fields[] = array( |
|
444 | + $search_fields[ ] = array( |
|
445 | 445 | 'name' => $key, |
446 | 446 | 'input' => 'hidden', |
447 | 447 | 'value' => $value, |
@@ -480,28 +480,28 @@ discard block |
||
480 | 480 | /** |
481 | 481 | * Include the sidebar Widgets. |
482 | 482 | */ |
483 | - $widgets = (array) get_option( 'widget_gravityview_search', array() ); |
|
483 | + $widgets = (array)get_option( 'widget_gravityview_search', array() ); |
|
484 | 484 | |
485 | 485 | foreach ( $widgets as $widget ) { |
486 | - if ( ! empty( $widget['view_id'] ) && $widget['view_id'] == $view->ID ) { |
|
487 | - if( $_fields = json_decode( $widget['search_fields'], true ) ) { |
|
486 | + if ( ! empty( $widget[ 'view_id' ] ) && $widget[ 'view_id' ] == $view->ID ) { |
|
487 | + if ( $_fields = json_decode( $widget[ 'search_fields' ], true ) ) { |
|
488 | 488 | foreach ( $_fields as $field ) { |
489 | - if ( empty( $field['form_id'] ) ) { |
|
490 | - $field['form_id'] = $view->form ? $view->form->ID : 0; |
|
489 | + if ( empty( $field[ 'form_id' ] ) ) { |
|
490 | + $field[ 'form_id' ] = $view->form ? $view->form->ID : 0; |
|
491 | 491 | } |
492 | - $searchable_fields[] = $with_full_field ? $field : $field['field']; |
|
492 | + $searchable_fields[ ] = $with_full_field ? $field : $field[ 'field' ]; |
|
493 | 493 | } |
494 | 494 | } |
495 | 495 | } |
496 | 496 | } |
497 | 497 | |
498 | 498 | foreach ( $view->widgets->by_id( $this->get_widget_id() )->all() as $widget ) { |
499 | - if( $_fields = json_decode( $widget->configuration->get( 'search_fields' ), true ) ) { |
|
499 | + if ( $_fields = json_decode( $widget->configuration->get( 'search_fields' ), true ) ) { |
|
500 | 500 | foreach ( $_fields as $field ) { |
501 | - if ( empty( $field['form_id'] ) ) { |
|
502 | - $field['form_id'] = $view->form ? $view->form->ID : 0; |
|
501 | + if ( empty( $field[ 'form_id' ] ) ) { |
|
502 | + $field[ 'form_id' ] = $view->form ? $view->form->ID : 0; |
|
503 | 503 | } |
504 | - $searchable_fields[] = $with_full_field ? $field : $field['field']; |
|
504 | + $searchable_fields[ ] = $with_full_field ? $field : $field[ 'field' ]; |
|
505 | 505 | } |
506 | 506 | } |
507 | 507 | } |
@@ -539,7 +539,7 @@ discard block |
||
539 | 539 | return $search_criteria; // Return the original criteria, GF_Query modification kicks in later |
540 | 540 | } |
541 | 541 | |
542 | - if( 'post' === $this->search_method ) { |
|
542 | + if ( 'post' === $this->search_method ) { |
|
543 | 543 | $get = $_POST; |
544 | 544 | } else { |
545 | 545 | $get = $_GET; |
@@ -558,15 +558,15 @@ discard block |
||
558 | 558 | $get = gv_map_deep( $get, 'rawurldecode' ); |
559 | 559 | |
560 | 560 | // Make sure array key is set up |
561 | - $search_criteria['field_filters'] = \GV\Utils::get( $search_criteria, 'field_filters', array() ); |
|
561 | + $search_criteria[ 'field_filters' ] = \GV\Utils::get( $search_criteria, 'field_filters', array() ); |
|
562 | 562 | |
563 | 563 | $searchable_fields = $this->get_view_searchable_fields( $view ); |
564 | 564 | $searchable_field_objects = $this->get_view_searchable_fields( $view, true ); |
565 | 565 | |
566 | 566 | // add free search |
567 | - if ( isset( $get['gv_search'] ) && '' !== $get['gv_search'] && in_array( 'search_all', $searchable_fields ) ) { |
|
567 | + if ( isset( $get[ 'gv_search' ] ) && '' !== $get[ 'gv_search' ] && in_array( 'search_all', $searchable_fields ) ) { |
|
568 | 568 | |
569 | - $search_all_value = trim( $get['gv_search'] ); |
|
569 | + $search_all_value = trim( $get[ 'gv_search' ] ); |
|
570 | 570 | |
571 | 571 | /** |
572 | 572 | * @filter `gravityview/search-all-split-words` Search for each word separately or the whole phrase? |
@@ -591,7 +591,7 @@ discard block |
||
591 | 591 | } |
592 | 592 | |
593 | 593 | foreach ( $words as $word ) { |
594 | - $search_criteria['field_filters'][] = array( |
|
594 | + $search_criteria[ 'field_filters' ][ ] = array( |
|
595 | 595 | 'key' => null, // The field ID to search |
596 | 596 | 'value' => $word, // The value to search |
597 | 597 | 'operator' => 'contains', // What to search in. Options: `is` or `contains` |
@@ -604,14 +604,14 @@ discard block |
||
604 | 604 | /** |
605 | 605 | * Get and normalize the dates according to the input format. |
606 | 606 | */ |
607 | - if ( $curr_start = ! empty( $get['gv_start'] ) ? $get['gv_start'] : '' ) { |
|
608 | - if( $curr_start_date = date_create_from_format( $this->get_datepicker_format( true ), $curr_start ) ) { |
|
607 | + if ( $curr_start = ! empty( $get[ 'gv_start' ] ) ? $get[ 'gv_start' ] : '' ) { |
|
608 | + if ( $curr_start_date = date_create_from_format( $this->get_datepicker_format( true ), $curr_start ) ) { |
|
609 | 609 | $curr_start = $curr_start_date->format( 'Y-m-d' ); |
610 | 610 | } |
611 | 611 | } |
612 | 612 | |
613 | - if ( $curr_end = ! empty( $get['gv_start'] ) ? ( ! empty( $get['gv_end'] ) ? $get['gv_end'] : '' ) : '' ) { |
|
614 | - if( $curr_end_date = date_create_from_format( $this->get_datepicker_format( true ), $curr_end ) ) { |
|
613 | + if ( $curr_end = ! empty( $get[ 'gv_start' ] ) ? ( ! empty( $get[ 'gv_end' ] ) ? $get[ 'gv_end' ] : '' ) : '' ) { |
|
614 | + if ( $curr_end_date = date_create_from_format( $this->get_datepicker_format( true ), $curr_end ) ) { |
|
615 | 615 | $curr_end = $curr_end_date->format( 'Y-m-d' ); |
616 | 616 | } |
617 | 617 | } |
@@ -646,22 +646,22 @@ discard block |
||
646 | 646 | */ |
647 | 647 | if ( ! empty( $curr_start ) ) { |
648 | 648 | $curr_start = date( 'Y-m-d H:i:s', strtotime( $curr_start ) ); |
649 | - $search_criteria['start_date'] = $adjust_tz ? get_gmt_from_date( $curr_start ) : $curr_start; |
|
649 | + $search_criteria[ 'start_date' ] = $adjust_tz ? get_gmt_from_date( $curr_start ) : $curr_start; |
|
650 | 650 | } |
651 | 651 | |
652 | 652 | if ( ! empty( $curr_end ) ) { |
653 | 653 | // Fast-forward 24 hour on the end time |
654 | 654 | $curr_end = date( 'Y-m-d H:i:s', strtotime( $curr_end ) + DAY_IN_SECONDS ); |
655 | - $search_criteria['end_date'] = $adjust_tz ? get_gmt_from_date( $curr_end ) : $curr_end; |
|
656 | - if ( strpos( $search_criteria['end_date'], '00:00:00' ) ) { // See https://github.com/gravityview/GravityView/issues/1056 |
|
657 | - $search_criteria['end_date'] = date( 'Y-m-d H:i:s', strtotime( $search_criteria['end_date'] ) - 1 ); |
|
655 | + $search_criteria[ 'end_date' ] = $adjust_tz ? get_gmt_from_date( $curr_end ) : $curr_end; |
|
656 | + if ( strpos( $search_criteria[ 'end_date' ], '00:00:00' ) ) { // See https://github.com/gravityview/GravityView/issues/1056 |
|
657 | + $search_criteria[ 'end_date' ] = date( 'Y-m-d H:i:s', strtotime( $search_criteria[ 'end_date' ] ) - 1 ); |
|
658 | 658 | } |
659 | 659 | } |
660 | 660 | } |
661 | 661 | |
662 | 662 | // search for a specific entry ID |
663 | 663 | if ( ! empty( $get[ 'gv_id' ] ) && in_array( 'entry_id', $searchable_fields ) ) { |
664 | - $search_criteria['field_filters'][] = array( |
|
664 | + $search_criteria[ 'field_filters' ][ ] = array( |
|
665 | 665 | 'key' => 'id', |
666 | 666 | 'value' => absint( $get[ 'gv_id' ] ), |
667 | 667 | 'operator' => $this->get_operator( $get, 'gv_id', array( '=' ), '=' ), |
@@ -670,20 +670,20 @@ discard block |
||
670 | 670 | |
671 | 671 | // search for a specific Created_by ID |
672 | 672 | if ( ! empty( $get[ 'gv_by' ] ) && in_array( 'created_by', $searchable_fields ) ) { |
673 | - $search_criteria['field_filters'][] = array( |
|
673 | + $search_criteria[ 'field_filters' ][ ] = array( |
|
674 | 674 | 'key' => 'created_by', |
675 | - 'value' => $get['gv_by'], |
|
675 | + 'value' => $get[ 'gv_by' ], |
|
676 | 676 | 'operator' => $this->get_operator( $get, 'gv_by', array( '=' ), '=' ), |
677 | 677 | ); |
678 | 678 | } |
679 | 679 | |
680 | 680 | // Get search mode passed in URL |
681 | - $mode = isset( $get['mode'] ) && in_array( $get['mode'], array( 'any', 'all' ) ) ? $get['mode'] : 'any'; |
|
681 | + $mode = isset( $get[ 'mode' ] ) && in_array( $get[ 'mode' ], array( 'any', 'all' ) ) ? $get[ 'mode' ] : 'any'; |
|
682 | 682 | |
683 | 683 | // get the other search filters |
684 | 684 | foreach ( $get as $key => $value ) { |
685 | 685 | |
686 | - if ( 0 !== strpos( $key, 'filter_' ) || gv_empty( $value, false, false ) || ( is_array( $value ) && count( $value ) === 1 && gv_empty( $value[0], false, false ) ) ) { |
|
686 | + if ( 0 !== strpos( $key, 'filter_' ) || gv_empty( $value, false, false ) || ( is_array( $value ) && count( $value ) === 1 && gv_empty( $value[ 0 ], false, false ) ) ) { |
|
687 | 687 | continue; // Not a filter, or empty |
688 | 688 | } |
689 | 689 | |
@@ -697,19 +697,19 @@ discard block |
||
697 | 697 | continue; |
698 | 698 | } |
699 | 699 | |
700 | - if ( ! isset( $filter['operator'] ) ) { |
|
701 | - $filter['operator'] = $this->get_operator( $get, $key, array( 'contains' ), 'contains' ); |
|
700 | + if ( ! isset( $filter[ 'operator' ] ) ) { |
|
701 | + $filter[ 'operator' ] = $this->get_operator( $get, $key, array( 'contains' ), 'contains' ); |
|
702 | 702 | } |
703 | 703 | |
704 | - if ( isset( $filter[0]['value'] ) ) { |
|
705 | - $search_criteria['field_filters'] = array_merge( $search_criteria['field_filters'], $filter ); |
|
704 | + if ( isset( $filter[ 0 ][ 'value' ] ) ) { |
|
705 | + $search_criteria[ 'field_filters' ] = array_merge( $search_criteria[ 'field_filters' ], $filter ); |
|
706 | 706 | |
707 | 707 | // if date range type, set search mode to ALL |
708 | - if ( ! empty( $filter[0]['operator'] ) && in_array( $filter[0]['operator'], array( '>=', '<=', '>', '<' ) ) ) { |
|
708 | + if ( ! empty( $filter[ 0 ][ 'operator' ] ) && in_array( $filter[ 0 ][ 'operator' ], array( '>=', '<=', '>', '<' ) ) ) { |
|
709 | 709 | $mode = 'all'; |
710 | 710 | } |
711 | - } elseif( !empty( $filter ) ) { |
|
712 | - $search_criteria['field_filters'][] = $filter; |
|
711 | + } elseif ( ! empty( $filter ) ) { |
|
712 | + $search_criteria[ 'field_filters' ][ ] = $filter; |
|
713 | 713 | } |
714 | 714 | } |
715 | 715 | |
@@ -718,7 +718,7 @@ discard block |
||
718 | 718 | * @since 1.5.1 |
719 | 719 | * @param[out,in] string $mode Search mode (`any` vs `all`) |
720 | 720 | */ |
721 | - $search_criteria['field_filters']['mode'] = apply_filters( 'gravityview/search/mode', $mode ); |
|
721 | + $search_criteria[ 'field_filters' ][ 'mode' ] = apply_filters( 'gravityview/search/mode', $mode ); |
|
722 | 722 | |
723 | 723 | gravityview()->log->debug( 'Returned Search Criteria: ', array( 'data' => $search_criteria ) ); |
724 | 724 | |
@@ -752,19 +752,19 @@ discard block |
||
752 | 752 | |
753 | 753 | $query_class = $view->get_query_class(); |
754 | 754 | |
755 | - if ( empty( $search_criteria['field_filters'] ) ) { |
|
755 | + if ( empty( $search_criteria[ 'field_filters' ] ) ) { |
|
756 | 756 | return; |
757 | 757 | } |
758 | 758 | |
759 | 759 | $widgets = $view->widgets->by_id( $this->widget_id ); |
760 | 760 | if ( $widgets->count() ) { |
761 | 761 | $widgets = $widgets->all(); |
762 | - $widget = $widgets[0]; |
|
762 | + $widget = $widgets[ 0 ]; |
|
763 | 763 | |
764 | 764 | $search_fields = json_decode( $widget->configuration->get( 'search_fields' ), true ); |
765 | 765 | |
766 | - foreach ( (array) $search_fields as $search_field ) { |
|
767 | - if ( 'created_by' === $search_field['field'] && 'input_text' === $search_field['input'] ) { |
|
766 | + foreach ( (array)$search_fields as $search_field ) { |
|
767 | + if ( 'created_by' === $search_field[ 'field' ] && 'input_text' === $search_field[ 'input' ] ) { |
|
768 | 768 | $created_by_text_mode = true; |
769 | 769 | } |
770 | 770 | } |
@@ -773,7 +773,7 @@ discard block |
||
773 | 773 | $extra_conditions = array(); |
774 | 774 | $mode = 'any'; |
775 | 775 | |
776 | - foreach ( $search_criteria['field_filters'] as &$filter ) { |
|
776 | + foreach ( $search_criteria[ 'field_filters' ] as &$filter ) { |
|
777 | 777 | if ( ! is_array( $filter ) ) { |
778 | 778 | if ( in_array( strtolower( $filter ), array( 'any', 'all' ) ) ) { |
779 | 779 | $mode = $filter; |
@@ -782,13 +782,13 @@ discard block |
||
782 | 782 | } |
783 | 783 | |
784 | 784 | // Construct a manual query for unapproved statuses |
785 | - if ( 'is_approved' === $filter['key'] && in_array( \GravityView_Entry_Approval_Status::UNAPPROVED, (array) $filter['value'] ) ) { |
|
786 | - $_tmp_query = new $query_class( $view->form->ID, array( |
|
785 | + if ( 'is_approved' === $filter[ 'key' ] && in_array( \GravityView_Entry_Approval_Status::UNAPPROVED, (array)$filter[ 'value' ] ) ) { |
|
786 | + $_tmp_query = new $query_class( $view->form->ID, array( |
|
787 | 787 | 'field_filters' => array( |
788 | 788 | array( |
789 | 789 | 'operator' => 'in', |
790 | 790 | 'key' => 'is_approved', |
791 | - 'value' => (array) $filter['value'], |
|
791 | + 'value' => (array)$filter[ 'value' ], |
|
792 | 792 | ), |
793 | 793 | array( |
794 | 794 | 'operator' => 'is', |
@@ -800,30 +800,30 @@ discard block |
||
800 | 800 | ) ); |
801 | 801 | $_tmp_query_parts = $_tmp_query->_introspect(); |
802 | 802 | |
803 | - $extra_conditions[] = $_tmp_query_parts['where']; |
|
803 | + $extra_conditions[ ] = $_tmp_query_parts[ 'where' ]; |
|
804 | 804 | |
805 | 805 | $filter = false; |
806 | 806 | continue; |
807 | 807 | } |
808 | 808 | |
809 | 809 | // Construct manual query for text mode creator search |
810 | - if ( 'created_by' === $filter['key'] && ! empty( $created_by_text_mode ) ) { |
|
811 | - $extra_conditions[] = new GravityView_Widget_Search_Author_GF_Query_Condition( $filter, $view ); |
|
810 | + if ( 'created_by' === $filter[ 'key' ] && ! empty( $created_by_text_mode ) ) { |
|
811 | + $extra_conditions[ ] = new GravityView_Widget_Search_Author_GF_Query_Condition( $filter, $view ); |
|
812 | 812 | $filter = false; |
813 | 813 | continue; |
814 | 814 | } |
815 | 815 | |
816 | 816 | // By default, we want searches to be wildcard for each field. |
817 | - $filter['operator'] = empty( $filter['operator'] ) ? 'contains' : $filter['operator']; |
|
817 | + $filter[ 'operator' ] = empty( $filter[ 'operator' ] ) ? 'contains' : $filter[ 'operator' ]; |
|
818 | 818 | |
819 | 819 | // For multichoice, let's have an in (OR) search. |
820 | - if ( is_array( $filter['value'] ) ) { |
|
821 | - $filter['operator'] = 'in'; // @todo what about in contains (OR LIKE chains)? |
|
820 | + if ( is_array( $filter[ 'value' ] ) ) { |
|
821 | + $filter[ 'operator' ] = 'in'; // @todo what about in contains (OR LIKE chains)? |
|
822 | 822 | } |
823 | 823 | |
824 | 824 | // Default form with joins functionality |
825 | - if ( empty( $filter['form_id'] ) ) { |
|
826 | - $filter['form_id'] = $view->form ? $view->form->ID : 0; |
|
825 | + if ( empty( $filter[ 'form_id' ] ) ) { |
|
826 | + $filter[ 'form_id' ] = $view->form ? $view->form->ID : 0; |
|
827 | 827 | } |
828 | 828 | |
829 | 829 | /** |
@@ -833,28 +833,28 @@ discard block |
||
833 | 833 | * @since develop |
834 | 834 | * @param \GV\View $view The View we're operating on. |
835 | 835 | */ |
836 | - $filter['operator'] = apply_filters( 'gravityview_search_operator', $filter['operator'], $filter, $view ); |
|
836 | + $filter[ 'operator' ] = apply_filters( 'gravityview_search_operator', $filter[ 'operator' ], $filter, $view ); |
|
837 | 837 | } |
838 | 838 | |
839 | - if ( ! empty( $search_criteria['start_date'] ) || ! empty( $search_criteria['end_date'] ) ) { |
|
839 | + if ( ! empty( $search_criteria[ 'start_date' ] ) || ! empty( $search_criteria[ 'end_date' ] ) ) { |
|
840 | 840 | $date_criteria = array(); |
841 | 841 | |
842 | - if ( isset( $search_criteria['start_date'] ) ) { |
|
843 | - $date_criteria['start_date'] = $search_criteria['start_date']; |
|
842 | + if ( isset( $search_criteria[ 'start_date' ] ) ) { |
|
843 | + $date_criteria[ 'start_date' ] = $search_criteria[ 'start_date' ]; |
|
844 | 844 | } |
845 | 845 | |
846 | - if ( isset( $search_criteria['end_date'] ) ) { |
|
847 | - $date_criteria['end_date'] = $search_criteria['end_date']; |
|
846 | + if ( isset( $search_criteria[ 'end_date' ] ) ) { |
|
847 | + $date_criteria[ 'end_date' ] = $search_criteria[ 'end_date' ]; |
|
848 | 848 | } |
849 | 849 | |
850 | 850 | $_tmp_query = new $query_class( $view->form->ID, $date_criteria ); |
851 | 851 | $_tmp_query_parts = $_tmp_query->_introspect(); |
852 | - $extra_conditions[] = $_tmp_query_parts['where']; |
|
852 | + $extra_conditions[ ] = $_tmp_query_parts[ 'where' ]; |
|
853 | 853 | } |
854 | 854 | |
855 | 855 | $search_conditions = array(); |
856 | 856 | |
857 | - if ( $filters = array_filter( $search_criteria['field_filters'] ) ) { |
|
857 | + if ( $filters = array_filter( $search_criteria[ 'field_filters' ] ) ) { |
|
858 | 858 | foreach ( $filters as &$filter ) { |
859 | 859 | if ( ! is_array( $filter ) ) { |
860 | 860 | continue; |
@@ -866,12 +866,12 @@ discard block |
||
866 | 866 | * code by reusing what's inside GF_Query already as they |
867 | 867 | * take care of many small things like forcing numeric, etc. |
868 | 868 | */ |
869 | - $_tmp_query = new $query_class( $filter['form_id'], array( 'mode' => 'any', 'field_filters' => array( $filter ) ) ); |
|
869 | + $_tmp_query = new $query_class( $filter[ 'form_id' ], array( 'mode' => 'any', 'field_filters' => array( $filter ) ) ); |
|
870 | 870 | $_tmp_query_parts = $_tmp_query->_introspect(); |
871 | - $search_condition = $_tmp_query_parts['where']; |
|
871 | + $search_condition = $_tmp_query_parts[ 'where' ]; |
|
872 | 872 | |
873 | - if ( empty( $filter['key'] ) && $search_condition->expressions ) { |
|
874 | - $search_conditions[] = $search_condition; |
|
873 | + if ( empty( $filter[ 'key' ] ) && $search_condition->expressions ) { |
|
874 | + $search_conditions[ ] = $search_condition; |
|
875 | 875 | } else { |
876 | 876 | $left = $search_condition->left; |
877 | 877 | $alias = $query->_alias( $left->field_id, $left->source, $left->is_entry_column() ? 't' : 'm' ); |
@@ -881,7 +881,7 @@ discard block |
||
881 | 881 | $on = $_join->join_on; |
882 | 882 | $join = $_join->join; |
883 | 883 | |
884 | - $search_conditions[] = GF_Query_Condition::_or( |
|
884 | + $search_conditions[ ] = GF_Query_Condition::_or( |
|
885 | 885 | // Join |
886 | 886 | new GF_Query_Condition( |
887 | 887 | new GF_Query_Column( GF_Query_Column::META, $join->ID, $query->_alias( GF_Query_Column::META, $join->ID, 'm' ) ), |
@@ -897,7 +897,7 @@ discard block |
||
897 | 897 | ); |
898 | 898 | } |
899 | 899 | } else { |
900 | - $search_conditions[] = new GF_Query_Condition( |
|
900 | + $search_conditions[ ] = new GF_Query_Condition( |
|
901 | 901 | new GF_Query_Column( $left->field_id, $left->source, $alias ), |
902 | 902 | $search_condition->operator, |
903 | 903 | $search_condition->right |
@@ -919,7 +919,7 @@ discard block |
||
919 | 919 | /** |
920 | 920 | * Combine the parts as a new WHERE clause. |
921 | 921 | */ |
922 | - $where = call_user_func_array( '\GF_Query_Condition::_and', array_merge( array( $query_parts['where'] ), $search_conditions, $extra_conditions ) ); |
|
922 | + $where = call_user_func_array( '\GF_Query_Condition::_and', array_merge( array( $query_parts[ 'where' ] ), $search_conditions, $extra_conditions ) ); |
|
923 | 923 | $query->where( $where ); |
924 | 924 | } |
925 | 925 | |
@@ -942,7 +942,7 @@ discard block |
||
942 | 942 | $field_id = str_replace( 'filter_', '', $key ); |
943 | 943 | |
944 | 944 | // calculates field_id, removing 'filter_' and for '_' for advanced fields ( like name or checkbox ) |
945 | - if ( preg_match('/^[0-9_]+$/ism', $field_id ) ) { |
|
945 | + if ( preg_match( '/^[0-9_]+$/ism', $field_id ) ) { |
|
946 | 946 | $field_id = str_replace( '_', '.', $field_id ); |
947 | 947 | } |
948 | 948 | |
@@ -999,7 +999,7 @@ discard block |
||
999 | 999 | // form is in searchable fields |
1000 | 1000 | $found = false; |
1001 | 1001 | foreach ( $searchable_fields as $field ) { |
1002 | - if ( $field_id == $field['field'] && $form->ID == $field['form_id'] ) { |
|
1002 | + if ( $field_id == $field[ 'field' ] && $form->ID == $field[ 'form_id' ] ) { |
|
1003 | 1003 | $found = true; |
1004 | 1004 | break; |
1005 | 1005 | } |
@@ -1039,7 +1039,7 @@ discard block |
||
1039 | 1039 | |
1040 | 1040 | case 'select': |
1041 | 1041 | case 'radio': |
1042 | - $filter['operator'] = $this->get_operator( $get, $key, array( 'is' ), 'is' ); |
|
1042 | + $filter[ 'operator' ] = $this->get_operator( $get, $key, array( 'is' ), 'is' ); |
|
1043 | 1043 | break; |
1044 | 1044 | |
1045 | 1045 | case 'post_category': |
@@ -1053,7 +1053,7 @@ discard block |
||
1053 | 1053 | |
1054 | 1054 | foreach ( $value as $val ) { |
1055 | 1055 | $cat = get_term( $val, 'category' ); |
1056 | - $filter[] = array( |
|
1056 | + $filter[ ] = array( |
|
1057 | 1057 | 'key' => $field_id, |
1058 | 1058 | 'value' => esc_attr( $cat->name ) . ':' . $val, |
1059 | 1059 | 'operator' => $this->get_operator( $get, $key, array( 'is' ), 'is' ), |
@@ -1072,7 +1072,7 @@ discard block |
||
1072 | 1072 | $filter = array(); |
1073 | 1073 | |
1074 | 1074 | foreach ( $value as $val ) { |
1075 | - $filter[] = array( 'key' => $field_id, 'value' => $val ); |
|
1075 | + $filter[ ] = array( 'key' => $field_id, 'value' => $val ); |
|
1076 | 1076 | } |
1077 | 1077 | |
1078 | 1078 | break; |
@@ -1081,9 +1081,9 @@ discard block |
||
1081 | 1081 | // convert checkbox on/off into the correct search filter |
1082 | 1082 | if ( false !== strpos( $field_id, '.' ) && ! empty( $form_field->inputs ) && ! empty( $form_field->choices ) ) { |
1083 | 1083 | foreach ( $form_field->inputs as $k => $input ) { |
1084 | - if ( $input['id'] == $field_id ) { |
|
1085 | - $filter['value'] = $form_field->choices[ $k ]['value']; |
|
1086 | - $filter['operator'] = $this->get_operator( $get, $key, array( 'is' ), 'is' ); |
|
1084 | + if ( $input[ 'id' ] == $field_id ) { |
|
1085 | + $filter[ 'value' ] = $form_field->choices[ $k ][ 'value' ]; |
|
1086 | + $filter[ 'operator' ] = $this->get_operator( $get, $key, array( 'is' ), 'is' ); |
|
1087 | 1087 | break; |
1088 | 1088 | } |
1089 | 1089 | } |
@@ -1093,7 +1093,7 @@ discard block |
||
1093 | 1093 | $filter = array(); |
1094 | 1094 | |
1095 | 1095 | foreach ( $value as $val ) { |
1096 | - $filter[] = array( |
|
1096 | + $filter[ ] = array( |
|
1097 | 1097 | 'key' => $field_id, |
1098 | 1098 | 'value' => $val, |
1099 | 1099 | 'operator' => $this->get_operator( $get, $key, array( 'is' ), 'is' ), |
@@ -1114,9 +1114,9 @@ discard block |
||
1114 | 1114 | foreach ( $words as $word ) { |
1115 | 1115 | if ( ! empty( $word ) && strlen( $word ) > 1 ) { |
1116 | 1116 | // Keep the same key for each filter |
1117 | - $filter['value'] = $word; |
|
1117 | + $filter[ 'value' ] = $word; |
|
1118 | 1118 | // Add a search for the value |
1119 | - $filters[] = $filter; |
|
1119 | + $filters[ ] = $filter; |
|
1120 | 1120 | } |
1121 | 1121 | } |
1122 | 1122 | |
@@ -1130,19 +1130,19 @@ discard block |
||
1130 | 1130 | |
1131 | 1131 | foreach ( $searchable_fields as $searchable_field ) { |
1132 | 1132 | |
1133 | - if( $form_field->ID !== $searchable_field['field'] ) { |
|
1133 | + if ( $form_field->ID !== $searchable_field[ 'field' ] ) { |
|
1134 | 1134 | continue; |
1135 | 1135 | } |
1136 | 1136 | |
1137 | 1137 | // Only exact-match dropdowns, not text search |
1138 | - if( in_array( $searchable_field['input'], array( 'text', 'search' ), true ) ) { |
|
1138 | + if ( in_array( $searchable_field[ 'input' ], array( 'text', 'search' ), true ) ) { |
|
1139 | 1139 | continue; |
1140 | 1140 | } |
1141 | 1141 | |
1142 | 1142 | $input_id = gravityview_get_input_id_from_id( $form_field->ID ); |
1143 | 1143 | |
1144 | 1144 | if ( 4 === $input_id ) { |
1145 | - $filter['operator'] = $this->get_operator( $get, $key, array( 'is' ), 'is' ); |
|
1145 | + $filter[ 'operator' ] = $this->get_operator( $get, $key, array( 'is' ), 'is' ); |
|
1146 | 1146 | }; |
1147 | 1147 | } |
1148 | 1148 | } |
@@ -1169,12 +1169,12 @@ discard block |
||
1169 | 1169 | * @since 1.16.3 |
1170 | 1170 | * Safeguard until GF implements '<=' operator |
1171 | 1171 | */ |
1172 | - if( !GFFormsModel::is_valid_operator( $operator ) && $operator === '<=' ) { |
|
1172 | + if ( ! GFFormsModel::is_valid_operator( $operator ) && $operator === '<=' ) { |
|
1173 | 1173 | $operator = '<'; |
1174 | 1174 | $date = date( 'Y-m-d', strtotime( self::get_formatted_date( $date, 'Y-m-d', $date_format ) . ' +1 day' ) ); |
1175 | 1175 | } |
1176 | 1176 | |
1177 | - $filter[] = array( |
|
1177 | + $filter[ ] = array( |
|
1178 | 1178 | 'key' => $field_id, |
1179 | 1179 | 'value' => self::get_formatted_date( $date, 'Y-m-d', $date_format ), |
1180 | 1180 | 'operator' => $this->get_operator( $get, $key, array( $operator ), $operator ), |
@@ -1182,8 +1182,8 @@ discard block |
||
1182 | 1182 | } |
1183 | 1183 | } else { |
1184 | 1184 | $date = $value; |
1185 | - $filter['value'] = self::get_formatted_date( $date, 'Y-m-d', $date_format ); |
|
1186 | - $filter['operator'] = $this->get_operator( $get, $key, array( 'is' ), 'is' ); |
|
1185 | + $filter[ 'value' ] = self::get_formatted_date( $date, 'Y-m-d', $date_format ); |
|
1186 | + $filter[ 'operator' ] = $this->get_operator( $get, $key, array( 'is' ), 'is' ); |
|
1187 | 1187 | } |
1188 | 1188 | |
1189 | 1189 | break; |
@@ -1214,7 +1214,7 @@ discard block |
||
1214 | 1214 | 'ymd_dot' => 'Y.m.d', |
1215 | 1215 | ); |
1216 | 1216 | |
1217 | - if ( ! empty( $field->dateFormat ) && isset( $datepicker[ $field->dateFormat ] ) ){ |
|
1217 | + if ( ! empty( $field->dateFormat ) && isset( $datepicker[ $field->dateFormat ] ) ) { |
|
1218 | 1218 | $format = $datepicker[ $field->dateFormat ]; |
1219 | 1219 | } |
1220 | 1220 | |
@@ -1251,7 +1251,7 @@ discard block |
||
1251 | 1251 | public function add_template_path( $file_paths ) { |
1252 | 1252 | |
1253 | 1253 | // Index 100 is the default GravityView template path. |
1254 | - $file_paths[102] = self::$file . 'templates/'; |
|
1254 | + $file_paths[ 102 ] = self::$file . 'templates/'; |
|
1255 | 1255 | |
1256 | 1256 | return $file_paths; |
1257 | 1257 | } |
@@ -1270,7 +1270,7 @@ discard block |
||
1270 | 1270 | $has_date = false; |
1271 | 1271 | |
1272 | 1272 | foreach ( $search_fields as $k => $field ) { |
1273 | - if ( in_array( $field['input'], array( 'date', 'date_range', 'entry_date' ) ) ) { |
|
1273 | + if ( in_array( $field[ 'input' ], array( 'date', 'date_range', 'entry_date' ) ) ) { |
|
1274 | 1274 | $has_date = true; |
1275 | 1275 | break; |
1276 | 1276 | } |
@@ -1297,7 +1297,7 @@ discard block |
||
1297 | 1297 | } |
1298 | 1298 | |
1299 | 1299 | // get configured search fields |
1300 | - $search_fields = ! empty( $widget_args['search_fields'] ) ? json_decode( $widget_args['search_fields'], true ) : ''; |
|
1300 | + $search_fields = ! empty( $widget_args[ 'search_fields' ] ) ? json_decode( $widget_args[ 'search_fields' ], true ) : ''; |
|
1301 | 1301 | |
1302 | 1302 | if ( empty( $search_fields ) || ! is_array( $search_fields ) ) { |
1303 | 1303 | gravityview()->log->debug( 'No search fields configured for widget:', array( 'data' => $widget_args ) ); |
@@ -1313,40 +1313,40 @@ discard block |
||
1313 | 1313 | |
1314 | 1314 | $updated_field = $this->get_search_filter_details( $updated_field, $context ); |
1315 | 1315 | |
1316 | - switch ( $field['field'] ) { |
|
1316 | + switch ( $field[ 'field' ] ) { |
|
1317 | 1317 | |
1318 | 1318 | case 'search_all': |
1319 | - $updated_field['key'] = 'search_all'; |
|
1320 | - $updated_field['input'] = 'search_all'; |
|
1321 | - $updated_field['value'] = $this->rgget_or_rgpost( 'gv_search' ); |
|
1319 | + $updated_field[ 'key' ] = 'search_all'; |
|
1320 | + $updated_field[ 'input' ] = 'search_all'; |
|
1321 | + $updated_field[ 'value' ] = $this->rgget_or_rgpost( 'gv_search' ); |
|
1322 | 1322 | break; |
1323 | 1323 | |
1324 | 1324 | case 'entry_date': |
1325 | - $updated_field['key'] = 'entry_date'; |
|
1326 | - $updated_field['input'] = 'entry_date'; |
|
1327 | - $updated_field['value'] = array( |
|
1325 | + $updated_field[ 'key' ] = 'entry_date'; |
|
1326 | + $updated_field[ 'input' ] = 'entry_date'; |
|
1327 | + $updated_field[ 'value' ] = array( |
|
1328 | 1328 | 'start' => $this->rgget_or_rgpost( 'gv_start' ), |
1329 | 1329 | 'end' => $this->rgget_or_rgpost( 'gv_end' ), |
1330 | 1330 | ); |
1331 | 1331 | break; |
1332 | 1332 | |
1333 | 1333 | case 'entry_id': |
1334 | - $updated_field['key'] = 'entry_id'; |
|
1335 | - $updated_field['input'] = 'entry_id'; |
|
1336 | - $updated_field['value'] = $this->rgget_or_rgpost( 'gv_id' ); |
|
1334 | + $updated_field[ 'key' ] = 'entry_id'; |
|
1335 | + $updated_field[ 'input' ] = 'entry_id'; |
|
1336 | + $updated_field[ 'value' ] = $this->rgget_or_rgpost( 'gv_id' ); |
|
1337 | 1337 | break; |
1338 | 1338 | |
1339 | 1339 | case 'created_by': |
1340 | - $updated_field['key'] = 'created_by'; |
|
1341 | - $updated_field['name'] = 'gv_by'; |
|
1342 | - $updated_field['value'] = $this->rgget_or_rgpost( 'gv_by' ); |
|
1343 | - $updated_field['choices'] = self::get_created_by_choices( $view ); |
|
1340 | + $updated_field[ 'key' ] = 'created_by'; |
|
1341 | + $updated_field[ 'name' ] = 'gv_by'; |
|
1342 | + $updated_field[ 'value' ] = $this->rgget_or_rgpost( 'gv_by' ); |
|
1343 | + $updated_field[ 'choices' ] = self::get_created_by_choices( $view ); |
|
1344 | 1344 | break; |
1345 | 1345 | |
1346 | 1346 | case 'is_approved': |
1347 | - $updated_field['key'] = 'is_approved'; |
|
1348 | - $updated_field['value'] = $this->rgget_or_rgpost( 'filter_is_approved' ); |
|
1349 | - $updated_field['choices'] = self::get_is_approved_choices(); |
|
1347 | + $updated_field[ 'key' ] = 'is_approved'; |
|
1348 | + $updated_field[ 'value' ] = $this->rgget_or_rgpost( 'filter_is_approved' ); |
|
1349 | + $updated_field[ 'choices' ] = self::get_is_approved_choices(); |
|
1350 | 1350 | break; |
1351 | 1351 | } |
1352 | 1352 | |
@@ -1367,16 +1367,16 @@ discard block |
||
1367 | 1367 | |
1368 | 1368 | $gravityview_view->permalink_fields = $this->add_no_permalink_fields( array(), $this, $widget_args ); |
1369 | 1369 | |
1370 | - $gravityview_view->search_layout = ! empty( $widget_args['search_layout'] ) ? $widget_args['search_layout'] : 'horizontal'; |
|
1370 | + $gravityview_view->search_layout = ! empty( $widget_args[ 'search_layout' ] ) ? $widget_args[ 'search_layout' ] : 'horizontal'; |
|
1371 | 1371 | |
1372 | 1372 | /** @since 1.14 */ |
1373 | - $gravityview_view->search_mode = ! empty( $widget_args['search_mode'] ) ? $widget_args['search_mode'] : 'any'; |
|
1373 | + $gravityview_view->search_mode = ! empty( $widget_args[ 'search_mode' ] ) ? $widget_args[ 'search_mode' ] : 'any'; |
|
1374 | 1374 | |
1375 | - $custom_class = ! empty( $widget_args['custom_class'] ) ? $widget_args['custom_class'] : ''; |
|
1375 | + $custom_class = ! empty( $widget_args[ 'custom_class' ] ) ? $widget_args[ 'custom_class' ] : ''; |
|
1376 | 1376 | |
1377 | 1377 | $gravityview_view->search_class = self::get_search_class( $custom_class ); |
1378 | 1378 | |
1379 | - $gravityview_view->search_clear = ! empty( $widget_args['search_clear'] ) ? $widget_args['search_clear'] : false; |
|
1379 | + $gravityview_view->search_clear = ! empty( $widget_args[ 'search_clear' ] ) ? $widget_args[ 'search_clear' ] : false; |
|
1380 | 1380 | |
1381 | 1381 | if ( $this->has_date_field( $search_fields ) ) { |
1382 | 1382 | // enqueue datepicker stuff only if needed! |
@@ -1398,10 +1398,10 @@ discard block |
||
1398 | 1398 | public static function get_search_class( $custom_class = '' ) { |
1399 | 1399 | $gravityview_view = GravityView_View::getInstance(); |
1400 | 1400 | |
1401 | - $search_class = 'gv-search-'.$gravityview_view->search_layout; |
|
1401 | + $search_class = 'gv-search-' . $gravityview_view->search_layout; |
|
1402 | 1402 | |
1403 | - if ( ! empty( $custom_class ) ) { |
|
1404 | - $search_class .= ' '.$custom_class; |
|
1403 | + if ( ! empty( $custom_class ) ) { |
|
1404 | + $search_class .= ' ' . $custom_class; |
|
1405 | 1405 | } |
1406 | 1406 | |
1407 | 1407 | /** |
@@ -1445,9 +1445,9 @@ discard block |
||
1445 | 1445 | |
1446 | 1446 | if ( ! $label ) { |
1447 | 1447 | |
1448 | - $label = isset( $form_field['label'] ) ? $form_field['label'] : ''; |
|
1448 | + $label = isset( $form_field[ 'label' ] ) ? $form_field[ 'label' ] : ''; |
|
1449 | 1449 | |
1450 | - switch( $field['field'] ) { |
|
1450 | + switch ( $field[ 'field' ] ) { |
|
1451 | 1451 | case 'search_all': |
1452 | 1452 | $label = __( 'Search Entries:', 'gravityview' ); |
1453 | 1453 | break; |
@@ -1459,10 +1459,10 @@ discard block |
||
1459 | 1459 | break; |
1460 | 1460 | default: |
1461 | 1461 | // If this is a field input, not a field |
1462 | - if ( strpos( $field['field'], '.' ) > 0 && ! empty( $form_field['inputs'] ) ) { |
|
1462 | + if ( strpos( $field[ 'field' ], '.' ) > 0 && ! empty( $form_field[ 'inputs' ] ) ) { |
|
1463 | 1463 | |
1464 | 1464 | // Get the label for the field in question, which returns an array |
1465 | - $items = wp_list_filter( $form_field['inputs'], array( 'id' => $field['field'] ) ); |
|
1465 | + $items = wp_list_filter( $form_field[ 'inputs' ], array( 'id' => $field[ 'field' ] ) ); |
|
1466 | 1466 | |
1467 | 1467 | // Get the item with the `label` key |
1468 | 1468 | $values = wp_list_pluck( $items, 'label' ); |
@@ -1503,35 +1503,35 @@ discard block |
||
1503 | 1503 | $form = $gravityview_view->getForm(); |
1504 | 1504 | |
1505 | 1505 | // for advanced field ids (eg, first name / last name ) |
1506 | - $name = 'filter_' . str_replace( '.', '_', $field['field'] ); |
|
1506 | + $name = 'filter_' . str_replace( '.', '_', $field[ 'field' ] ); |
|
1507 | 1507 | |
1508 | 1508 | // get searched value from $_GET/$_POST (string or array) |
1509 | 1509 | $value = $this->rgget_or_rgpost( $name ); |
1510 | 1510 | |
1511 | 1511 | // get form field details |
1512 | - $form_field = gravityview_get_field( $form, $field['field'] ); |
|
1512 | + $form_field = gravityview_get_field( $form, $field[ 'field' ] ); |
|
1513 | 1513 | |
1514 | 1514 | $filter = array( |
1515 | - 'key' => $field['field'], |
|
1515 | + 'key' => $field[ 'field' ], |
|
1516 | 1516 | 'name' => $name, |
1517 | 1517 | 'label' => self::get_field_label( $field, $form_field ), |
1518 | - 'input' => $field['input'], |
|
1518 | + 'input' => $field[ 'input' ], |
|
1519 | 1519 | 'value' => $value, |
1520 | - 'type' => $form_field['type'], |
|
1520 | + 'type' => $form_field[ 'type' ], |
|
1521 | 1521 | ); |
1522 | 1522 | |
1523 | 1523 | // collect choices |
1524 | - if ( 'post_category' === $form_field['type'] && ! empty( $form_field['displayAllCategories'] ) && empty( $form_field['choices'] ) ) { |
|
1525 | - $filter['choices'] = gravityview_get_terms_choices(); |
|
1526 | - } elseif ( ! empty( $form_field['choices'] ) ) { |
|
1527 | - $filter['choices'] = $form_field['choices']; |
|
1524 | + if ( 'post_category' === $form_field[ 'type' ] && ! empty( $form_field[ 'displayAllCategories' ] ) && empty( $form_field[ 'choices' ] ) ) { |
|
1525 | + $filter[ 'choices' ] = gravityview_get_terms_choices(); |
|
1526 | + } elseif ( ! empty( $form_field[ 'choices' ] ) ) { |
|
1527 | + $filter[ 'choices' ] = $form_field[ 'choices' ]; |
|
1528 | 1528 | } |
1529 | 1529 | |
1530 | - if ( 'date_range' === $field['input'] && empty( $value ) ) { |
|
1531 | - $filter['value'] = array( 'start' => '', 'end' => '' ); |
|
1530 | + if ( 'date_range' === $field[ 'input' ] && empty( $value ) ) { |
|
1531 | + $filter[ 'value' ] = array( 'start' => '', 'end' => '' ); |
|
1532 | 1532 | } |
1533 | 1533 | |
1534 | - if ( ! empty( $filter['choices'] ) ) { |
|
1534 | + if ( ! empty( $filter[ 'choices' ] ) ) { |
|
1535 | 1535 | /** |
1536 | 1536 | * @filter `gravityview/search/sieve_choices` Only output used choices for this field. |
1537 | 1537 | * @param[in,out] bool Yes or no. |
@@ -1539,7 +1539,7 @@ discard block |
||
1539 | 1539 | * @param \GV\Context The context. |
1540 | 1540 | */ |
1541 | 1541 | if ( apply_filters( 'gravityview/search/sieve_choices', false, $field, $context ) ) { |
1542 | - $filter['choices'] = $this->sieve_filter_choices( $filter, $context ); |
|
1542 | + $filter[ 'choices' ] = $this->sieve_filter_choices( $filter, $context ); |
|
1543 | 1543 | } |
1544 | 1544 | } |
1545 | 1545 | |
@@ -1568,11 +1568,11 @@ discard block |
||
1568 | 1568 | * @return array The filter choices. |
1569 | 1569 | */ |
1570 | 1570 | private function sieve_filter_choices( $filter, $context ) { |
1571 | - if ( empty( $filter['key'] ) || empty( $filter['choices'] ) ) { |
|
1571 | + if ( empty( $filter[ 'key' ] ) || empty( $filter[ 'choices' ] ) ) { |
|
1572 | 1572 | return $filter; // @todo Populate plugins might give us empty choices |
1573 | 1573 | } |
1574 | 1574 | |
1575 | - if ( ! is_numeric( $filter['key'] ) ) { |
|
1575 | + if ( ! is_numeric( $filter[ 'key' ] ) ) { |
|
1576 | 1576 | return $filter; |
1577 | 1577 | } |
1578 | 1578 | |
@@ -1582,29 +1582,29 @@ discard block |
||
1582 | 1582 | |
1583 | 1583 | $table = GFFormsModel::get_entry_meta_table_name(); |
1584 | 1584 | |
1585 | - $key_like = $wpdb->esc_like( $filter['key'] ) . '.%'; |
|
1585 | + $key_like = $wpdb->esc_like( $filter[ 'key' ] ) . '.%'; |
|
1586 | 1586 | |
1587 | 1587 | switch ( \GV\Utils::get( $filter, 'type' ) ): |
1588 | 1588 | case 'post_category': |
1589 | 1589 | $choices = $wpdb->get_col( $wpdb->prepare( |
1590 | 1590 | "SELECT DISTINCT SUBSTRING_INDEX(meta_value, ':', 1) FROM $table WHERE (meta_key LIKE %s OR meta_key = %d) AND form_id = %d", |
1591 | - $key_like, $filter['key'], $form_id |
|
1591 | + $key_like, $filter[ 'key' ], $form_id |
|
1592 | 1592 | ) ); |
1593 | 1593 | break; |
1594 | 1594 | default: |
1595 | 1595 | $choices = $wpdb->get_col( $wpdb->prepare( |
1596 | 1596 | "SELECT DISTINCT meta_value FROM $table WHERE (meta_key LIKE %s OR meta_key = %d) AND form_id = %d", |
1597 | - $key_like, $filter['key'], $form_id |
|
1597 | + $key_like, $filter[ 'key' ], $form_id |
|
1598 | 1598 | ) ); |
1599 | 1599 | |
1600 | - if ( ( $field = gravityview_get_field( $form_id, $filter['key'] ) ) && 'json' === $field->storageType ) { |
|
1600 | + if ( ( $field = gravityview_get_field( $form_id, $filter[ 'key' ] ) ) && 'json' === $field->storageType ) { |
|
1601 | 1601 | $choices = array_map( 'json_decode', $choices ); |
1602 | 1602 | $_choices_array = array(); |
1603 | 1603 | foreach ( $choices as $choice ) { |
1604 | 1604 | if ( is_array( $choice ) ) { |
1605 | 1605 | $_choices_array = array_merge( $_choices_array, $choice ); |
1606 | 1606 | } else { |
1607 | - $_choices_array []= $choice; |
|
1607 | + $_choices_array [ ] = $choice; |
|
1608 | 1608 | } |
1609 | 1609 | } |
1610 | 1610 | $choices = array_unique( $_choices_array ); |
@@ -1614,9 +1614,9 @@ discard block |
||
1614 | 1614 | endswitch; |
1615 | 1615 | |
1616 | 1616 | $filter_choices = array(); |
1617 | - foreach ( $filter['choices'] as $choice ) { |
|
1618 | - if ( in_array( $choice['text'], $choices, true ) || in_array( $choice['value'], $choices, true ) ) { |
|
1619 | - $filter_choices[] = $choice; |
|
1617 | + foreach ( $filter[ 'choices' ] as $choice ) { |
|
1618 | + if ( in_array( $choice[ 'text' ], $choices, true ) || in_array( $choice[ 'value' ], $choices, true ) ) { |
|
1619 | + $filter_choices[ ] = $choice; |
|
1620 | 1620 | } |
1621 | 1621 | } |
1622 | 1622 | |
@@ -1651,7 +1651,7 @@ discard block |
||
1651 | 1651 | * @param \GV\View $view The view. |
1652 | 1652 | */ |
1653 | 1653 | $text = apply_filters( 'gravityview/search/created_by/text', $user->display_name, $user, $view ); |
1654 | - $choices[] = array( |
|
1654 | + $choices[ ] = array( |
|
1655 | 1655 | 'value' => $user->ID, |
1656 | 1656 | 'text' => $text, |
1657 | 1657 | ); |
@@ -1671,9 +1671,9 @@ discard block |
||
1671 | 1671 | |
1672 | 1672 | $choices = array(); |
1673 | 1673 | foreach ( GravityView_Entry_Approval_Status::get_all() as $status ) { |
1674 | - $choices[] = array( |
|
1675 | - 'value' => $status['value'], |
|
1676 | - 'text' => $status['label'], |
|
1674 | + $choices[ ] = array( |
|
1675 | + 'value' => $status[ 'value' ], |
|
1676 | + 'text' => $status[ 'label' ], |
|
1677 | 1677 | ); |
1678 | 1678 | } |
1679 | 1679 | |
@@ -1725,7 +1725,7 @@ discard block |
||
1725 | 1725 | */ |
1726 | 1726 | public function add_datepicker_js_dependency( $js_dependencies ) { |
1727 | 1727 | |
1728 | - $js_dependencies[] = 'jquery-ui-datepicker'; |
|
1728 | + $js_dependencies[ ] = 'jquery-ui-datepicker'; |
|
1729 | 1729 | |
1730 | 1730 | return $js_dependencies; |
1731 | 1731 | } |
@@ -1769,7 +1769,7 @@ discard block |
||
1769 | 1769 | 'isRTL' => is_rtl(), |
1770 | 1770 | ), $view_data ); |
1771 | 1771 | |
1772 | - $localizations['datepicker'] = $datepicker_settings; |
|
1772 | + $localizations[ 'datepicker' ] = $datepicker_settings; |
|
1773 | 1773 | |
1774 | 1774 | return $localizations; |
1775 | 1775 | |
@@ -1796,7 +1796,7 @@ discard block |
||
1796 | 1796 | * @return void |
1797 | 1797 | */ |
1798 | 1798 | private function maybe_enqueue_flexibility() { |
1799 | - if ( isset( $_SERVER['HTTP_USER_AGENT'] ) && preg_match( '/MSIE [8-9]/', $_SERVER['HTTP_USER_AGENT'] ) ) { |
|
1799 | + if ( isset( $_SERVER[ 'HTTP_USER_AGENT' ] ) && preg_match( '/MSIE [8-9]/', $_SERVER[ 'HTTP_USER_AGENT' ] ) ) { |
|
1800 | 1800 | wp_enqueue_script( 'gv-flexibility' ); |
1801 | 1801 | } |
1802 | 1802 | } |
@@ -1818,7 +1818,7 @@ discard block |
||
1818 | 1818 | add_filter( 'gravityview_js_localization', array( $this, 'add_datepicker_localization' ), 10, 2 ); |
1819 | 1819 | |
1820 | 1820 | $scheme = is_ssl() ? 'https://' : 'http://'; |
1821 | - wp_enqueue_style( 'jquery-ui-datepicker', $scheme.'ajax.googleapis.com/ajax/libs/jqueryui/1.8.18/themes/smoothness/jquery-ui.css' ); |
|
1821 | + wp_enqueue_style( 'jquery-ui-datepicker', $scheme . 'ajax.googleapis.com/ajax/libs/jqueryui/1.8.18/themes/smoothness/jquery-ui.css' ); |
|
1822 | 1822 | |
1823 | 1823 | /** |
1824 | 1824 | * @filter `gravityview_search_datepicker_class` |
@@ -1897,7 +1897,7 @@ discard block |
||
1897 | 1897 | public function add_preview_inputs() { |
1898 | 1898 | global $wp; |
1899 | 1899 | |
1900 | - if ( ! is_preview() || ! current_user_can( 'publish_gravityviews') ) { |
|
1900 | + if ( ! is_preview() || ! current_user_can( 'publish_gravityviews' ) ) { |
|
1901 | 1901 | return; |
1902 | 1902 | } |
1903 | 1903 | |
@@ -1949,7 +1949,7 @@ discard block |
||
1949 | 1949 | */ |
1950 | 1950 | class GravityView_Widget_Search_Author_GF_Query_Condition extends \GF_Query_Condition { |
1951 | 1951 | public function __construct( $filter, $view ) { |
1952 | - $this->value = $filter['value']; |
|
1952 | + $this->value = $filter[ 'value' ]; |
|
1953 | 1953 | $this->view = $view; |
1954 | 1954 | } |
1955 | 1955 | |
@@ -1981,11 +1981,11 @@ discard block |
||
1981 | 1981 | $conditions = array(); |
1982 | 1982 | |
1983 | 1983 | foreach ( $user_fields as $user_field ) { |
1984 | - $conditions[] = $wpdb->prepare( "`u`.`$user_field` LIKE %s", '%' . $wpdb->esc_like( $this->value ) . '%' ); |
|
1984 | + $conditions[ ] = $wpdb->prepare( "`u`.`$user_field` LIKE %s", '%' . $wpdb->esc_like( $this->value ) . '%' ); |
|
1985 | 1985 | } |
1986 | 1986 | |
1987 | 1987 | foreach ( $user_meta_fields as $meta_field ) { |
1988 | - $conditions[] = $wpdb->prepare( "(`um`.`meta_key` = %s AND `um`.`meta_value` LIKE %s)", $meta_field, '%' . $wpdb->esc_like( $this->value ) . '%' ); |
|
1988 | + $conditions[ ] = $wpdb->prepare( "(`um`.`meta_key` = %s AND `um`.`meta_value` LIKE %s)", $meta_field, '%' . $wpdb->esc_like( $this->value ) . '%' ); |
|
1989 | 1989 | } |
1990 | 1990 | |
1991 | 1991 | $conditions = '(' . implode( ' OR ', $conditions ) . ')'; |
@@ -84,7 +84,7 @@ |
||
84 | 84 | * @see \Gamajo_Template_Loader::set_template_data |
85 | 85 | * @see \GV\Template::pop_template_data |
86 | 86 | * |
87 | - * @return \Gamajo_Template_Loader The current instance. |
|
87 | + * @return Template The current instance. |
|
88 | 88 | */ |
89 | 89 | public function push_template_data( $data, $var_name = 'data' ) { |
90 | 90 | if ( ! isset( self::$data_stack[ $var_name ] ) ) { |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | */ |
42 | 42 | function modify_entry_value_workflow_final_status( $output, $entry, $field_settings, $field ) { |
43 | 43 | |
44 | - if( ! empty( $output ) ) { |
|
44 | + if ( ! empty( $output ) ) { |
|
45 | 45 | $output = gravity_flow()->translate_status_label( $output ); |
46 | 46 | } |
47 | 47 | |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | |
65 | 65 | foreach ( $search_fields as & $search_field ) { |
66 | 66 | if ( $this->name === \GV\Utils::get( $search_field, 'key' ) ) { |
67 | - $search_field['choices'] = GravityView_Plugin_Hooks_Gravity_Flow::get_status_options(); |
|
67 | + $search_field[ 'choices' ] = GravityView_Plugin_Hooks_Gravity_Flow::get_status_options(); |
|
68 | 68 | } |
69 | 69 | } |
70 | 70 |