@@ -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,24 +262,24 @@ 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 | - } elseif ( ! empty( $_POST['template_id'] ) && class_exists( 'GravityView_Ajax' ) ) { |
|
280 | + } elseif ( ! empty( $_POST[ 'template_id' ] ) && class_exists( 'GravityView_Ajax' ) ) { |
|
281 | 281 | |
282 | - $form = GravityView_Ajax::pre_get_form_fields( $_POST['template_id'] ); |
|
282 | + $form = GravityView_Ajax::pre_get_form_fields( $_POST[ 'template_id' ] ); |
|
283 | 283 | |
284 | 284 | } |
285 | 285 | |
@@ -329,14 +329,14 @@ discard block |
||
329 | 329 | ); |
330 | 330 | |
331 | 331 | if ( gravityview()->plugin->supports( \GV\Plugin::FEATURE_GFQUERY ) ) { |
332 | - $custom_fields['is_approved'] = array( |
|
332 | + $custom_fields[ 'is_approved' ] = array( |
|
333 | 333 | 'text' => esc_html__( 'Approval Status', 'gravityview' ), |
334 | 334 | 'type' => 'multi', |
335 | 335 | ); |
336 | 336 | } |
337 | 337 | |
338 | - foreach( $custom_fields as $custom_field_key => $custom_field ) { |
|
339 | - $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'] ); |
|
338 | + foreach ( $custom_fields as $custom_field_key => $custom_field ) { |
|
339 | + $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' ] ); |
|
340 | 340 | } |
341 | 341 | |
342 | 342 | // Get fields with sub-inputs and no parent |
@@ -358,13 +358,13 @@ discard block |
||
358 | 358 | |
359 | 359 | foreach ( $fields as $id => $field ) { |
360 | 360 | |
361 | - if ( in_array( $field['type'], $blacklist_field_types ) ) { |
|
361 | + if ( in_array( $field[ 'type' ], $blacklist_field_types ) ) { |
|
362 | 362 | continue; |
363 | 363 | } |
364 | 364 | |
365 | - $types = self::get_search_input_types( $id, $field['type'] ); |
|
365 | + $types = self::get_search_input_types( $id, $field[ 'type' ] ); |
|
366 | 366 | |
367 | - $output .= '<option value="'. $id .'" '. selected( $id, $current, false ).'data-inputtypes="'. esc_attr( $types ) .'">'. esc_html( $field['label'] ) .'</option>'; |
|
367 | + $output .= '<option value="' . $id . '" ' . selected( $id, $current, false ) . 'data-inputtypes="' . esc_attr( $types ) . '">' . esc_html( $field[ 'label' ] ) . '</option>'; |
|
368 | 368 | } |
369 | 369 | } |
370 | 370 | |
@@ -387,7 +387,7 @@ discard block |
||
387 | 387 | public static function get_search_input_types( $field_id = '', $field_type = null ) { |
388 | 388 | |
389 | 389 | // @todo - This needs to be improved - many fields have . including products and addresses |
390 | - if ( false !== strpos( (string) $field_id, '.' ) && in_array( $field_type, array( 'checkbox' ) ) || in_array( $field_id, array( 'is_fulfilled' ) ) ) { |
|
390 | + if ( false !== strpos( (string)$field_id, '.' ) && in_array( $field_type, array( 'checkbox' ) ) || in_array( $field_id, array( 'is_fulfilled' ) ) ) { |
|
391 | 391 | $input_type = 'boolean'; // on/off checkbox |
392 | 392 | } elseif ( in_array( $field_type, array( 'checkbox', 'post_category', 'multiselect' ) ) ) { |
393 | 393 | $input_type = 'multi'; //multiselect |
@@ -433,19 +433,19 @@ discard block |
||
433 | 433 | $post_id = 0; |
434 | 434 | |
435 | 435 | // We're in the WordPress Widget context, and an overriding post ID has been set. |
436 | - if ( ! empty( $widget_args['post_id'] ) ) { |
|
437 | - $post_id = absint( $widget_args['post_id'] ); |
|
436 | + if ( ! empty( $widget_args[ 'post_id' ] ) ) { |
|
437 | + $post_id = absint( $widget_args[ 'post_id' ] ); |
|
438 | 438 | } |
439 | 439 | // We're in the WordPress Widget context, and the base View ID should be used |
440 | - else if ( ! empty( $widget_args['view_id'] ) ) { |
|
441 | - $post_id = absint( $widget_args['view_id'] ); |
|
440 | + else if ( ! empty( $widget_args[ 'view_id' ] ) ) { |
|
441 | + $post_id = absint( $widget_args[ 'view_id' ] ); |
|
442 | 442 | } |
443 | 443 | |
444 | 444 | $args = gravityview_get_permalink_query_args( $post_id ); |
445 | 445 | |
446 | 446 | // Add hidden fields to the search form |
447 | 447 | foreach ( $args as $key => $value ) { |
448 | - $search_fields[] = array( |
|
448 | + $search_fields[ ] = array( |
|
449 | 449 | 'name' => $key, |
450 | 450 | 'input' => 'hidden', |
451 | 451 | 'value' => $value, |
@@ -484,28 +484,28 @@ discard block |
||
484 | 484 | /** |
485 | 485 | * Include the sidebar Widgets. |
486 | 486 | */ |
487 | - $widgets = (array) get_option( 'widget_gravityview_search', array() ); |
|
487 | + $widgets = (array)get_option( 'widget_gravityview_search', array() ); |
|
488 | 488 | |
489 | 489 | foreach ( $widgets as $widget ) { |
490 | - if ( ! empty( $widget['view_id'] ) && $widget['view_id'] == $view->ID ) { |
|
491 | - if( $_fields = json_decode( $widget['search_fields'], true ) ) { |
|
490 | + if ( ! empty( $widget[ 'view_id' ] ) && $widget[ 'view_id' ] == $view->ID ) { |
|
491 | + if ( $_fields = json_decode( $widget[ 'search_fields' ], true ) ) { |
|
492 | 492 | foreach ( $_fields as $field ) { |
493 | - if ( empty( $field['form_id'] ) ) { |
|
494 | - $field['form_id'] = $view->form ? $view->form->ID : 0; |
|
493 | + if ( empty( $field[ 'form_id' ] ) ) { |
|
494 | + $field[ 'form_id' ] = $view->form ? $view->form->ID : 0; |
|
495 | 495 | } |
496 | - $searchable_fields[] = $with_full_field ? $field : $field['field']; |
|
496 | + $searchable_fields[ ] = $with_full_field ? $field : $field[ 'field' ]; |
|
497 | 497 | } |
498 | 498 | } |
499 | 499 | } |
500 | 500 | } |
501 | 501 | |
502 | 502 | foreach ( $view->widgets->by_id( $this->get_widget_id() )->all() as $widget ) { |
503 | - if( $_fields = json_decode( $widget->configuration->get( 'search_fields' ), true ) ) { |
|
503 | + if ( $_fields = json_decode( $widget->configuration->get( 'search_fields' ), true ) ) { |
|
504 | 504 | foreach ( $_fields as $field ) { |
505 | - if ( empty( $field['form_id'] ) ) { |
|
506 | - $field['form_id'] = $view->form ? $view->form->ID : 0; |
|
505 | + if ( empty( $field[ 'form_id' ] ) ) { |
|
506 | + $field[ 'form_id' ] = $view->form ? $view->form->ID : 0; |
|
507 | 507 | } |
508 | - $searchable_fields[] = $with_full_field ? $field : $field['field']; |
|
508 | + $searchable_fields[ ] = $with_full_field ? $field : $field[ 'field' ]; |
|
509 | 509 | } |
510 | 510 | } |
511 | 511 | } |
@@ -543,7 +543,7 @@ discard block |
||
543 | 543 | return $search_criteria; // Return the original criteria, GF_Query modification kicks in later |
544 | 544 | } |
545 | 545 | |
546 | - if( 'post' === $this->search_method ) { |
|
546 | + if ( 'post' === $this->search_method ) { |
|
547 | 547 | $get = $_POST; |
548 | 548 | } else { |
549 | 549 | $get = $_GET; |
@@ -562,15 +562,15 @@ discard block |
||
562 | 562 | $get = gv_map_deep( $get, 'rawurldecode' ); |
563 | 563 | |
564 | 564 | // Make sure array key is set up |
565 | - $search_criteria['field_filters'] = \GV\Utils::get( $search_criteria, 'field_filters', array() ); |
|
565 | + $search_criteria[ 'field_filters' ] = \GV\Utils::get( $search_criteria, 'field_filters', array() ); |
|
566 | 566 | |
567 | 567 | $searchable_fields = $this->get_view_searchable_fields( $view ); |
568 | 568 | $searchable_field_objects = $this->get_view_searchable_fields( $view, true ); |
569 | 569 | |
570 | 570 | // add free search |
571 | - if ( isset( $get['gv_search'] ) && '' !== $get['gv_search'] && in_array( 'search_all', $searchable_fields ) ) { |
|
571 | + if ( isset( $get[ 'gv_search' ] ) && '' !== $get[ 'gv_search' ] && in_array( 'search_all', $searchable_fields ) ) { |
|
572 | 572 | |
573 | - $search_all_value = trim( $get['gv_search'] ); |
|
573 | + $search_all_value = trim( $get[ 'gv_search' ] ); |
|
574 | 574 | |
575 | 575 | /** |
576 | 576 | * @filter `gravityview/search-all-split-words` Search for each word separately or the whole phrase? |
@@ -595,7 +595,7 @@ discard block |
||
595 | 595 | } |
596 | 596 | |
597 | 597 | foreach ( $words as $word ) { |
598 | - $search_criteria['field_filters'][] = array( |
|
598 | + $search_criteria[ 'field_filters' ][ ] = array( |
|
599 | 599 | 'key' => null, // The field ID to search |
600 | 600 | 'value' => $word, // The value to search |
601 | 601 | 'operator' => 'contains', // What to search in. Options: `is` or `contains` |
@@ -608,14 +608,14 @@ discard block |
||
608 | 608 | /** |
609 | 609 | * Get and normalize the dates according to the input format. |
610 | 610 | */ |
611 | - if ( $curr_start = ! empty( $get['gv_start'] ) ? $get['gv_start'] : '' ) { |
|
612 | - if( $curr_start_date = date_create_from_format( $this->get_datepicker_format( true ), $curr_start ) ) { |
|
611 | + if ( $curr_start = ! empty( $get[ 'gv_start' ] ) ? $get[ 'gv_start' ] : '' ) { |
|
612 | + if ( $curr_start_date = date_create_from_format( $this->get_datepicker_format( true ), $curr_start ) ) { |
|
613 | 613 | $curr_start = $curr_start_date->format( 'Y-m-d' ); |
614 | 614 | } |
615 | 615 | } |
616 | 616 | |
617 | - if ( $curr_end = ! empty( $get['gv_start'] ) ? ( ! empty( $get['gv_end'] ) ? $get['gv_end'] : '' ) : '' ) { |
|
618 | - if( $curr_end_date = date_create_from_format( $this->get_datepicker_format( true ), $curr_end ) ) { |
|
617 | + if ( $curr_end = ! empty( $get[ 'gv_start' ] ) ? ( ! empty( $get[ 'gv_end' ] ) ? $get[ 'gv_end' ] : '' ) : '' ) { |
|
618 | + if ( $curr_end_date = date_create_from_format( $this->get_datepicker_format( true ), $curr_end ) ) { |
|
619 | 619 | $curr_end = $curr_end_date->format( 'Y-m-d' ); |
620 | 620 | } |
621 | 621 | } |
@@ -650,22 +650,22 @@ discard block |
||
650 | 650 | */ |
651 | 651 | if ( ! empty( $curr_start ) ) { |
652 | 652 | $curr_start = date( 'Y-m-d H:i:s', strtotime( $curr_start ) ); |
653 | - $search_criteria['start_date'] = $adjust_tz ? get_gmt_from_date( $curr_start ) : $curr_start; |
|
653 | + $search_criteria[ 'start_date' ] = $adjust_tz ? get_gmt_from_date( $curr_start ) : $curr_start; |
|
654 | 654 | } |
655 | 655 | |
656 | 656 | if ( ! empty( $curr_end ) ) { |
657 | 657 | // Fast-forward 24 hour on the end time |
658 | 658 | $curr_end = date( 'Y-m-d H:i:s', strtotime( $curr_end ) + DAY_IN_SECONDS ); |
659 | - $search_criteria['end_date'] = $adjust_tz ? get_gmt_from_date( $curr_end ) : $curr_end; |
|
660 | - if ( strpos( $search_criteria['end_date'], '00:00:00' ) ) { // See https://github.com/gravityview/GravityView/issues/1056 |
|
661 | - $search_criteria['end_date'] = date( 'Y-m-d H:i:s', strtotime( $search_criteria['end_date'] ) - 1 ); |
|
659 | + $search_criteria[ 'end_date' ] = $adjust_tz ? get_gmt_from_date( $curr_end ) : $curr_end; |
|
660 | + if ( strpos( $search_criteria[ 'end_date' ], '00:00:00' ) ) { // See https://github.com/gravityview/GravityView/issues/1056 |
|
661 | + $search_criteria[ 'end_date' ] = date( 'Y-m-d H:i:s', strtotime( $search_criteria[ 'end_date' ] ) - 1 ); |
|
662 | 662 | } |
663 | 663 | } |
664 | 664 | } |
665 | 665 | |
666 | 666 | // search for a specific entry ID |
667 | 667 | if ( ! empty( $get[ 'gv_id' ] ) && in_array( 'entry_id', $searchable_fields ) ) { |
668 | - $search_criteria['field_filters'][] = array( |
|
668 | + $search_criteria[ 'field_filters' ][ ] = array( |
|
669 | 669 | 'key' => 'id', |
670 | 670 | 'value' => absint( $get[ 'gv_id' ] ), |
671 | 671 | 'operator' => $this->get_operator( $get, 'gv_id', array( '=' ), '=' ), |
@@ -674,20 +674,20 @@ discard block |
||
674 | 674 | |
675 | 675 | // search for a specific Created_by ID |
676 | 676 | if ( ! empty( $get[ 'gv_by' ] ) && in_array( 'created_by', $searchable_fields ) ) { |
677 | - $search_criteria['field_filters'][] = array( |
|
677 | + $search_criteria[ 'field_filters' ][ ] = array( |
|
678 | 678 | 'key' => 'created_by', |
679 | - 'value' => $get['gv_by'], |
|
679 | + 'value' => $get[ 'gv_by' ], |
|
680 | 680 | 'operator' => $this->get_operator( $get, 'gv_by', array( '=' ), '=' ), |
681 | 681 | ); |
682 | 682 | } |
683 | 683 | |
684 | 684 | // Get search mode passed in URL |
685 | - $mode = isset( $get['mode'] ) && in_array( $get['mode'], array( 'any', 'all' ) ) ? $get['mode'] : 'any'; |
|
685 | + $mode = isset( $get[ 'mode' ] ) && in_array( $get[ 'mode' ], array( 'any', 'all' ) ) ? $get[ 'mode' ] : 'any'; |
|
686 | 686 | |
687 | 687 | // get the other search filters |
688 | 688 | foreach ( $get as $key => $value ) { |
689 | 689 | |
690 | - if ( 0 !== strpos( $key, 'filter_' ) || gv_empty( $value, false, false ) || ( is_array( $value ) && count( $value ) === 1 && gv_empty( $value[0], false, false ) ) ) { |
|
690 | + if ( 0 !== strpos( $key, 'filter_' ) || gv_empty( $value, false, false ) || ( is_array( $value ) && count( $value ) === 1 && gv_empty( $value[ 0 ], false, false ) ) ) { |
|
691 | 691 | continue; // Not a filter, or empty |
692 | 692 | } |
693 | 693 | |
@@ -701,19 +701,19 @@ discard block |
||
701 | 701 | continue; |
702 | 702 | } |
703 | 703 | |
704 | - if ( ! isset( $filter['operator'] ) ) { |
|
705 | - $filter['operator'] = $this->get_operator( $get, $key, array( 'contains' ), 'contains' ); |
|
704 | + if ( ! isset( $filter[ 'operator' ] ) ) { |
|
705 | + $filter[ 'operator' ] = $this->get_operator( $get, $key, array( 'contains' ), 'contains' ); |
|
706 | 706 | } |
707 | 707 | |
708 | - if ( isset( $filter[0]['value'] ) ) { |
|
709 | - $search_criteria['field_filters'] = array_merge( $search_criteria['field_filters'], $filter ); |
|
708 | + if ( isset( $filter[ 0 ][ 'value' ] ) ) { |
|
709 | + $search_criteria[ 'field_filters' ] = array_merge( $search_criteria[ 'field_filters' ], $filter ); |
|
710 | 710 | |
711 | 711 | // if date range type, set search mode to ALL |
712 | - if ( ! empty( $filter[0]['operator'] ) && in_array( $filter[0]['operator'], array( '>=', '<=', '>', '<' ) ) ) { |
|
712 | + if ( ! empty( $filter[ 0 ][ 'operator' ] ) && in_array( $filter[ 0 ][ 'operator' ], array( '>=', '<=', '>', '<' ) ) ) { |
|
713 | 713 | $mode = 'all'; |
714 | 714 | } |
715 | - } elseif( !empty( $filter ) ) { |
|
716 | - $search_criteria['field_filters'][] = $filter; |
|
715 | + } elseif ( ! empty( $filter ) ) { |
|
716 | + $search_criteria[ 'field_filters' ][ ] = $filter; |
|
717 | 717 | } |
718 | 718 | } |
719 | 719 | |
@@ -722,7 +722,7 @@ discard block |
||
722 | 722 | * @since 1.5.1 |
723 | 723 | * @param[out,in] string $mode Search mode (`any` vs `all`) |
724 | 724 | */ |
725 | - $search_criteria['field_filters']['mode'] = apply_filters( 'gravityview/search/mode', $mode ); |
|
725 | + $search_criteria[ 'field_filters' ][ 'mode' ] = apply_filters( 'gravityview/search/mode', $mode ); |
|
726 | 726 | |
727 | 727 | gravityview()->log->debug( 'Returned Search Criteria: ', array( 'data' => $search_criteria ) ); |
728 | 728 | |
@@ -756,19 +756,19 @@ discard block |
||
756 | 756 | |
757 | 757 | $query_class = $view->get_query_class(); |
758 | 758 | |
759 | - if ( empty( $search_criteria['field_filters'] ) ) { |
|
759 | + if ( empty( $search_criteria[ 'field_filters' ] ) ) { |
|
760 | 760 | return; |
761 | 761 | } |
762 | 762 | |
763 | 763 | $widgets = $view->widgets->by_id( $this->widget_id ); |
764 | 764 | if ( $widgets->count() ) { |
765 | 765 | $widgets = $widgets->all(); |
766 | - $widget = $widgets[0]; |
|
766 | + $widget = $widgets[ 0 ]; |
|
767 | 767 | |
768 | 768 | $search_fields = json_decode( $widget->configuration->get( 'search_fields' ), true ); |
769 | 769 | |
770 | - foreach ( (array) $search_fields as $search_field ) { |
|
771 | - if ( 'created_by' === $search_field['field'] && 'input_text' === $search_field['input'] ) { |
|
770 | + foreach ( (array)$search_fields as $search_field ) { |
|
771 | + if ( 'created_by' === $search_field[ 'field' ] && 'input_text' === $search_field[ 'input' ] ) { |
|
772 | 772 | $created_by_text_mode = true; |
773 | 773 | } |
774 | 774 | } |
@@ -777,7 +777,7 @@ discard block |
||
777 | 777 | $extra_conditions = array(); |
778 | 778 | $mode = 'any'; |
779 | 779 | |
780 | - foreach ( $search_criteria['field_filters'] as &$filter ) { |
|
780 | + foreach ( $search_criteria[ 'field_filters' ] as &$filter ) { |
|
781 | 781 | if ( ! is_array( $filter ) ) { |
782 | 782 | if ( in_array( strtolower( $filter ), array( 'any', 'all' ) ) ) { |
783 | 783 | $mode = $filter; |
@@ -786,13 +786,13 @@ discard block |
||
786 | 786 | } |
787 | 787 | |
788 | 788 | // Construct a manual query for unapproved statuses |
789 | - if ( 'is_approved' === $filter['key'] && in_array( \GravityView_Entry_Approval_Status::UNAPPROVED, (array) $filter['value'] ) ) { |
|
790 | - $_tmp_query = new $query_class( $view->form->ID, array( |
|
789 | + if ( 'is_approved' === $filter[ 'key' ] && in_array( \GravityView_Entry_Approval_Status::UNAPPROVED, (array)$filter[ 'value' ] ) ) { |
|
790 | + $_tmp_query = new $query_class( $view->form->ID, array( |
|
791 | 791 | 'field_filters' => array( |
792 | 792 | array( |
793 | 793 | 'operator' => 'in', |
794 | 794 | 'key' => 'is_approved', |
795 | - 'value' => (array) $filter['value'], |
|
795 | + 'value' => (array)$filter[ 'value' ], |
|
796 | 796 | ), |
797 | 797 | array( |
798 | 798 | 'operator' => 'is', |
@@ -804,30 +804,30 @@ discard block |
||
804 | 804 | ) ); |
805 | 805 | $_tmp_query_parts = $_tmp_query->_introspect(); |
806 | 806 | |
807 | - $extra_conditions[] = $_tmp_query_parts['where']; |
|
807 | + $extra_conditions[ ] = $_tmp_query_parts[ 'where' ]; |
|
808 | 808 | |
809 | 809 | $filter = false; |
810 | 810 | continue; |
811 | 811 | } |
812 | 812 | |
813 | 813 | // Construct manual query for text mode creator search |
814 | - if ( 'created_by' === $filter['key'] && ! empty( $created_by_text_mode ) ) { |
|
815 | - $extra_conditions[] = new GravityView_Widget_Search_Author_GF_Query_Condition( $filter, $view ); |
|
814 | + if ( 'created_by' === $filter[ 'key' ] && ! empty( $created_by_text_mode ) ) { |
|
815 | + $extra_conditions[ ] = new GravityView_Widget_Search_Author_GF_Query_Condition( $filter, $view ); |
|
816 | 816 | $filter = false; |
817 | 817 | continue; |
818 | 818 | } |
819 | 819 | |
820 | 820 | // By default, we want searches to be wildcard for each field. |
821 | - $filter['operator'] = empty( $filter['operator'] ) ? 'contains' : $filter['operator']; |
|
821 | + $filter[ 'operator' ] = empty( $filter[ 'operator' ] ) ? 'contains' : $filter[ 'operator' ]; |
|
822 | 822 | |
823 | 823 | // For multichoice, let's have an in (OR) search. |
824 | - if ( is_array( $filter['value'] ) ) { |
|
825 | - $filter['operator'] = 'in'; // @todo what about in contains (OR LIKE chains)? |
|
824 | + if ( is_array( $filter[ 'value' ] ) ) { |
|
825 | + $filter[ 'operator' ] = 'in'; // @todo what about in contains (OR LIKE chains)? |
|
826 | 826 | } |
827 | 827 | |
828 | 828 | // Default form with joins functionality |
829 | - if ( empty( $filter['form_id'] ) ) { |
|
830 | - $filter['form_id'] = $view->form ? $view->form->ID : 0; |
|
829 | + if ( empty( $filter[ 'form_id' ] ) ) { |
|
830 | + $filter[ 'form_id' ] = $view->form ? $view->form->ID : 0; |
|
831 | 831 | } |
832 | 832 | |
833 | 833 | /** |
@@ -837,28 +837,28 @@ discard block |
||
837 | 837 | * @since develop |
838 | 838 | * @param \GV\View $view The View we're operating on. |
839 | 839 | */ |
840 | - $filter['operator'] = apply_filters( 'gravityview_search_operator', $filter['operator'], $filter, $view ); |
|
840 | + $filter[ 'operator' ] = apply_filters( 'gravityview_search_operator', $filter[ 'operator' ], $filter, $view ); |
|
841 | 841 | } |
842 | 842 | |
843 | - if ( ! empty( $search_criteria['start_date'] ) || ! empty( $search_criteria['end_date'] ) ) { |
|
843 | + if ( ! empty( $search_criteria[ 'start_date' ] ) || ! empty( $search_criteria[ 'end_date' ] ) ) { |
|
844 | 844 | $date_criteria = array(); |
845 | 845 | |
846 | - if ( isset( $search_criteria['start_date'] ) ) { |
|
847 | - $date_criteria['start_date'] = $search_criteria['start_date']; |
|
846 | + if ( isset( $search_criteria[ 'start_date' ] ) ) { |
|
847 | + $date_criteria[ 'start_date' ] = $search_criteria[ 'start_date' ]; |
|
848 | 848 | } |
849 | 849 | |
850 | - if ( isset( $search_criteria['end_date'] ) ) { |
|
851 | - $date_criteria['end_date'] = $search_criteria['end_date']; |
|
850 | + if ( isset( $search_criteria[ 'end_date' ] ) ) { |
|
851 | + $date_criteria[ 'end_date' ] = $search_criteria[ 'end_date' ]; |
|
852 | 852 | } |
853 | 853 | |
854 | 854 | $_tmp_query = new $query_class( $view->form->ID, $date_criteria ); |
855 | 855 | $_tmp_query_parts = $_tmp_query->_introspect(); |
856 | - $extra_conditions[] = $_tmp_query_parts['where']; |
|
856 | + $extra_conditions[ ] = $_tmp_query_parts[ 'where' ]; |
|
857 | 857 | } |
858 | 858 | |
859 | 859 | $search_conditions = array(); |
860 | 860 | |
861 | - if ( $filters = array_filter( $search_criteria['field_filters'] ) ) { |
|
861 | + if ( $filters = array_filter( $search_criteria[ 'field_filters' ] ) ) { |
|
862 | 862 | foreach ( $filters as &$filter ) { |
863 | 863 | if ( ! is_array( $filter ) ) { |
864 | 864 | continue; |
@@ -870,12 +870,12 @@ discard block |
||
870 | 870 | * code by reusing what's inside GF_Query already as they |
871 | 871 | * take care of many small things like forcing numeric, etc. |
872 | 872 | */ |
873 | - $_tmp_query = new $query_class( $filter['form_id'], array( 'mode' => 'any', 'field_filters' => array( $filter ) ) ); |
|
873 | + $_tmp_query = new $query_class( $filter[ 'form_id' ], array( 'mode' => 'any', 'field_filters' => array( $filter ) ) ); |
|
874 | 874 | $_tmp_query_parts = $_tmp_query->_introspect(); |
875 | - $search_condition = $_tmp_query_parts['where']; |
|
875 | + $search_condition = $_tmp_query_parts[ 'where' ]; |
|
876 | 876 | |
877 | - if ( empty( $filter['key'] ) && $search_condition->expressions ) { |
|
878 | - $search_conditions[] = $search_condition; |
|
877 | + if ( empty( $filter[ 'key' ] ) && $search_condition->expressions ) { |
|
878 | + $search_conditions[ ] = $search_condition; |
|
879 | 879 | } else { |
880 | 880 | $left = $search_condition->left; |
881 | 881 | $alias = $query->_alias( $left->field_id, $left->source, $left->is_entry_column() ? 't' : 'm' ); |
@@ -885,7 +885,7 @@ discard block |
||
885 | 885 | $on = $_join->join_on; |
886 | 886 | $join = $_join->join; |
887 | 887 | |
888 | - $search_conditions[] = GF_Query_Condition::_or( |
|
888 | + $search_conditions[ ] = GF_Query_Condition::_or( |
|
889 | 889 | // Join |
890 | 890 | new GF_Query_Condition( |
891 | 891 | new GF_Query_Column( GF_Query_Column::META, $join->ID, $query->_alias( GF_Query_Column::META, $join->ID, 'm' ) ), |
@@ -901,7 +901,7 @@ discard block |
||
901 | 901 | ); |
902 | 902 | } |
903 | 903 | } else { |
904 | - $search_conditions[] = new GF_Query_Condition( |
|
904 | + $search_conditions[ ] = new GF_Query_Condition( |
|
905 | 905 | new GF_Query_Column( $left->field_id, $left->source, $alias ), |
906 | 906 | $search_condition->operator, |
907 | 907 | $search_condition->right |
@@ -923,7 +923,7 @@ discard block |
||
923 | 923 | /** |
924 | 924 | * Combine the parts as a new WHERE clause. |
925 | 925 | */ |
926 | - $where = call_user_func_array( '\GF_Query_Condition::_and', array_merge( array( $query_parts['where'] ), $search_conditions, $extra_conditions ) ); |
|
926 | + $where = call_user_func_array( '\GF_Query_Condition::_and', array_merge( array( $query_parts[ 'where' ] ), $search_conditions, $extra_conditions ) ); |
|
927 | 927 | $query->where( $where ); |
928 | 928 | } |
929 | 929 | |
@@ -946,7 +946,7 @@ discard block |
||
946 | 946 | $field_id = str_replace( 'filter_', '', $key ); |
947 | 947 | |
948 | 948 | // calculates field_id, removing 'filter_' and for '_' for advanced fields ( like name or checkbox ) |
949 | - if ( preg_match('/^[0-9_]+$/ism', $field_id ) ) { |
|
949 | + if ( preg_match( '/^[0-9_]+$/ism', $field_id ) ) { |
|
950 | 950 | $field_id = str_replace( '_', '.', $field_id ); |
951 | 951 | } |
952 | 952 | |
@@ -1003,7 +1003,7 @@ discard block |
||
1003 | 1003 | // form is in searchable fields |
1004 | 1004 | $found = false; |
1005 | 1005 | foreach ( $searchable_fields as $field ) { |
1006 | - if ( $field_id == $field['field'] && $form->ID == $field['form_id'] ) { |
|
1006 | + if ( $field_id == $field[ 'field' ] && $form->ID == $field[ 'form_id' ] ) { |
|
1007 | 1007 | $found = true; |
1008 | 1008 | break; |
1009 | 1009 | } |
@@ -1043,7 +1043,7 @@ discard block |
||
1043 | 1043 | |
1044 | 1044 | case 'select': |
1045 | 1045 | case 'radio': |
1046 | - $filter['operator'] = $this->get_operator( $get, $key, array( 'is' ), 'is' ); |
|
1046 | + $filter[ 'operator' ] = $this->get_operator( $get, $key, array( 'is' ), 'is' ); |
|
1047 | 1047 | break; |
1048 | 1048 | |
1049 | 1049 | case 'post_category': |
@@ -1057,7 +1057,7 @@ discard block |
||
1057 | 1057 | |
1058 | 1058 | foreach ( $value as $val ) { |
1059 | 1059 | $cat = get_term( $val, 'category' ); |
1060 | - $filter[] = array( |
|
1060 | + $filter[ ] = array( |
|
1061 | 1061 | 'key' => $field_id, |
1062 | 1062 | 'value' => esc_attr( $cat->name ) . ':' . $val, |
1063 | 1063 | 'operator' => $this->get_operator( $get, $key, array( 'is' ), 'is' ), |
@@ -1076,7 +1076,7 @@ discard block |
||
1076 | 1076 | $filter = array(); |
1077 | 1077 | |
1078 | 1078 | foreach ( $value as $val ) { |
1079 | - $filter[] = array( 'key' => $field_id, 'value' => $val ); |
|
1079 | + $filter[ ] = array( 'key' => $field_id, 'value' => $val ); |
|
1080 | 1080 | } |
1081 | 1081 | |
1082 | 1082 | break; |
@@ -1085,9 +1085,9 @@ discard block |
||
1085 | 1085 | // convert checkbox on/off into the correct search filter |
1086 | 1086 | if ( false !== strpos( $field_id, '.' ) && ! empty( $form_field->inputs ) && ! empty( $form_field->choices ) ) { |
1087 | 1087 | foreach ( $form_field->inputs as $k => $input ) { |
1088 | - if ( $input['id'] == $field_id ) { |
|
1089 | - $filter['value'] = $form_field->choices[ $k ]['value']; |
|
1090 | - $filter['operator'] = $this->get_operator( $get, $key, array( 'is' ), 'is' ); |
|
1088 | + if ( $input[ 'id' ] == $field_id ) { |
|
1089 | + $filter[ 'value' ] = $form_field->choices[ $k ][ 'value' ]; |
|
1090 | + $filter[ 'operator' ] = $this->get_operator( $get, $key, array( 'is' ), 'is' ); |
|
1091 | 1091 | break; |
1092 | 1092 | } |
1093 | 1093 | } |
@@ -1097,7 +1097,7 @@ discard block |
||
1097 | 1097 | $filter = array(); |
1098 | 1098 | |
1099 | 1099 | foreach ( $value as $val ) { |
1100 | - $filter[] = array( |
|
1100 | + $filter[ ] = array( |
|
1101 | 1101 | 'key' => $field_id, |
1102 | 1102 | 'value' => $val, |
1103 | 1103 | 'operator' => $this->get_operator( $get, $key, array( 'is' ), 'is' ), |
@@ -1118,9 +1118,9 @@ discard block |
||
1118 | 1118 | foreach ( $words as $word ) { |
1119 | 1119 | if ( ! empty( $word ) && strlen( $word ) > 1 ) { |
1120 | 1120 | // Keep the same key for each filter |
1121 | - $filter['value'] = $word; |
|
1121 | + $filter[ 'value' ] = $word; |
|
1122 | 1122 | // Add a search for the value |
1123 | - $filters[] = $filter; |
|
1123 | + $filters[ ] = $filter; |
|
1124 | 1124 | } |
1125 | 1125 | } |
1126 | 1126 | |
@@ -1134,19 +1134,19 @@ discard block |
||
1134 | 1134 | |
1135 | 1135 | foreach ( $searchable_fields as $searchable_field ) { |
1136 | 1136 | |
1137 | - if( $form_field->ID !== $searchable_field['field'] ) { |
|
1137 | + if ( $form_field->ID !== $searchable_field[ 'field' ] ) { |
|
1138 | 1138 | continue; |
1139 | 1139 | } |
1140 | 1140 | |
1141 | 1141 | // Only exact-match dropdowns, not text search |
1142 | - if( in_array( $searchable_field['input'], array( 'text', 'search' ), true ) ) { |
|
1142 | + if ( in_array( $searchable_field[ 'input' ], array( 'text', 'search' ), true ) ) { |
|
1143 | 1143 | continue; |
1144 | 1144 | } |
1145 | 1145 | |
1146 | 1146 | $input_id = gravityview_get_input_id_from_id( $form_field->ID ); |
1147 | 1147 | |
1148 | 1148 | if ( 4 === $input_id ) { |
1149 | - $filter['operator'] = $this->get_operator( $get, $key, array( 'is' ), 'is' ); |
|
1149 | + $filter[ 'operator' ] = $this->get_operator( $get, $key, array( 'is' ), 'is' ); |
|
1150 | 1150 | }; |
1151 | 1151 | } |
1152 | 1152 | } |
@@ -1173,12 +1173,12 @@ discard block |
||
1173 | 1173 | * @since 1.16.3 |
1174 | 1174 | * Safeguard until GF implements '<=' operator |
1175 | 1175 | */ |
1176 | - if( !GFFormsModel::is_valid_operator( $operator ) && $operator === '<=' ) { |
|
1176 | + if ( ! GFFormsModel::is_valid_operator( $operator ) && $operator === '<=' ) { |
|
1177 | 1177 | $operator = '<'; |
1178 | 1178 | $date = date( 'Y-m-d', strtotime( self::get_formatted_date( $date, 'Y-m-d', $date_format ) . ' +1 day' ) ); |
1179 | 1179 | } |
1180 | 1180 | |
1181 | - $filter[] = array( |
|
1181 | + $filter[ ] = array( |
|
1182 | 1182 | 'key' => $field_id, |
1183 | 1183 | 'value' => self::get_formatted_date( $date, 'Y-m-d', $date_format ), |
1184 | 1184 | 'operator' => $this->get_operator( $get, $key, array( $operator ), $operator ), |
@@ -1186,8 +1186,8 @@ discard block |
||
1186 | 1186 | } |
1187 | 1187 | } else { |
1188 | 1188 | $date = $value; |
1189 | - $filter['value'] = self::get_formatted_date( $date, 'Y-m-d', $date_format ); |
|
1190 | - $filter['operator'] = $this->get_operator( $get, $key, array( 'is' ), 'is' ); |
|
1189 | + $filter[ 'value' ] = self::get_formatted_date( $date, 'Y-m-d', $date_format ); |
|
1190 | + $filter[ 'operator' ] = $this->get_operator( $get, $key, array( 'is' ), 'is' ); |
|
1191 | 1191 | } |
1192 | 1192 | |
1193 | 1193 | break; |
@@ -1218,7 +1218,7 @@ discard block |
||
1218 | 1218 | 'ymd_dot' => 'Y.m.d', |
1219 | 1219 | ); |
1220 | 1220 | |
1221 | - if ( ! empty( $field->dateFormat ) && isset( $datepicker[ $field->dateFormat ] ) ){ |
|
1221 | + if ( ! empty( $field->dateFormat ) && isset( $datepicker[ $field->dateFormat ] ) ) { |
|
1222 | 1222 | $format = $datepicker[ $field->dateFormat ]; |
1223 | 1223 | } |
1224 | 1224 | |
@@ -1255,7 +1255,7 @@ discard block |
||
1255 | 1255 | public function add_template_path( $file_paths ) { |
1256 | 1256 | |
1257 | 1257 | // Index 100 is the default GravityView template path. |
1258 | - $file_paths[102] = self::$file . 'templates/'; |
|
1258 | + $file_paths[ 102 ] = self::$file . 'templates/'; |
|
1259 | 1259 | |
1260 | 1260 | return $file_paths; |
1261 | 1261 | } |
@@ -1274,7 +1274,7 @@ discard block |
||
1274 | 1274 | $has_date = false; |
1275 | 1275 | |
1276 | 1276 | foreach ( $search_fields as $k => $field ) { |
1277 | - if ( in_array( $field['input'], array( 'date', 'date_range', 'entry_date' ) ) ) { |
|
1277 | + if ( in_array( $field[ 'input' ], array( 'date', 'date_range', 'entry_date' ) ) ) { |
|
1278 | 1278 | $has_date = true; |
1279 | 1279 | break; |
1280 | 1280 | } |
@@ -1301,7 +1301,7 @@ discard block |
||
1301 | 1301 | } |
1302 | 1302 | |
1303 | 1303 | // get configured search fields |
1304 | - $search_fields = ! empty( $widget_args['search_fields'] ) ? json_decode( $widget_args['search_fields'], true ) : ''; |
|
1304 | + $search_fields = ! empty( $widget_args[ 'search_fields' ] ) ? json_decode( $widget_args[ 'search_fields' ], true ) : ''; |
|
1305 | 1305 | |
1306 | 1306 | if ( empty( $search_fields ) || ! is_array( $search_fields ) ) { |
1307 | 1307 | gravityview()->log->debug( 'No search fields configured for widget:', array( 'data' => $widget_args ) ); |
@@ -1317,40 +1317,40 @@ discard block |
||
1317 | 1317 | |
1318 | 1318 | $updated_field = $this->get_search_filter_details( $updated_field, $context ); |
1319 | 1319 | |
1320 | - switch ( $field['field'] ) { |
|
1320 | + switch ( $field[ 'field' ] ) { |
|
1321 | 1321 | |
1322 | 1322 | case 'search_all': |
1323 | - $updated_field['key'] = 'search_all'; |
|
1324 | - $updated_field['input'] = 'search_all'; |
|
1325 | - $updated_field['value'] = $this->rgget_or_rgpost( 'gv_search' ); |
|
1323 | + $updated_field[ 'key' ] = 'search_all'; |
|
1324 | + $updated_field[ 'input' ] = 'search_all'; |
|
1325 | + $updated_field[ 'value' ] = $this->rgget_or_rgpost( 'gv_search' ); |
|
1326 | 1326 | break; |
1327 | 1327 | |
1328 | 1328 | case 'entry_date': |
1329 | - $updated_field['key'] = 'entry_date'; |
|
1330 | - $updated_field['input'] = 'entry_date'; |
|
1331 | - $updated_field['value'] = array( |
|
1329 | + $updated_field[ 'key' ] = 'entry_date'; |
|
1330 | + $updated_field[ 'input' ] = 'entry_date'; |
|
1331 | + $updated_field[ 'value' ] = array( |
|
1332 | 1332 | 'start' => $this->rgget_or_rgpost( 'gv_start' ), |
1333 | 1333 | 'end' => $this->rgget_or_rgpost( 'gv_end' ), |
1334 | 1334 | ); |
1335 | 1335 | break; |
1336 | 1336 | |
1337 | 1337 | case 'entry_id': |
1338 | - $updated_field['key'] = 'entry_id'; |
|
1339 | - $updated_field['input'] = 'entry_id'; |
|
1340 | - $updated_field['value'] = $this->rgget_or_rgpost( 'gv_id' ); |
|
1338 | + $updated_field[ 'key' ] = 'entry_id'; |
|
1339 | + $updated_field[ 'input' ] = 'entry_id'; |
|
1340 | + $updated_field[ 'value' ] = $this->rgget_or_rgpost( 'gv_id' ); |
|
1341 | 1341 | break; |
1342 | 1342 | |
1343 | 1343 | case 'created_by': |
1344 | - $updated_field['key'] = 'created_by'; |
|
1345 | - $updated_field['name'] = 'gv_by'; |
|
1346 | - $updated_field['value'] = $this->rgget_or_rgpost( 'gv_by' ); |
|
1347 | - $updated_field['choices'] = self::get_created_by_choices( $view ); |
|
1344 | + $updated_field[ 'key' ] = 'created_by'; |
|
1345 | + $updated_field[ 'name' ] = 'gv_by'; |
|
1346 | + $updated_field[ 'value' ] = $this->rgget_or_rgpost( 'gv_by' ); |
|
1347 | + $updated_field[ 'choices' ] = self::get_created_by_choices( $view ); |
|
1348 | 1348 | break; |
1349 | 1349 | |
1350 | 1350 | case 'is_approved': |
1351 | - $updated_field['key'] = 'is_approved'; |
|
1352 | - $updated_field['value'] = $this->rgget_or_rgpost( 'filter_is_approved' ); |
|
1353 | - $updated_field['choices'] = self::get_is_approved_choices(); |
|
1351 | + $updated_field[ 'key' ] = 'is_approved'; |
|
1352 | + $updated_field[ 'value' ] = $this->rgget_or_rgpost( 'filter_is_approved' ); |
|
1353 | + $updated_field[ 'choices' ] = self::get_is_approved_choices(); |
|
1354 | 1354 | break; |
1355 | 1355 | } |
1356 | 1356 | |
@@ -1371,16 +1371,16 @@ discard block |
||
1371 | 1371 | |
1372 | 1372 | $gravityview_view->permalink_fields = $this->add_no_permalink_fields( array(), $this, $widget_args ); |
1373 | 1373 | |
1374 | - $gravityview_view->search_layout = ! empty( $widget_args['search_layout'] ) ? $widget_args['search_layout'] : 'horizontal'; |
|
1374 | + $gravityview_view->search_layout = ! empty( $widget_args[ 'search_layout' ] ) ? $widget_args[ 'search_layout' ] : 'horizontal'; |
|
1375 | 1375 | |
1376 | 1376 | /** @since 1.14 */ |
1377 | - $gravityview_view->search_mode = ! empty( $widget_args['search_mode'] ) ? $widget_args['search_mode'] : 'any'; |
|
1377 | + $gravityview_view->search_mode = ! empty( $widget_args[ 'search_mode' ] ) ? $widget_args[ 'search_mode' ] : 'any'; |
|
1378 | 1378 | |
1379 | - $custom_class = ! empty( $widget_args['custom_class'] ) ? $widget_args['custom_class'] : ''; |
|
1379 | + $custom_class = ! empty( $widget_args[ 'custom_class' ] ) ? $widget_args[ 'custom_class' ] : ''; |
|
1380 | 1380 | |
1381 | 1381 | $gravityview_view->search_class = self::get_search_class( $custom_class ); |
1382 | 1382 | |
1383 | - $gravityview_view->search_clear = ! empty( $widget_args['search_clear'] ) ? $widget_args['search_clear'] : false; |
|
1383 | + $gravityview_view->search_clear = ! empty( $widget_args[ 'search_clear' ] ) ? $widget_args[ 'search_clear' ] : false; |
|
1384 | 1384 | |
1385 | 1385 | if ( $this->has_date_field( $search_fields ) ) { |
1386 | 1386 | // enqueue datepicker stuff only if needed! |
@@ -1402,10 +1402,10 @@ discard block |
||
1402 | 1402 | public static function get_search_class( $custom_class = '' ) { |
1403 | 1403 | $gravityview_view = GravityView_View::getInstance(); |
1404 | 1404 | |
1405 | - $search_class = 'gv-search-'.$gravityview_view->search_layout; |
|
1405 | + $search_class = 'gv-search-' . $gravityview_view->search_layout; |
|
1406 | 1406 | |
1407 | - if ( ! empty( $custom_class ) ) { |
|
1408 | - $search_class .= ' '.$custom_class; |
|
1407 | + if ( ! empty( $custom_class ) ) { |
|
1408 | + $search_class .= ' ' . $custom_class; |
|
1409 | 1409 | } |
1410 | 1410 | |
1411 | 1411 | /** |
@@ -1449,9 +1449,9 @@ discard block |
||
1449 | 1449 | |
1450 | 1450 | if ( ! $label ) { |
1451 | 1451 | |
1452 | - $label = isset( $form_field['label'] ) ? $form_field['label'] : ''; |
|
1452 | + $label = isset( $form_field[ 'label' ] ) ? $form_field[ 'label' ] : ''; |
|
1453 | 1453 | |
1454 | - switch( $field['field'] ) { |
|
1454 | + switch ( $field[ 'field' ] ) { |
|
1455 | 1455 | case 'search_all': |
1456 | 1456 | $label = __( 'Search Entries:', 'gravityview' ); |
1457 | 1457 | break; |
@@ -1463,10 +1463,10 @@ discard block |
||
1463 | 1463 | break; |
1464 | 1464 | default: |
1465 | 1465 | // If this is a field input, not a field |
1466 | - if ( strpos( $field['field'], '.' ) > 0 && ! empty( $form_field['inputs'] ) ) { |
|
1466 | + if ( strpos( $field[ 'field' ], '.' ) > 0 && ! empty( $form_field[ 'inputs' ] ) ) { |
|
1467 | 1467 | |
1468 | 1468 | // Get the label for the field in question, which returns an array |
1469 | - $items = wp_list_filter( $form_field['inputs'], array( 'id' => $field['field'] ) ); |
|
1469 | + $items = wp_list_filter( $form_field[ 'inputs' ], array( 'id' => $field[ 'field' ] ) ); |
|
1470 | 1470 | |
1471 | 1471 | // Get the item with the `label` key |
1472 | 1472 | $values = wp_list_pluck( $items, 'label' ); |
@@ -1507,35 +1507,35 @@ discard block |
||
1507 | 1507 | $form = $gravityview_view->getForm(); |
1508 | 1508 | |
1509 | 1509 | // for advanced field ids (eg, first name / last name ) |
1510 | - $name = 'filter_' . str_replace( '.', '_', $field['field'] ); |
|
1510 | + $name = 'filter_' . str_replace( '.', '_', $field[ 'field' ] ); |
|
1511 | 1511 | |
1512 | 1512 | // get searched value from $_GET/$_POST (string or array) |
1513 | 1513 | $value = $this->rgget_or_rgpost( $name ); |
1514 | 1514 | |
1515 | 1515 | // get form field details |
1516 | - $form_field = gravityview_get_field( $form, $field['field'] ); |
|
1516 | + $form_field = gravityview_get_field( $form, $field[ 'field' ] ); |
|
1517 | 1517 | |
1518 | 1518 | $filter = array( |
1519 | - 'key' => $field['field'], |
|
1519 | + 'key' => $field[ 'field' ], |
|
1520 | 1520 | 'name' => $name, |
1521 | 1521 | 'label' => self::get_field_label( $field, $form_field ), |
1522 | - 'input' => $field['input'], |
|
1522 | + 'input' => $field[ 'input' ], |
|
1523 | 1523 | 'value' => $value, |
1524 | - 'type' => $form_field['type'], |
|
1524 | + 'type' => $form_field[ 'type' ], |
|
1525 | 1525 | ); |
1526 | 1526 | |
1527 | 1527 | // collect choices |
1528 | - if ( 'post_category' === $form_field['type'] && ! empty( $form_field['displayAllCategories'] ) && empty( $form_field['choices'] ) ) { |
|
1529 | - $filter['choices'] = gravityview_get_terms_choices(); |
|
1530 | - } elseif ( ! empty( $form_field['choices'] ) ) { |
|
1531 | - $filter['choices'] = $form_field['choices']; |
|
1528 | + if ( 'post_category' === $form_field[ 'type' ] && ! empty( $form_field[ 'displayAllCategories' ] ) && empty( $form_field[ 'choices' ] ) ) { |
|
1529 | + $filter[ 'choices' ] = gravityview_get_terms_choices(); |
|
1530 | + } elseif ( ! empty( $form_field[ 'choices' ] ) ) { |
|
1531 | + $filter[ 'choices' ] = $form_field[ 'choices' ]; |
|
1532 | 1532 | } |
1533 | 1533 | |
1534 | - if ( 'date_range' === $field['input'] && empty( $value ) ) { |
|
1535 | - $filter['value'] = array( 'start' => '', 'end' => '' ); |
|
1534 | + if ( 'date_range' === $field[ 'input' ] && empty( $value ) ) { |
|
1535 | + $filter[ 'value' ] = array( 'start' => '', 'end' => '' ); |
|
1536 | 1536 | } |
1537 | 1537 | |
1538 | - if ( ! empty( $filter['choices'] ) ) { |
|
1538 | + if ( ! empty( $filter[ 'choices' ] ) ) { |
|
1539 | 1539 | /** |
1540 | 1540 | * @filter `gravityview/search/sieve_choices` Only output used choices for this field. |
1541 | 1541 | * @param[in,out] bool Yes or no. |
@@ -1543,7 +1543,7 @@ discard block |
||
1543 | 1543 | * @param \GV\Context The context. |
1544 | 1544 | */ |
1545 | 1545 | if ( apply_filters( 'gravityview/search/sieve_choices', false, $field, $context ) ) { |
1546 | - $filter['choices'] = $this->sieve_filter_choices( $filter, $context ); |
|
1546 | + $filter[ 'choices' ] = $this->sieve_filter_choices( $filter, $context ); |
|
1547 | 1547 | } |
1548 | 1548 | } |
1549 | 1549 | |
@@ -1572,11 +1572,11 @@ discard block |
||
1572 | 1572 | * @return array The filter choices. |
1573 | 1573 | */ |
1574 | 1574 | private function sieve_filter_choices( $filter, $context ) { |
1575 | - if ( empty( $filter['key'] ) || empty( $filter['choices'] ) ) { |
|
1575 | + if ( empty( $filter[ 'key' ] ) || empty( $filter[ 'choices' ] ) ) { |
|
1576 | 1576 | return $filter; // @todo Populate plugins might give us empty choices |
1577 | 1577 | } |
1578 | 1578 | |
1579 | - if ( ! is_numeric( $filter['key'] ) ) { |
|
1579 | + if ( ! is_numeric( $filter[ 'key' ] ) ) { |
|
1580 | 1580 | return $filter; |
1581 | 1581 | } |
1582 | 1582 | |
@@ -1586,29 +1586,29 @@ discard block |
||
1586 | 1586 | |
1587 | 1587 | $table = GFFormsModel::get_entry_meta_table_name(); |
1588 | 1588 | |
1589 | - $key_like = $wpdb->esc_like( $filter['key'] ) . '.%'; |
|
1589 | + $key_like = $wpdb->esc_like( $filter[ 'key' ] ) . '.%'; |
|
1590 | 1590 | |
1591 | 1591 | switch ( \GV\Utils::get( $filter, 'type' ) ): |
1592 | 1592 | case 'post_category': |
1593 | 1593 | $choices = $wpdb->get_col( $wpdb->prepare( |
1594 | 1594 | "SELECT DISTINCT SUBSTRING_INDEX(meta_value, ':', 1) FROM $table WHERE (meta_key LIKE %s OR meta_key = %d) AND form_id = %d", |
1595 | - $key_like, $filter['key'], $form_id |
|
1595 | + $key_like, $filter[ 'key' ], $form_id |
|
1596 | 1596 | ) ); |
1597 | 1597 | break; |
1598 | 1598 | default: |
1599 | 1599 | $choices = $wpdb->get_col( $wpdb->prepare( |
1600 | 1600 | "SELECT DISTINCT meta_value FROM $table WHERE (meta_key LIKE %s OR meta_key = %d) AND form_id = %d", |
1601 | - $key_like, $filter['key'], $form_id |
|
1601 | + $key_like, $filter[ 'key' ], $form_id |
|
1602 | 1602 | ) ); |
1603 | 1603 | |
1604 | - if ( ( $field = gravityview_get_field( $form_id, $filter['key'] ) ) && 'json' === $field->storageType ) { |
|
1604 | + if ( ( $field = gravityview_get_field( $form_id, $filter[ 'key' ] ) ) && 'json' === $field->storageType ) { |
|
1605 | 1605 | $choices = array_map( 'json_decode', $choices ); |
1606 | 1606 | $_choices_array = array(); |
1607 | 1607 | foreach ( $choices as $choice ) { |
1608 | 1608 | if ( is_array( $choice ) ) { |
1609 | 1609 | $_choices_array = array_merge( $_choices_array, $choice ); |
1610 | 1610 | } else { |
1611 | - $_choices_array []= $choice; |
|
1611 | + $_choices_array [ ] = $choice; |
|
1612 | 1612 | } |
1613 | 1613 | } |
1614 | 1614 | $choices = array_unique( $_choices_array ); |
@@ -1618,9 +1618,9 @@ discard block |
||
1618 | 1618 | endswitch; |
1619 | 1619 | |
1620 | 1620 | $filter_choices = array(); |
1621 | - foreach ( $filter['choices'] as $choice ) { |
|
1622 | - if ( in_array( $choice['text'], $choices, true ) || in_array( $choice['value'], $choices, true ) ) { |
|
1623 | - $filter_choices[] = $choice; |
|
1621 | + foreach ( $filter[ 'choices' ] as $choice ) { |
|
1622 | + if ( in_array( $choice[ 'text' ], $choices, true ) || in_array( $choice[ 'value' ], $choices, true ) ) { |
|
1623 | + $filter_choices[ ] = $choice; |
|
1624 | 1624 | } |
1625 | 1625 | } |
1626 | 1626 | |
@@ -1655,7 +1655,7 @@ discard block |
||
1655 | 1655 | * @param \GV\View $view The view. |
1656 | 1656 | */ |
1657 | 1657 | $text = apply_filters( 'gravityview/search/created_by/text', $user->display_name, $user, $view ); |
1658 | - $choices[] = array( |
|
1658 | + $choices[ ] = array( |
|
1659 | 1659 | 'value' => $user->ID, |
1660 | 1660 | 'text' => $text, |
1661 | 1661 | ); |
@@ -1675,9 +1675,9 @@ discard block |
||
1675 | 1675 | |
1676 | 1676 | $choices = array(); |
1677 | 1677 | foreach ( GravityView_Entry_Approval_Status::get_all() as $status ) { |
1678 | - $choices[] = array( |
|
1679 | - 'value' => $status['value'], |
|
1680 | - 'text' => $status['label'], |
|
1678 | + $choices[ ] = array( |
|
1679 | + 'value' => $status[ 'value' ], |
|
1680 | + 'text' => $status[ 'label' ], |
|
1681 | 1681 | ); |
1682 | 1682 | } |
1683 | 1683 | |
@@ -1729,7 +1729,7 @@ discard block |
||
1729 | 1729 | */ |
1730 | 1730 | public function add_datepicker_js_dependency( $js_dependencies ) { |
1731 | 1731 | |
1732 | - $js_dependencies[] = 'jquery-ui-datepicker'; |
|
1732 | + $js_dependencies[ ] = 'jquery-ui-datepicker'; |
|
1733 | 1733 | |
1734 | 1734 | return $js_dependencies; |
1735 | 1735 | } |
@@ -1773,7 +1773,7 @@ discard block |
||
1773 | 1773 | 'isRTL' => is_rtl(), |
1774 | 1774 | ), $view_data ); |
1775 | 1775 | |
1776 | - $localizations['datepicker'] = $datepicker_settings; |
|
1776 | + $localizations[ 'datepicker' ] = $datepicker_settings; |
|
1777 | 1777 | |
1778 | 1778 | return $localizations; |
1779 | 1779 | |
@@ -1800,7 +1800,7 @@ discard block |
||
1800 | 1800 | * @return void |
1801 | 1801 | */ |
1802 | 1802 | private function maybe_enqueue_flexibility() { |
1803 | - if ( isset( $_SERVER['HTTP_USER_AGENT'] ) && preg_match( '/MSIE [8-9]/', $_SERVER['HTTP_USER_AGENT'] ) ) { |
|
1803 | + if ( isset( $_SERVER[ 'HTTP_USER_AGENT' ] ) && preg_match( '/MSIE [8-9]/', $_SERVER[ 'HTTP_USER_AGENT' ] ) ) { |
|
1804 | 1804 | wp_enqueue_script( 'gv-flexibility' ); |
1805 | 1805 | } |
1806 | 1806 | } |
@@ -1822,7 +1822,7 @@ discard block |
||
1822 | 1822 | add_filter( 'gravityview_js_localization', array( $this, 'add_datepicker_localization' ), 10, 2 ); |
1823 | 1823 | |
1824 | 1824 | $scheme = is_ssl() ? 'https://' : 'http://'; |
1825 | - wp_enqueue_style( 'jquery-ui-datepicker', $scheme.'ajax.googleapis.com/ajax/libs/jqueryui/1.8.18/themes/smoothness/jquery-ui.css' ); |
|
1825 | + wp_enqueue_style( 'jquery-ui-datepicker', $scheme . 'ajax.googleapis.com/ajax/libs/jqueryui/1.8.18/themes/smoothness/jquery-ui.css' ); |
|
1826 | 1826 | |
1827 | 1827 | /** |
1828 | 1828 | * @filter `gravityview_search_datepicker_class` |
@@ -1901,7 +1901,7 @@ discard block |
||
1901 | 1901 | public function add_preview_inputs() { |
1902 | 1902 | global $wp; |
1903 | 1903 | |
1904 | - if ( ! is_preview() || ! current_user_can( 'publish_gravityviews') ) { |
|
1904 | + if ( ! is_preview() || ! current_user_can( 'publish_gravityviews' ) ) { |
|
1905 | 1905 | return; |
1906 | 1906 | } |
1907 | 1907 | |
@@ -1953,7 +1953,7 @@ discard block |
||
1953 | 1953 | */ |
1954 | 1954 | class GravityView_Widget_Search_Author_GF_Query_Condition extends \GF_Query_Condition { |
1955 | 1955 | public function __construct( $filter, $view ) { |
1956 | - $this->value = $filter['value']; |
|
1956 | + $this->value = $filter[ 'value' ]; |
|
1957 | 1957 | $this->view = $view; |
1958 | 1958 | } |
1959 | 1959 | |
@@ -1985,11 +1985,11 @@ discard block |
||
1985 | 1985 | $conditions = array(); |
1986 | 1986 | |
1987 | 1987 | foreach ( $user_fields as $user_field ) { |
1988 | - $conditions[] = $wpdb->prepare( "`u`.`$user_field` LIKE %s", '%' . $wpdb->esc_like( $this->value ) . '%' ); |
|
1988 | + $conditions[ ] = $wpdb->prepare( "`u`.`$user_field` LIKE %s", '%' . $wpdb->esc_like( $this->value ) . '%' ); |
|
1989 | 1989 | } |
1990 | 1990 | |
1991 | 1991 | foreach ( $user_meta_fields as $meta_field ) { |
1992 | - $conditions[] = $wpdb->prepare( "(`um`.`meta_key` = %s AND `um`.`meta_value` LIKE %s)", $meta_field, '%' . $wpdb->esc_like( $this->value ) . '%' ); |
|
1992 | + $conditions[ ] = $wpdb->prepare( "(`um`.`meta_key` = %s AND `um`.`meta_value` LIKE %s)", $meta_field, '%' . $wpdb->esc_like( $this->value ) . '%' ); |
|
1993 | 1993 | } |
1994 | 1994 | |
1995 | 1995 | $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 |
@@ -7,15 +7,15 @@ discard block |
||
7 | 7 | <div id="publishing-action"> |
8 | 8 | <?php |
9 | 9 | |
10 | - /** |
|
11 | - * @filter `gravityview/edit_entry/cancel_link` Modify the cancel button link URL |
|
12 | - * @since 1.11.1 |
|
13 | - * @param string $back_link Existing URL of the Cancel link |
|
14 | - * @param array $form The Gravity Forms form |
|
15 | - * @param array $entry The Gravity Forms entry |
|
16 | - * @param int $view_id The current View ID |
|
17 | - */ |
|
18 | - $back_link = apply_filters( 'gravityview/edit_entry/cancel_link', remove_query_arg( array( 'page', 'view', 'edit' ) ), $object->form, $object->entry, $object->view_id ); |
|
10 | + /** |
|
11 | + * @filter `gravityview/edit_entry/cancel_link` Modify the cancel button link URL |
|
12 | + * @since 1.11.1 |
|
13 | + * @param string $back_link Existing URL of the Cancel link |
|
14 | + * @param array $form The Gravity Forms form |
|
15 | + * @param array $entry The Gravity Forms entry |
|
16 | + * @param int $view_id The current View ID |
|
17 | + */ |
|
18 | + $back_link = apply_filters( 'gravityview/edit_entry/cancel_link', remove_query_arg( array( 'page', 'view', 'edit' ) ), $object->form, $object->entry, $object->view_id ); |
|
19 | 19 | |
20 | 20 | /** |
21 | 21 | * @action `gravityview/edit-entry/publishing-action/before` Triggered before the submit buttons in the Edit Entry screen, inside the `<div id="publishing-action">` container. |
@@ -53,11 +53,11 @@ discard block |
||
53 | 53 | /** |
54 | 54 | * @action `gravityview/edit-entry/publishing-action/after` Triggered after the submit buttons in the Edit Entry screen, inside the `<div id="publishing-action">` container. |
55 | 55 | * @since 1.5.1 |
56 | - * @since 2.0.13 Added $post_id |
|
56 | + * @since 2.0.13 Added $post_id |
|
57 | 57 | * @param array $form The Gravity Forms form |
58 | 58 | * @param array $entry The Gravity Forms entry |
59 | 59 | * @param int $view_id The current View ID |
60 | - * @param int $post_id The current Post ID |
|
60 | + * @param int $post_id The current Post ID |
|
61 | 61 | */ |
62 | 62 | do_action( 'gravityview/edit-entry/publishing-action/after', $object->form, $object->entry, $object->view_id, $object->post_id ); |
63 | 63 |
@@ -60,28 +60,28 @@ discard block |
||
60 | 60 | if ( $object->show_previous_button ) { |
61 | 61 | $previous_tabindex = GFCommon::get_tabindex(); |
62 | 62 | ?> |
63 | - <input id="gform_previous_button_<?php echo esc_attr( $object->form['id'] ); ?>" class="btn btn-lg button button-large gform_button button-primary gv-button-previous" type="submit" <?php echo $previous_tabindex; ?> value="<?php echo esc_attr( $labels['previous'] ); ?>" name="save" /> |
|
63 | + <input id="gform_previous_button_<?php echo esc_attr( $object->form[ 'id' ] ); ?>" class="btn btn-lg button button-large gform_button button-primary gv-button-previous" type="submit" <?php echo $previous_tabindex; ?> value="<?php echo esc_attr( $labels[ 'previous' ] ); ?>" name="save" /> |
|
64 | 64 | <?php |
65 | 65 | } |
66 | 66 | |
67 | 67 | if ( $object->show_next_button ) { |
68 | - $next_tabindex = GFCommon::get_tabindex(); |
|
68 | + $next_tabindex = GFCommon::get_tabindex(); |
|
69 | 69 | ?> |
70 | - <input id="gform_next_button_<?php echo esc_attr( $object->form['id'] ); ?>" class="btn btn-lg button button-large gform_button button-primary gv-button-next" type="submit" <?php echo $next_tabindex; ?> value="<?php echo esc_attr( $labels['next'] ); ?>" name="save" /> |
|
70 | + <input id="gform_next_button_<?php echo esc_attr( $object->form[ 'id' ] ); ?>" class="btn btn-lg button button-large gform_button button-primary gv-button-next" type="submit" <?php echo $next_tabindex; ?> value="<?php echo esc_attr( $labels[ 'next' ] ); ?>" name="save" /> |
|
71 | 71 | <?php |
72 | 72 | } |
73 | 73 | |
74 | 74 | if ( $object->show_update_button ) { |
75 | - $update_tabindex = GFCommon::get_tabindex(); |
|
75 | + $update_tabindex = GFCommon::get_tabindex(); |
|
76 | 76 | ?> |
77 | - <input id="gform_submit_button_<?php echo esc_attr( $object->form['id'] ); ?>" class="btn btn-lg button button-large gform_button button-primary gv-button-update" type="submit" <?php echo $update_tabindex; ?> value="<?php echo esc_attr( $labels['submit'] ); ?>" name="save" /> |
|
77 | + <input id="gform_submit_button_<?php echo esc_attr( $object->form[ 'id' ] ); ?>" class="btn btn-lg button button-large gform_button button-primary gv-button-update" type="submit" <?php echo $update_tabindex; ?> value="<?php echo esc_attr( $labels[ 'submit' ] ); ?>" name="save" /> |
|
78 | 78 | <?php |
79 | 79 | } |
80 | 80 | |
81 | - $cancel_tabindex = GFCommon::get_tabindex(); |
|
81 | + $cancel_tabindex = GFCommon::get_tabindex(); |
|
82 | 82 | |
83 | 83 | ?> |
84 | - <a class="btn btn-sm button button-small gv-button-cancel" <?php echo $cancel_tabindex; ?> href="<?php echo esc_url( $back_link ); ?>"><?php echo esc_attr( $labels['cancel'] ); ?></a> |
|
84 | + <a class="btn btn-sm button button-small gv-button-cancel" <?php echo $cancel_tabindex; ?> href="<?php echo esc_url( $back_link ); ?>"><?php echo esc_attr( $labels[ 'cancel' ] ); ?></a> |
|
85 | 85 | <?php |
86 | 86 | |
87 | 87 | /** |
@@ -97,5 +97,5 @@ discard block |
||
97 | 97 | |
98 | 98 | ?> |
99 | 99 | <input type="hidden" name="action" value="update" /> |
100 | - <input type="hidden" name="lid" value="<?php echo esc_attr( $object->entry['id'] ); ?>" /> |
|
100 | + <input type="hidden" name="lid" value="<?php echo esc_attr( $object->entry[ 'id' ] ); ?>" /> |
|
101 | 101 | </div> |
@@ -266,7 +266,7 @@ |
||
266 | 266 | * |
267 | 267 | * @uses GravityView_frontend::get_search_criteria() Convert the $_POST search request into a properly formatted request. |
268 | 268 | * @access public |
269 | - * @return void|boolean |
|
269 | + * @return false|null |
|
270 | 270 | */ |
271 | 271 | public function process_bulk_action() { |
272 | 272 |
@@ -361,14 +361,14 @@ discard block |
||
361 | 361 | /** |
362 | 362 | * update_approved function. |
363 | 363 | * |
364 | - * @since 1.18 Moved to GravityView_Entry_Approval::update_approved |
|
364 | + * @since 1.18 Moved to GravityView_Entry_Approval::update_approved |
|
365 | 365 | * @see GravityView_Entry_Approval::update_approved |
366 | - * |
|
366 | + * |
|
367 | 367 | * @param int $entry_id (default: 0) |
368 | 368 | * @param int $approved (default: 0) |
369 | 369 | * @param int $form_id (default: 0) |
370 | 370 | * @param int $approvedcolumn (default: 0) |
371 | - * |
|
371 | + * |
|
372 | 372 | * @return boolean True: It worked; False: it failed |
373 | 373 | */ |
374 | 374 | public static function update_approved( $entry_id = 0, $approved = 0, $form_id = 0, $approvedcolumn = 0) { |
@@ -378,9 +378,9 @@ discard block |
||
378 | 378 | /** |
379 | 379 | * Calculate the approve field.input id |
380 | 380 | * |
381 | - * @since 1.18 Moved to GravityView_Entry_Approval::get_approved_column |
|
382 | - * @see GravityView_Entry_Approval::get_approved_column |
|
383 | - * |
|
381 | + * @since 1.18 Moved to GravityView_Entry_Approval::get_approved_column |
|
382 | + * @see GravityView_Entry_Approval::get_approved_column |
|
383 | + * |
|
384 | 384 | * @param mixed $form GF Form or Form ID |
385 | 385 | * @return false|null|string Returns the input ID of the approved field. Returns NULL if no approved fields were found. Returns false if $form_id wasn't set. |
386 | 386 | */ |
@@ -505,37 +505,37 @@ discard block |
||
505 | 505 | 'bulk_actions' => $this->get_bulk_actions( $form_id ), |
506 | 506 | 'bulk_message' => $this->bulk_update_message, |
507 | 507 | 'unapprove_title' => GravityView_Entry_Approval_Status::get_title_attr('unapproved'), |
508 | - 'approve_title' => GravityView_Entry_Approval_Status::get_title_attr('disapproved'), |
|
508 | + 'approve_title' => GravityView_Entry_Approval_Status::get_title_attr('disapproved'), |
|
509 | 509 | 'disapprove_title' => GravityView_Entry_Approval_Status::get_title_attr('approved'), |
510 | 510 | 'column_title' => __( 'Show entry in directory view?', 'gravityview'), |
511 | 511 | 'column_link' => esc_url( $this->get_sort_link() ), |
512 | - 'status_popover_template' => GravityView_Entry_Approval::get_popover_template(), |
|
512 | + 'status_popover_template' => GravityView_Entry_Approval::get_popover_template(), |
|
513 | 513 | 'status_popover_placement' => GravityView_Entry_Approval::get_popover_placement(), |
514 | 514 | ) ); |
515 | 515 | |
516 | 516 | } |
517 | 517 | |
518 | 518 | /** |
519 | - * Generate a link to sort by approval status |
|
520 | - * |
|
521 | - * Note: Sorting by approval will never be great because it's not possible currently to declare the sorting as |
|
522 | - * numeric, but it does group the approved entries together. |
|
523 | - * |
|
524 | - * @since 2.0.14 Remove need for approval field for sorting by approval status |
|
525 | - * |
|
519 | + * Generate a link to sort by approval status |
|
520 | + * |
|
521 | + * Note: Sorting by approval will never be great because it's not possible currently to declare the sorting as |
|
522 | + * numeric, but it does group the approved entries together. |
|
523 | + * |
|
524 | + * @since 2.0.14 Remove need for approval field for sorting by approval status |
|
525 | + * |
|
526 | 526 | * @param int $form_id [NO LONGER USED] |
527 | 527 | * |
528 | 528 | * @return string Sorting link |
529 | 529 | */ |
530 | 530 | private function get_sort_link( $form_id = 0 ) { |
531 | 531 | |
532 | - $args = array( |
|
533 | - 'orderby' => 'is_approved', |
|
534 | - 'order' => ( 'desc' === \GV\Utils::_GET( 'order' ) ) ? 'asc' : 'desc', |
|
535 | - ); |
|
532 | + $args = array( |
|
533 | + 'orderby' => 'is_approved', |
|
534 | + 'order' => ( 'desc' === \GV\Utils::_GET( 'order' ) ) ? 'asc' : 'desc', |
|
535 | + ); |
|
536 | 536 | |
537 | 537 | return add_query_arg( $args ); |
538 | - } |
|
538 | + } |
|
539 | 539 | |
540 | 540 | /** |
541 | 541 | * Get an array of options to be added to the Gravity Forms "Bulk action" dropdown in a "GravityView" option group |
@@ -577,9 +577,9 @@ discard block |
||
577 | 577 | // Sanitize the values, just to be sure. |
578 | 578 | foreach ( $bulk_actions as $key => $group ) { |
579 | 579 | |
580 | - if( empty( $group ) ) { |
|
581 | - continue; |
|
582 | - } |
|
580 | + if( empty( $group ) ) { |
|
581 | + continue; |
|
582 | + } |
|
583 | 583 | |
584 | 584 | foreach ( $group as $i => $action ) { |
585 | 585 | $bulk_actions[ $key ][ $i ]['label'] = esc_html( $bulk_actions[ $key ][ $i ]['label'] ); |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | /** gf_entries page - entries table screen */ |
45 | 45 | |
46 | 46 | // capture bulk actions |
47 | - add_action( 'gform_loaded', array( $this, 'process_bulk_action') ); |
|
47 | + add_action( 'gform_loaded', array( $this, 'process_bulk_action' ) ); |
|
48 | 48 | |
49 | 49 | // add hidden field with approve status |
50 | 50 | add_action( 'gform_entries_first_column_actions', array( $this, 'add_entry_approved_hidden_input' ), 1, 5 ); |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | add_filter( 'gravityview/metaboxes/tooltips', array( $this, 'tooltips' ) ); |
53 | 53 | |
54 | 54 | // adding styles and scripts |
55 | - add_action( 'admin_enqueue_scripts', array( $this, 'add_scripts_and_styles') ); |
|
55 | + add_action( 'admin_enqueue_scripts', array( $this, 'add_scripts_and_styles' ) ); |
|
56 | 56 | // bypass Gravity Forms no-conflict mode |
57 | 57 | add_filter( 'gform_noconflict_scripts', array( $this, 'register_gform_noconflict_script' ) ); |
58 | 58 | add_filter( 'gform_noconflict_styles', array( $this, 'register_gform_noconflict_style' ) ); |
@@ -81,7 +81,7 @@ discard block |
||
81 | 81 | * @param bool $show_filter_links True: show the "approved"/"disapproved" filter links. False: hide them. |
82 | 82 | * @param array $form GF Form object of current form |
83 | 83 | */ |
84 | - if( false === apply_filters( 'gravityview/approve_entries/show_filter_links_entry_list', true, $form ) ) { |
|
84 | + if ( false === apply_filters( 'gravityview/approve_entries/show_filter_links_entry_list', true, $form ) ) { |
|
85 | 85 | return $filter_links; |
86 | 86 | } |
87 | 87 | |
@@ -109,27 +109,27 @@ discard block |
||
109 | 109 | $approved_count = $disapproved_count = $unapproved_count = 0; |
110 | 110 | |
111 | 111 | // Only count if necessary |
112 | - if( $include_counts ) { |
|
113 | - $approved_count = count( gravityview_get_entry_ids( $form['id'], array( 'status' => 'active', 'field_filters' => $field_filters_approved ) ) ); |
|
114 | - $disapproved_count = count( gravityview_get_entry_ids( $form['id'], array( 'status' => 'active', 'field_filters' => $field_filters_disapproved ) ) ); |
|
115 | - $unapproved_count = count( gravityview_get_entry_ids( $form['id'], array( 'status' => 'active', 'field_filters' => $field_filters_unapproved ) ) ); |
|
112 | + if ( $include_counts ) { |
|
113 | + $approved_count = count( gravityview_get_entry_ids( $form[ 'id' ], array( 'status' => 'active', 'field_filters' => $field_filters_approved ) ) ); |
|
114 | + $disapproved_count = count( gravityview_get_entry_ids( $form[ 'id' ], array( 'status' => 'active', 'field_filters' => $field_filters_disapproved ) ) ); |
|
115 | + $unapproved_count = count( gravityview_get_entry_ids( $form[ 'id' ], array( 'status' => 'active', 'field_filters' => $field_filters_unapproved ) ) ); |
|
116 | 116 | } |
117 | 117 | |
118 | - $filter_links[] = array( |
|
118 | + $filter_links[ ] = array( |
|
119 | 119 | 'id' => 'gv_approved', |
120 | 120 | 'field_filters' => $field_filters_approved, |
121 | 121 | 'count' => $approved_count, |
122 | 122 | 'label' => GravityView_Entry_Approval_Status::get_label( GravityView_Entry_Approval_Status::APPROVED ), |
123 | 123 | ); |
124 | 124 | |
125 | - $filter_links[] = array( |
|
125 | + $filter_links[ ] = array( |
|
126 | 126 | 'id' => 'gv_disapproved', |
127 | 127 | 'field_filters' => $field_filters_disapproved, |
128 | 128 | 'count' => $disapproved_count, |
129 | 129 | 'label' => GravityView_Entry_Approval_Status::get_label( GravityView_Entry_Approval_Status::DISAPPROVED ), |
130 | 130 | ); |
131 | 131 | |
132 | - $filter_links[] = array( |
|
132 | + $filter_links[ ] = array( |
|
133 | 133 | 'id' => 'gv_unapproved', |
134 | 134 | 'field_filters' => $field_filters_unapproved, |
135 | 135 | 'count' => $unapproved_count, |
@@ -148,9 +148,9 @@ discard block |
||
148 | 148 | */ |
149 | 149 | function tooltips( $tooltips ) { |
150 | 150 | |
151 | - $tooltips['form_gravityview_fields'] = array( |
|
152 | - 'title' => __('GravityView Fields', 'gravityview'), |
|
153 | - 'value' => __( 'Allow administrators to approve or reject entries and users to opt-in or opt-out of their entries being displayed.', 'gravityview'), |
|
151 | + $tooltips[ 'form_gravityview_fields' ] = array( |
|
152 | + 'title' => __( 'GravityView Fields', 'gravityview' ), |
|
153 | + 'value' => __( 'Allow administrators to approve or reject entries and users to opt-in or opt-out of their entries being displayed.', 'gravityview' ), |
|
154 | 154 | ); |
155 | 155 | |
156 | 156 | return $tooltips; |
@@ -261,7 +261,7 @@ discard block |
||
261 | 261 | |
262 | 262 | $gv_bulk_action = false; |
263 | 263 | |
264 | - if( version_compare( GFForms::$version, '2.0', '>=' ) ) { |
|
264 | + if ( version_compare( GFForms::$version, '2.0', '>=' ) ) { |
|
265 | 265 | $bulk_action = ( '-1' !== \GV\Utils::_POST( 'action' ) ) ? \GV\Utils::_POST( 'action' ) : \GV\Utils::_POST( 'action2' ); |
266 | 266 | } else { |
267 | 267 | // GF 1.9.x - Bulk action 2 is the bottom bulk action select form. |
@@ -269,7 +269,7 @@ discard block |
||
269 | 269 | } |
270 | 270 | |
271 | 271 | // Check the $bulk_action value against GV actions, see if they're the same. I hate strpos(). |
272 | - if( ! empty( $bulk_action ) && preg_match( '/^('. implode( '|', $this->bulk_action_prefixes ) .')/ism', $bulk_action ) ) { |
|
272 | + if ( ! empty( $bulk_action ) && preg_match( '/^(' . implode( '|', $this->bulk_action_prefixes ) . ')/ism', $bulk_action ) ) { |
|
273 | 273 | $gv_bulk_action = $bulk_action; |
274 | 274 | } |
275 | 275 | |
@@ -294,7 +294,7 @@ discard block |
||
294 | 294 | |
295 | 295 | // gforms_entry_list is the nonce that confirms we're on the right page |
296 | 296 | // gforms_update_note is sent when bulk editing entry notes. We don't want to process then. |
297 | - if ( $bulk_action && \GV\Utils::_POST( 'gforms_entry_list' ) && empty( $_POST['gforms_update_note'] ) ) { |
|
297 | + if ( $bulk_action && \GV\Utils::_POST( 'gforms_entry_list' ) && empty( $_POST[ 'gforms_update_note' ] ) ) { |
|
298 | 298 | |
299 | 299 | check_admin_referer( 'gforms_entry_list', 'gforms_entry_list' ); |
300 | 300 | |
@@ -312,13 +312,13 @@ discard block |
||
312 | 312 | } |
313 | 313 | |
314 | 314 | // All entries are set to be updated, not just the visible ones |
315 | - if ( ! empty( $_POST['all_entries'] ) ) { |
|
315 | + if ( ! empty( $_POST[ 'all_entries' ] ) ) { |
|
316 | 316 | |
317 | 317 | // Convert the current entry search into GF-formatted search criteria |
318 | 318 | $search = array( |
319 | - 'search_field' => isset( $_POST['f'] ) ? $_POST['f'][0] : 0, |
|
320 | - 'search_value' => isset( $_POST['v'][0] ) ? $_POST['v'][0] : '', |
|
321 | - 'search_operator' => isset( $_POST['o'][0] ) ? $_POST['o'][0] : 'contains', |
|
319 | + 'search_field' => isset( $_POST[ 'f' ] ) ? $_POST[ 'f' ][ 0 ] : 0, |
|
320 | + 'search_value' => isset( $_POST[ 'v' ][ 0 ] ) ? $_POST[ 'v' ][ 0 ] : '', |
|
321 | + 'search_operator' => isset( $_POST[ 'o' ][ 0 ] ) ? $_POST[ 'o' ][ 0 ] : 'contains', |
|
322 | 322 | ); |
323 | 323 | |
324 | 324 | $search_criteria = GravityView_frontend::get_search_criteria( $search, $form_id ); |
@@ -329,7 +329,7 @@ discard block |
||
329 | 329 | } else { |
330 | 330 | |
331 | 331 | // Changed from 'lead' to 'entry' in 2.0 |
332 | - $entries = isset( $_POST['lead'] ) ? $_POST['lead'] : $_POST['entry']; |
|
332 | + $entries = isset( $_POST[ 'lead' ] ) ? $_POST[ 'lead' ] : $_POST[ 'entry' ]; |
|
333 | 333 | |
334 | 334 | } |
335 | 335 | |
@@ -341,15 +341,15 @@ discard block |
||
341 | 341 | $entry_count = count( $entries ) > 1 ? sprintf( __( '%d entries', 'gravityview' ), count( $entries ) ) : __( '1 entry', 'gravityview' ); |
342 | 342 | |
343 | 343 | switch ( $approved_status ) { |
344 | - case $this->bulk_action_prefixes['approve']: |
|
344 | + case $this->bulk_action_prefixes[ 'approve' ]: |
|
345 | 345 | GravityView_Entry_Approval::update_bulk( $entries, GravityView_Entry_Approval_Status::APPROVED, $form_id ); |
346 | 346 | $this->bulk_update_message = sprintf( __( '%s approved.', 'gravityview' ), $entry_count ); |
347 | 347 | break; |
348 | - case $this->bulk_action_prefixes['unapprove']: |
|
348 | + case $this->bulk_action_prefixes[ 'unapprove' ]: |
|
349 | 349 | GravityView_Entry_Approval::update_bulk( $entries, GravityView_Entry_Approval_Status::UNAPPROVED, $form_id ); |
350 | 350 | $this->bulk_update_message = sprintf( __( '%s unapproved.', 'gravityview' ), $entry_count ); |
351 | 351 | break; |
352 | - case $this->bulk_action_prefixes['disapprove']: |
|
352 | + case $this->bulk_action_prefixes[ 'disapprove' ]: |
|
353 | 353 | GravityView_Entry_Approval::update_bulk( $entries, GravityView_Entry_Approval_Status::DISAPPROVED, $form_id ); |
354 | 354 | $this->bulk_update_message = sprintf( __( '%s disapproved.', 'gravityview' ), $entry_count ); |
355 | 355 | break; |
@@ -371,7 +371,7 @@ discard block |
||
371 | 371 | * |
372 | 372 | * @return boolean True: It worked; False: it failed |
373 | 373 | */ |
374 | - public static function update_approved( $entry_id = 0, $approved = 0, $form_id = 0, $approvedcolumn = 0) { |
|
374 | + public static function update_approved( $entry_id = 0, $approved = 0, $form_id = 0, $approvedcolumn = 0 ) { |
|
375 | 375 | return GravityView_Entry_Approval::update_approved( $entry_id, $approved, $form_id, $approvedcolumn ); |
376 | 376 | } |
377 | 377 | |
@@ -401,20 +401,20 @@ discard block |
||
401 | 401 | * |
402 | 402 | * @return void |
403 | 403 | */ |
404 | - static public function add_entry_approved_hidden_input( $form_id, $field_id, $value, $entry, $query_string ) { |
|
404 | + static public function add_entry_approved_hidden_input( $form_id, $field_id, $value, $entry, $query_string ) { |
|
405 | 405 | |
406 | - if( ! GVCommon::has_cap( 'gravityview_moderate_entries', $entry['id'] ) ) { |
|
406 | + if ( ! GVCommon::has_cap( 'gravityview_moderate_entries', $entry[ 'id' ] ) ) { |
|
407 | 407 | return; |
408 | 408 | } |
409 | 409 | |
410 | - if( empty( $entry['id'] ) ) { |
|
410 | + if ( empty( $entry[ 'id' ] ) ) { |
|
411 | 411 | return; |
412 | 412 | } |
413 | 413 | |
414 | 414 | $status_value = GravityView_Entry_Approval::get_entry_status( $entry, 'value' ); |
415 | 415 | |
416 | - if( $status_value ) { |
|
417 | - echo '<input type="hidden" class="entry_approval" id="entry_approved_'. $entry['id'] .'" value="' . esc_attr( $status_value ) . '" />'; |
|
416 | + if ( $status_value ) { |
|
417 | + echo '<input type="hidden" class="entry_approval" id="entry_approved_' . $entry[ 'id' ] . '" value="' . esc_attr( $status_value ) . '" />'; |
|
418 | 418 | } |
419 | 419 | } |
420 | 420 | |
@@ -427,10 +427,10 @@ discard block |
||
427 | 427 | */ |
428 | 428 | private function get_form_id() { |
429 | 429 | |
430 | - $form_id = GFForms::get('id'); |
|
430 | + $form_id = GFForms::get( 'id' ); |
|
431 | 431 | |
432 | 432 | // If there are no forms identified, use the first form. That's how GF does it. |
433 | - if( empty( $form_id ) && class_exists('RGFormsModel') ) { |
|
433 | + if ( empty( $form_id ) && class_exists( 'RGFormsModel' ) ) { |
|
434 | 434 | $form_id = $this->get_first_form_id(); |
435 | 435 | } |
436 | 436 | |
@@ -450,14 +450,14 @@ discard block |
||
450 | 450 | |
451 | 451 | $forms = RGFormsModel::get_forms( null, 'title' ); |
452 | 452 | |
453 | - if( ! isset( $forms[0] ) ) { |
|
453 | + if ( ! isset( $forms[ 0 ] ) ) { |
|
454 | 454 | gravityview()->log->error( 'No forms were found' ); |
455 | 455 | return 0; |
456 | 456 | } |
457 | 457 | |
458 | - $first_form = $forms[0]; |
|
458 | + $first_form = $forms[ 0 ]; |
|
459 | 459 | |
460 | - $form_id = is_object( $forms[0] ) ? $first_form->id : $first_form['id']; |
|
460 | + $form_id = is_object( $forms[ 0 ] ) ? $first_form->id : $first_form[ 'id' ]; |
|
461 | 461 | |
462 | 462 | return intval( $form_id ); |
463 | 463 | } |
@@ -465,37 +465,37 @@ discard block |
||
465 | 465 | |
466 | 466 | function add_scripts_and_styles( $hook ) { |
467 | 467 | |
468 | - if( ! class_exists( 'GFForms' ) ) { |
|
468 | + if ( ! class_exists( 'GFForms' ) ) { |
|
469 | 469 | gravityview()->log->error( 'GFForms does not exist.' ); |
470 | 470 | return; |
471 | 471 | } |
472 | 472 | |
473 | 473 | // enqueue styles & scripts gf_entries |
474 | 474 | // But only if we're on the main Entries page, not on reports pages |
475 | - if( GFForms::get_page() !== 'entry_list' ) { |
|
475 | + if ( GFForms::get_page() !== 'entry_list' ) { |
|
476 | 476 | return; |
477 | 477 | } |
478 | 478 | |
479 | 479 | $form_id = $this->get_form_id(); |
480 | 480 | |
481 | 481 | // Things are broken; no forms were found |
482 | - if( empty( $form_id ) ) { |
|
482 | + if ( empty( $form_id ) ) { |
|
483 | 483 | return; |
484 | 484 | } |
485 | 485 | |
486 | - wp_enqueue_style( 'gravityview_entries_list', plugins_url('assets/css/admin-entries-list.css', GRAVITYVIEW_FILE), array(), GravityView_Plugin::version ); |
|
486 | + wp_enqueue_style( 'gravityview_entries_list', plugins_url( 'assets/css/admin-entries-list.css', GRAVITYVIEW_FILE ), array(), GravityView_Plugin::version ); |
|
487 | 487 | |
488 | - $script_debug = (defined('SCRIPT_DEBUG') && SCRIPT_DEBUG) ? '' : '.min'; |
|
488 | + $script_debug = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min'; |
|
489 | 489 | |
490 | - wp_enqueue_script( 'gravityview_gf_entries_scripts', plugins_url('assets/js/admin-entries-list'.$script_debug.'.js', GRAVITYVIEW_FILE), array( 'jquery' ), GravityView_Plugin::version ); |
|
490 | + wp_enqueue_script( 'gravityview_gf_entries_scripts', plugins_url( 'assets/js/admin-entries-list' . $script_debug . '.js', GRAVITYVIEW_FILE ), array( 'jquery' ), GravityView_Plugin::version ); |
|
491 | 491 | |
492 | 492 | wp_enqueue_script( 'gravityview_entries_list-popper', plugins_url( 'assets/lib/tippy/popper.min.js', GRAVITYVIEW_FILE ), array(), GravityView_Plugin::version ); |
493 | 493 | wp_enqueue_script( 'gravityview_entries_list-tippy', plugins_url( 'assets/lib/tippy/tippy.min.js', GRAVITYVIEW_FILE ), array(), GravityView_Plugin::version ); |
494 | 494 | wp_enqueue_style( 'gravityview_entries_list-tippy', plugins_url( 'assets/lib/tippy/tippy.css', GRAVITYVIEW_FILE ), array(), GravityView_Plugin::version ); |
495 | 495 | |
496 | 496 | wp_localize_script( 'gravityview_gf_entries_scripts', 'gvGlobals', array( |
497 | - 'nonce' => wp_create_nonce( 'gravityview_entry_approval'), |
|
498 | - 'admin_nonce' => wp_create_nonce( 'gravityview_admin_entry_approval'), |
|
497 | + 'nonce' => wp_create_nonce( 'gravityview_entry_approval' ), |
|
498 | + 'admin_nonce' => wp_create_nonce( 'gravityview_admin_entry_approval' ), |
|
499 | 499 | 'form_id' => $form_id, |
500 | 500 | 'show_column' => (int)$this->show_approve_entry_column( $form_id ), |
501 | 501 | 'add_bulk_action' => (int)GVCommon::has_cap( 'gravityview_moderate_entries' ), |
@@ -504,10 +504,10 @@ discard block |
||
504 | 504 | 'status_unapproved' => GravityView_Entry_Approval_Status::UNAPPROVED, |
505 | 505 | 'bulk_actions' => $this->get_bulk_actions( $form_id ), |
506 | 506 | 'bulk_message' => $this->bulk_update_message, |
507 | - 'unapprove_title' => GravityView_Entry_Approval_Status::get_title_attr('unapproved'), |
|
508 | - 'approve_title' => GravityView_Entry_Approval_Status::get_title_attr('disapproved'), |
|
509 | - 'disapprove_title' => GravityView_Entry_Approval_Status::get_title_attr('approved'), |
|
510 | - 'column_title' => __( 'Show entry in directory view?', 'gravityview'), |
|
507 | + 'unapprove_title' => GravityView_Entry_Approval_Status::get_title_attr( 'unapproved' ), |
|
508 | + 'approve_title' => GravityView_Entry_Approval_Status::get_title_attr( 'disapproved' ), |
|
509 | + 'disapprove_title' => GravityView_Entry_Approval_Status::get_title_attr( 'approved' ), |
|
510 | + 'column_title' => __( 'Show entry in directory view?', 'gravityview' ), |
|
511 | 511 | 'column_link' => esc_url( $this->get_sort_link() ), |
512 | 512 | 'status_popover_template' => GravityView_Entry_Approval::get_popover_template(), |
513 | 513 | 'status_popover_placement' => GravityView_Entry_Approval::get_popover_placement(), |
@@ -551,16 +551,16 @@ discard block |
||
551 | 551 | $bulk_actions = array( |
552 | 552 | 'GravityView' => array( |
553 | 553 | array( |
554 | - 'label' => GravityView_Entry_Approval_Status::get_string('approved', 'action'), |
|
555 | - 'value' => sprintf( '%s-%d', $this->bulk_action_prefixes['approve'], $form_id ), |
|
554 | + 'label' => GravityView_Entry_Approval_Status::get_string( 'approved', 'action' ), |
|
555 | + 'value' => sprintf( '%s-%d', $this->bulk_action_prefixes[ 'approve' ], $form_id ), |
|
556 | 556 | ), |
557 | 557 | array( |
558 | - 'label' => GravityView_Entry_Approval_Status::get_string('disapproved', 'action'), |
|
559 | - 'value' => sprintf( '%s-%d', $this->bulk_action_prefixes['disapprove'], $form_id ), |
|
558 | + 'label' => GravityView_Entry_Approval_Status::get_string( 'disapproved', 'action' ), |
|
559 | + 'value' => sprintf( '%s-%d', $this->bulk_action_prefixes[ 'disapprove' ], $form_id ), |
|
560 | 560 | ), |
561 | 561 | array( |
562 | - 'label' => GravityView_Entry_Approval_Status::get_string('unapproved', 'action'), |
|
563 | - 'value' => sprintf( '%s-%d', $this->bulk_action_prefixes['unapprove'], $form_id ), |
|
562 | + 'label' => GravityView_Entry_Approval_Status::get_string( 'unapproved', 'action' ), |
|
563 | + 'value' => sprintf( '%s-%d', $this->bulk_action_prefixes[ 'unapprove' ], $form_id ), |
|
564 | 564 | ), |
565 | 565 | ), |
566 | 566 | ); |
@@ -577,13 +577,13 @@ discard block |
||
577 | 577 | // Sanitize the values, just to be sure. |
578 | 578 | foreach ( $bulk_actions as $key => $group ) { |
579 | 579 | |
580 | - if( empty( $group ) ) { |
|
580 | + if ( empty( $group ) ) { |
|
581 | 581 | continue; |
582 | 582 | } |
583 | 583 | |
584 | 584 | foreach ( $group as $i => $action ) { |
585 | - $bulk_actions[ $key ][ $i ]['label'] = esc_html( $bulk_actions[ $key ][ $i ]['label'] ); |
|
586 | - $bulk_actions[ $key ][ $i ]['value'] = esc_attr( $bulk_actions[ $key ][ $i ]['value'] ); |
|
585 | + $bulk_actions[ $key ][ $i ][ 'label' ] = esc_html( $bulk_actions[ $key ][ $i ][ 'label' ] ); |
|
586 | + $bulk_actions[ $key ][ $i ][ 'value' ] = esc_attr( $bulk_actions[ $key ][ $i ][ 'value' ] ); |
|
587 | 587 | } |
588 | 588 | } |
589 | 589 | |
@@ -608,13 +608,13 @@ discard block |
||
608 | 608 | * @since 1.7.2 |
609 | 609 | * @param boolean $hide_if_no_connections |
610 | 610 | */ |
611 | - $hide_if_no_connections = apply_filters('gravityview/approve_entries/hide-if-no-connections', false ); |
|
611 | + $hide_if_no_connections = apply_filters( 'gravityview/approve_entries/hide-if-no-connections', false ); |
|
612 | 612 | |
613 | - if( $hide_if_no_connections ) { |
|
613 | + if ( $hide_if_no_connections ) { |
|
614 | 614 | |
615 | 615 | $connected_views = gravityview_get_connected_views( $form_id ); |
616 | 616 | |
617 | - if( empty( $connected_views ) ) { |
|
617 | + if ( empty( $connected_views ) ) { |
|
618 | 618 | $show_approve_column = false; |
619 | 619 | } |
620 | 620 | } |
@@ -624,21 +624,21 @@ discard block |
||
624 | 624 | * @param boolean $show_approve_column Whether the column will be shown |
625 | 625 | * @param int $form_id The ID of the Gravity Forms form for which entries are being shown |
626 | 626 | */ |
627 | - $show_approve_column = apply_filters('gravityview/approve_entries/show-column', $show_approve_column, $form_id ); |
|
627 | + $show_approve_column = apply_filters( 'gravityview/approve_entries/show-column', $show_approve_column, $form_id ); |
|
628 | 628 | |
629 | 629 | return $show_approve_column; |
630 | 630 | } |
631 | 631 | |
632 | 632 | function register_gform_noconflict_script( $scripts ) { |
633 | - $scripts[] = 'gravityview_gf_entries_scripts'; |
|
634 | - $scripts[] = 'gravityview_entries_list-popper'; |
|
635 | - $scripts[] = 'gravityview_entries_list-tippy'; |
|
633 | + $scripts[ ] = 'gravityview_gf_entries_scripts'; |
|
634 | + $scripts[ ] = 'gravityview_entries_list-popper'; |
|
635 | + $scripts[ ] = 'gravityview_entries_list-tippy'; |
|
636 | 636 | return $scripts; |
637 | 637 | } |
638 | 638 | |
639 | 639 | function register_gform_noconflict_style( $styles ) { |
640 | - $styles[] = 'gravityview_entries_list'; |
|
641 | - $styles[] = 'gravityview_entries_list-tippy'; |
|
640 | + $styles[ ] = 'gravityview_entries_list'; |
|
641 | + $styles[ ] = 'gravityview_entries_list-tippy'; |
|
642 | 642 | return $styles; |
643 | 643 | } |
644 | 644 |