@@ -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 | |
@@ -243,7 +243,7 @@ discard block |
||
| 243 | 243 | /** |
| 244 | 244 | * Add admin script to the no-conflict scripts whitelist |
| 245 | 245 | * @param array $allowed Scripts allowed in no-conflict mode |
| 246 | - * @return array Scripts allowed in no-conflict mode, plus the search widget script |
|
| 246 | + * @return string[] Scripts allowed in no-conflict mode, plus the search widget script |
|
| 247 | 247 | */ |
| 248 | 248 | public function register_no_conflict( $allowed ) { |
| 249 | 249 | $allowed[] = 'gravityview_searchwidget_admin'; |
@@ -709,7 +709,6 @@ discard block |
||
| 709 | 709 | * Dropin for the legacy flat filters when \GF_Query is available. |
| 710 | 710 | * |
| 711 | 711 | * @param \GF_Query $query The current query object reference |
| 712 | - * @param \GV\View $this The current view object |
|
| 713 | 712 | * @param \GV\Request $request The request object |
| 714 | 713 | */ |
| 715 | 714 | public function gf_query_filter( &$query, $view, $request ) { |
@@ -1199,7 +1198,7 @@ discard block |
||
| 1199 | 1198 | /** |
| 1200 | 1199 | * Get the label for a search form field |
| 1201 | 1200 | * @param array $field Field setting as sent by the GV configuration - has `field`, `input` (input type), and `label` keys |
| 1202 | - * @param array $form_field Form field data, as fetched by `gravityview_get_field()` |
|
| 1201 | + * @param GF_Field|null $form_field Form field data, as fetched by `gravityview_get_field()` |
|
| 1203 | 1202 | * @return string Label for the search form |
| 1204 | 1203 | */ |
| 1205 | 1204 | private static function get_field_label( $field, $form_field = array() ) { |
@@ -1364,7 +1363,7 @@ discard block |
||
| 1364 | 1363 | /** |
| 1365 | 1364 | * Require the datepicker script for the frontend GV script |
| 1366 | 1365 | * @param array $js_dependencies Array of existing required scripts for the fe-views.js script |
| 1367 | - * @return array Array required scripts, with `jquery-ui-datepicker` added |
|
| 1366 | + * @return string[] Array required scripts, with `jquery-ui-datepicker` added |
|
| 1368 | 1367 | */ |
| 1369 | 1368 | public function add_datepicker_js_dependency( $js_dependencies ) { |
| 1370 | 1369 | |
@@ -1376,7 +1375,7 @@ discard block |
||
| 1376 | 1375 | /** |
| 1377 | 1376 | * Modify the array passed to wp_localize_script() |
| 1378 | 1377 | * |
| 1379 | - * @param array $js_localization The data padded to the Javascript file |
|
| 1378 | + * @param array $localizations The data padded to the Javascript file |
|
| 1380 | 1379 | * @param array $view_data View data array with View settings |
| 1381 | 1380 | * |
| 1382 | 1381 | * @return array |
@@ -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( |
@@ -86,7 +86,7 @@ discard block |
||
| 86 | 86 | |
| 87 | 87 | // admin - add scripts - run at 1100 to make sure GravityView_Admin_Views::add_scripts_and_styles() runs first at 999 |
| 88 | 88 | add_action( 'admin_enqueue_scripts', array( $this, 'add_scripts_and_styles' ), 1100 ); |
| 89 | - add_action( 'wp_enqueue_scripts', array( $this, 'register_scripts') ); |
|
| 89 | + add_action( 'wp_enqueue_scripts', array( $this, 'register_scripts' ) ); |
|
| 90 | 90 | add_filter( 'gravityview_noconflict_scripts', array( $this, 'register_no_conflict' ) ); |
| 91 | 91 | |
| 92 | 92 | // ajax - get the searchable fields |
@@ -229,7 +229,7 @@ discard block |
||
| 229 | 229 | $script_min = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min'; |
| 230 | 230 | $script_source = empty( $script_min ) ? '/source' : ''; |
| 231 | 231 | |
| 232 | - 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 ); |
|
| 232 | + 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 ); |
|
| 233 | 233 | |
| 234 | 234 | wp_localize_script( 'gravityview_searchwidget_admin', 'gvSearchVar', array( |
| 235 | 235 | 'nonce' => wp_create_nonce( 'gravityview_ajaxsearchwidget' ), |
@@ -251,7 +251,7 @@ discard block |
||
| 251 | 251 | * @return array Scripts allowed in no-conflict mode, plus the search widget script |
| 252 | 252 | */ |
| 253 | 253 | public function register_no_conflict( $allowed ) { |
| 254 | - $allowed[] = 'gravityview_searchwidget_admin'; |
|
| 254 | + $allowed[ ] = 'gravityview_searchwidget_admin'; |
|
| 255 | 255 | return $allowed; |
| 256 | 256 | } |
| 257 | 257 | |
@@ -264,24 +264,24 @@ discard block |
||
| 264 | 264 | */ |
| 265 | 265 | public static function get_searchable_fields() { |
| 266 | 266 | |
| 267 | - if ( ! isset( $_POST['nonce'] ) || ! wp_verify_nonce( $_POST['nonce'], 'gravityview_ajaxsearchwidget' ) ) { |
|
| 267 | + if ( ! isset( $_POST[ 'nonce' ] ) || ! wp_verify_nonce( $_POST[ 'nonce' ], 'gravityview_ajaxsearchwidget' ) ) { |
|
| 268 | 268 | exit( '0' ); |
| 269 | 269 | } |
| 270 | 270 | |
| 271 | 271 | $form = ''; |
| 272 | 272 | |
| 273 | 273 | // Fetch the form for the current View |
| 274 | - if ( ! empty( $_POST['view_id'] ) ) { |
|
| 274 | + if ( ! empty( $_POST[ 'view_id' ] ) ) { |
|
| 275 | 275 | |
| 276 | - $form = gravityview_get_form_id( $_POST['view_id'] ); |
|
| 276 | + $form = gravityview_get_form_id( $_POST[ 'view_id' ] ); |
|
| 277 | 277 | |
| 278 | - } elseif ( ! empty( $_POST['formid'] ) ) { |
|
| 278 | + } elseif ( ! empty( $_POST[ 'formid' ] ) ) { |
|
| 279 | 279 | |
| 280 | - $form = (int) $_POST['formid']; |
|
| 280 | + $form = (int)$_POST[ 'formid' ]; |
|
| 281 | 281 | |
| 282 | - } elseif ( ! empty( $_POST['template_id'] ) && class_exists( 'GravityView_Ajax' ) ) { |
|
| 282 | + } elseif ( ! empty( $_POST[ 'template_id' ] ) && class_exists( 'GravityView_Ajax' ) ) { |
|
| 283 | 283 | |
| 284 | - $form = GravityView_Ajax::pre_get_form_fields( $_POST['template_id'] ); |
|
| 284 | + $form = GravityView_Ajax::pre_get_form_fields( $_POST[ 'template_id' ] ); |
|
| 285 | 285 | |
| 286 | 286 | } |
| 287 | 287 | |
@@ -331,14 +331,14 @@ discard block |
||
| 331 | 331 | ); |
| 332 | 332 | |
| 333 | 333 | if ( gravityview()->plugin->supports( \GV\Plugin::FEATURE_GFQUERY ) ) { |
| 334 | - $custom_fields['is_approved'] = array( |
|
| 334 | + $custom_fields[ 'is_approved' ] = array( |
|
| 335 | 335 | 'text' => esc_html__( 'Approval Status', 'gravityview' ), |
| 336 | 336 | 'type' => 'multi', |
| 337 | 337 | ); |
| 338 | 338 | } |
| 339 | 339 | |
| 340 | - foreach( $custom_fields as $custom_field_key => $custom_field ) { |
|
| 341 | - $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 | + foreach ( $custom_fields as $custom_field_key => $custom_field ) { |
|
| 341 | + $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' ] ); |
|
| 342 | 342 | } |
| 343 | 343 | |
| 344 | 344 | // Get fields with sub-inputs and no parent |
@@ -360,13 +360,13 @@ discard block |
||
| 360 | 360 | |
| 361 | 361 | foreach ( $fields as $id => $field ) { |
| 362 | 362 | |
| 363 | - if ( in_array( $field['type'], $blacklist_field_types ) ) { |
|
| 363 | + if ( in_array( $field[ 'type' ], $blacklist_field_types ) ) { |
|
| 364 | 364 | continue; |
| 365 | 365 | } |
| 366 | 366 | |
| 367 | - $types = self::get_search_input_types( $id, $field['type'] ); |
|
| 367 | + $types = self::get_search_input_types( $id, $field[ 'type' ] ); |
|
| 368 | 368 | |
| 369 | - $output .= '<option value="'. $id .'" '. selected( $id, $current, false ).'data-inputtypes="'. esc_attr( $types ) .'">'. esc_html( $field['label'] ) .'</option>'; |
|
| 369 | + $output .= '<option value="' . $id . '" ' . selected( $id, $current, false ) . 'data-inputtypes="' . esc_attr( $types ) . '">' . esc_html( $field[ 'label' ] ) . '</option>'; |
|
| 370 | 370 | } |
| 371 | 371 | } |
| 372 | 372 | |
@@ -389,7 +389,7 @@ discard block |
||
| 389 | 389 | public static function get_search_input_types( $field_id = '', $field_type = null ) { |
| 390 | 390 | |
| 391 | 391 | // @todo - This needs to be improved - many fields have . including products and addresses |
| 392 | - if ( false !== strpos( (string) $field_id, '.' ) && in_array( $field_type, array( 'checkbox' ) ) || in_array( $field_id, array( 'is_fulfilled' ) ) ) { |
|
| 392 | + if ( false !== strpos( (string)$field_id, '.' ) && in_array( $field_type, array( 'checkbox' ) ) || in_array( $field_id, array( 'is_fulfilled' ) ) ) { |
|
| 393 | 393 | $input_type = 'boolean'; // on/off checkbox |
| 394 | 394 | } elseif ( in_array( $field_type, array( 'checkbox', 'post_category', 'multiselect' ) ) ) { |
| 395 | 395 | $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 | } |
@@ -535,7 +535,7 @@ discard block |
||
| 535 | 535 | return $search_criteria; // Return the original criteria, GF_Query modification kicks in later |
| 536 | 536 | } |
| 537 | 537 | |
| 538 | - if( 'post' === $this->search_method ) { |
|
| 538 | + if ( 'post' === $this->search_method ) { |
|
| 539 | 539 | $get = $_POST; |
| 540 | 540 | } else { |
| 541 | 541 | $get = $_GET; |
@@ -554,15 +554,15 @@ discard block |
||
| 554 | 554 | $get = gv_map_deep( $get, 'rawurldecode' ); |
| 555 | 555 | |
| 556 | 556 | // Make sure array key is set up |
| 557 | - $search_criteria['field_filters'] = \GV\Utils::get( $search_criteria, 'field_filters', array() ); |
|
| 557 | + $search_criteria[ 'field_filters' ] = \GV\Utils::get( $search_criteria, 'field_filters', array() ); |
|
| 558 | 558 | |
| 559 | 559 | $searchable_fields = $this->get_view_searchable_fields( $view ); |
| 560 | 560 | $searchable_field_objects = $this->get_view_searchable_fields( $view, true ); |
| 561 | 561 | |
| 562 | 562 | // add free search |
| 563 | - if ( isset( $get['gv_search'] ) && '' !== $get['gv_search'] && in_array( 'search_all', $searchable_fields ) ) { |
|
| 563 | + if ( isset( $get[ 'gv_search' ] ) && '' !== $get[ 'gv_search' ] && in_array( 'search_all', $searchable_fields ) ) { |
|
| 564 | 564 | |
| 565 | - $search_all_value = trim( $get['gv_search'] ); |
|
| 565 | + $search_all_value = trim( $get[ 'gv_search' ] ); |
|
| 566 | 566 | |
| 567 | 567 | /** |
| 568 | 568 | * @filter `gravityview/search-all-split-words` Search for each word separately or the whole phrase? |
@@ -587,7 +587,7 @@ discard block |
||
| 587 | 587 | } |
| 588 | 588 | |
| 589 | 589 | foreach ( $words as $word ) { |
| 590 | - $search_criteria['field_filters'][] = array( |
|
| 590 | + $search_criteria[ 'field_filters' ][ ] = array( |
|
| 591 | 591 | 'key' => null, // The field ID to search |
| 592 | 592 | 'value' => $word, // The value to search |
| 593 | 593 | 'operator' => 'contains', // What to search in. Options: `is` or `contains` |
@@ -600,14 +600,14 @@ discard block |
||
| 600 | 600 | /** |
| 601 | 601 | * Get and normalize the dates according to the input format. |
| 602 | 602 | */ |
| 603 | - if ( $curr_start = ! empty( $get['gv_start'] ) ? $get['gv_start'] : '' ) { |
|
| 604 | - if( $curr_start_date = date_create_from_format( $this->get_datepicker_format( true ), $curr_start ) ) { |
|
| 603 | + if ( $curr_start = ! empty( $get[ 'gv_start' ] ) ? $get[ 'gv_start' ] : '' ) { |
|
| 604 | + if ( $curr_start_date = date_create_from_format( $this->get_datepicker_format( true ), $curr_start ) ) { |
|
| 605 | 605 | $curr_start = $curr_start_date->format( 'Y-m-d' ); |
| 606 | 606 | } |
| 607 | 607 | } |
| 608 | 608 | |
| 609 | - if ( $curr_end = ! empty( $get['gv_start'] ) ? ( ! empty( $get['gv_end'] ) ? $get['gv_end'] : '' ) : '' ) { |
|
| 610 | - if( $curr_end_date = date_create_from_format( $this->get_datepicker_format( true ), $curr_end ) ) { |
|
| 609 | + if ( $curr_end = ! empty( $get[ 'gv_start' ] ) ? ( ! empty( $get[ 'gv_end' ] ) ? $get[ 'gv_end' ] : '' ) : '' ) { |
|
| 610 | + if ( $curr_end_date = date_create_from_format( $this->get_datepicker_format( true ), $curr_end ) ) { |
|
| 611 | 611 | $curr_end = $curr_end_date->format( 'Y-m-d' ); |
| 612 | 612 | } |
| 613 | 613 | } |
@@ -642,22 +642,22 @@ discard block |
||
| 642 | 642 | */ |
| 643 | 643 | if ( ! empty( $curr_start ) ) { |
| 644 | 644 | $curr_start = date( 'Y-m-d H:i:s', strtotime( $curr_start ) ); |
| 645 | - $search_criteria['start_date'] = $adjust_tz ? get_gmt_from_date( $curr_start ) : $curr_start; |
|
| 645 | + $search_criteria[ 'start_date' ] = $adjust_tz ? get_gmt_from_date( $curr_start ) : $curr_start; |
|
| 646 | 646 | } |
| 647 | 647 | |
| 648 | 648 | if ( ! empty( $curr_end ) ) { |
| 649 | 649 | // Fast-forward 24 hour on the end time |
| 650 | 650 | $curr_end = date( 'Y-m-d H:i:s', strtotime( $curr_end ) + DAY_IN_SECONDS ); |
| 651 | - $search_criteria['end_date'] = $adjust_tz ? get_gmt_from_date( $curr_end ) : $curr_end; |
|
| 652 | - if ( strpos( $search_criteria['end_date'], '00:00:00' ) ) { // See https://github.com/gravityview/GravityView/issues/1056 |
|
| 653 | - $search_criteria['end_date'] = date( 'Y-m-d H:i:s', strtotime( $search_criteria['end_date'] ) - 1 ); |
|
| 651 | + $search_criteria[ 'end_date' ] = $adjust_tz ? get_gmt_from_date( $curr_end ) : $curr_end; |
|
| 652 | + if ( strpos( $search_criteria[ 'end_date' ], '00:00:00' ) ) { // See https://github.com/gravityview/GravityView/issues/1056 |
|
| 653 | + $search_criteria[ 'end_date' ] = date( 'Y-m-d H:i:s', strtotime( $search_criteria[ 'end_date' ] ) - 1 ); |
|
| 654 | 654 | } |
| 655 | 655 | } |
| 656 | 656 | } |
| 657 | 657 | |
| 658 | 658 | // search for a specific entry ID |
| 659 | 659 | if ( ! empty( $get[ 'gv_id' ] ) && in_array( 'entry_id', $searchable_fields ) ) { |
| 660 | - $search_criteria['field_filters'][] = array( |
|
| 660 | + $search_criteria[ 'field_filters' ][ ] = array( |
|
| 661 | 661 | 'key' => 'id', |
| 662 | 662 | 'value' => absint( $get[ 'gv_id' ] ), |
| 663 | 663 | 'operator' => '=', |
@@ -666,20 +666,20 @@ discard block |
||
| 666 | 666 | |
| 667 | 667 | // search for a specific Created_by ID |
| 668 | 668 | if ( ! empty( $get[ 'gv_by' ] ) && in_array( 'created_by', $searchable_fields ) ) { |
| 669 | - $search_criteria['field_filters'][] = array( |
|
| 669 | + $search_criteria[ 'field_filters' ][ ] = array( |
|
| 670 | 670 | 'key' => 'created_by', |
| 671 | - 'value' => $get['gv_by'], |
|
| 671 | + 'value' => $get[ 'gv_by' ], |
|
| 672 | 672 | 'operator' => '=', |
| 673 | 673 | ); |
| 674 | 674 | } |
| 675 | 675 | |
| 676 | 676 | // Get search mode passed in URL |
| 677 | - $mode = isset( $get['mode'] ) && in_array( $get['mode'], array( 'any', 'all' ) ) ? $get['mode'] : 'any'; |
|
| 677 | + $mode = isset( $get[ 'mode' ] ) && in_array( $get[ 'mode' ], array( 'any', 'all' ) ) ? $get[ 'mode' ] : 'any'; |
|
| 678 | 678 | |
| 679 | 679 | // get the other search filters |
| 680 | 680 | foreach ( $get as $key => $value ) { |
| 681 | 681 | |
| 682 | - if ( 0 !== strpos( $key, 'filter_' ) || gv_empty( $value, false, false ) || ( is_array( $value ) && count( $value ) === 1 && gv_empty( $value[0], false, false ) ) ) { |
|
| 682 | + if ( 0 !== strpos( $key, 'filter_' ) || gv_empty( $value, false, false ) || ( is_array( $value ) && count( $value ) === 1 && gv_empty( $value[ 0 ], false, false ) ) ) { |
|
| 683 | 683 | continue; |
| 684 | 684 | } |
| 685 | 685 | |
@@ -689,15 +689,15 @@ discard block |
||
| 689 | 689 | continue; |
| 690 | 690 | } |
| 691 | 691 | |
| 692 | - if ( isset( $filter[0]['value'] ) ) { |
|
| 693 | - $search_criteria['field_filters'] = array_merge( $search_criteria['field_filters'], $filter ); |
|
| 692 | + if ( isset( $filter[ 0 ][ 'value' ] ) ) { |
|
| 693 | + $search_criteria[ 'field_filters' ] = array_merge( $search_criteria[ 'field_filters' ], $filter ); |
|
| 694 | 694 | |
| 695 | 695 | // if date range type, set search mode to ALL |
| 696 | - if ( ! empty( $filter[0]['operator'] ) && in_array( $filter[0]['operator'], array( '>=', '<=', '>', '<' ) ) ) { |
|
| 696 | + if ( ! empty( $filter[ 0 ][ 'operator' ] ) && in_array( $filter[ 0 ][ 'operator' ], array( '>=', '<=', '>', '<' ) ) ) { |
|
| 697 | 697 | $mode = 'all'; |
| 698 | 698 | } |
| 699 | - } elseif( !empty( $filter ) ) { |
|
| 700 | - $search_criteria['field_filters'][] = $filter; |
|
| 699 | + } elseif ( ! empty( $filter ) ) { |
|
| 700 | + $search_criteria[ 'field_filters' ][ ] = $filter; |
|
| 701 | 701 | } |
| 702 | 702 | } |
| 703 | 703 | |
@@ -706,7 +706,7 @@ discard block |
||
| 706 | 706 | * @since 1.5.1 |
| 707 | 707 | * @param[out,in] string $mode Search mode (`any` vs `all`) |
| 708 | 708 | */ |
| 709 | - $search_criteria['field_filters']['mode'] = apply_filters( 'gravityview/search/mode', $mode ); |
|
| 709 | + $search_criteria[ 'field_filters' ][ 'mode' ] = apply_filters( 'gravityview/search/mode', $mode ); |
|
| 710 | 710 | |
| 711 | 711 | gravityview()->log->debug( 'Returned Search Criteria: ', array( 'data' => $search_criteria ) ); |
| 712 | 712 | |
@@ -740,19 +740,19 @@ discard block |
||
| 740 | 740 | |
| 741 | 741 | $query_class = $view->get_query_class(); |
| 742 | 742 | |
| 743 | - if ( empty( $search_criteria['field_filters'] ) ) { |
|
| 743 | + if ( empty( $search_criteria[ 'field_filters' ] ) ) { |
|
| 744 | 744 | return; |
| 745 | 745 | } |
| 746 | 746 | |
| 747 | 747 | $widgets = $view->widgets->by_id( $this->widget_id ); |
| 748 | 748 | if ( $widgets->count() ) { |
| 749 | 749 | $widgets = $widgets->all(); |
| 750 | - $widget = $widgets[0]; |
|
| 750 | + $widget = $widgets[ 0 ]; |
|
| 751 | 751 | |
| 752 | 752 | $search_fields = json_decode( $widget->configuration->get( 'search_fields' ), true ); |
| 753 | 753 | |
| 754 | - foreach ( (array) $search_fields as $search_field ) { |
|
| 755 | - if ( 'created_by' === $search_field['field'] && 'input_text' === $search_field['input'] ) { |
|
| 754 | + foreach ( (array)$search_fields as $search_field ) { |
|
| 755 | + if ( 'created_by' === $search_field[ 'field' ] && 'input_text' === $search_field[ 'input' ] ) { |
|
| 756 | 756 | $created_by_text_mode = true; |
| 757 | 757 | } |
| 758 | 758 | } |
@@ -761,7 +761,7 @@ discard block |
||
| 761 | 761 | $extra_conditions = array(); |
| 762 | 762 | $mode = 'any'; |
| 763 | 763 | |
| 764 | - foreach ( $search_criteria['field_filters'] as &$filter ) { |
|
| 764 | + foreach ( $search_criteria[ 'field_filters' ] as &$filter ) { |
|
| 765 | 765 | if ( ! is_array( $filter ) ) { |
| 766 | 766 | if ( in_array( strtolower( $filter ), array( 'any', 'all' ) ) ) { |
| 767 | 767 | $mode = $filter; |
@@ -770,13 +770,13 @@ discard block |
||
| 770 | 770 | } |
| 771 | 771 | |
| 772 | 772 | // Construct a manual query for unapproved statuses |
| 773 | - if ( 'is_approved' === $filter['key'] && in_array( \GravityView_Entry_Approval_Status::UNAPPROVED, (array) $filter['value'] ) ) { |
|
| 774 | - $_tmp_query = new $query_class( $view->form->ID, array( |
|
| 773 | + if ( 'is_approved' === $filter[ 'key' ] && in_array( \GravityView_Entry_Approval_Status::UNAPPROVED, (array)$filter[ 'value' ] ) ) { |
|
| 774 | + $_tmp_query = new $query_class( $view->form->ID, array( |
|
| 775 | 775 | 'field_filters' => array( |
| 776 | 776 | array( |
| 777 | 777 | 'operator' => 'in', |
| 778 | 778 | 'key' => 'is_approved', |
| 779 | - 'value' => (array) $filter['value'], |
|
| 779 | + 'value' => (array)$filter[ 'value' ], |
|
| 780 | 780 | ), |
| 781 | 781 | array( |
| 782 | 782 | 'operator' => 'is', |
@@ -788,30 +788,30 @@ discard block |
||
| 788 | 788 | ) ); |
| 789 | 789 | $_tmp_query_parts = $_tmp_query->_introspect(); |
| 790 | 790 | |
| 791 | - $extra_conditions[] = $_tmp_query_parts['where']; |
|
| 791 | + $extra_conditions[ ] = $_tmp_query_parts[ 'where' ]; |
|
| 792 | 792 | |
| 793 | 793 | $filter = false; |
| 794 | 794 | continue; |
| 795 | 795 | } |
| 796 | 796 | |
| 797 | 797 | // Construct manual query for text mode creator search |
| 798 | - if ( 'created_by' === $filter['key'] && ! empty( $created_by_text_mode ) ) { |
|
| 799 | - $extra_conditions[] = new GravityView_Widget_Search_Author_GF_Query_Condition( $filter, $view ); |
|
| 798 | + if ( 'created_by' === $filter[ 'key' ] && ! empty( $created_by_text_mode ) ) { |
|
| 799 | + $extra_conditions[ ] = new GravityView_Widget_Search_Author_GF_Query_Condition( $filter, $view ); |
|
| 800 | 800 | $filter = false; |
| 801 | 801 | continue; |
| 802 | 802 | } |
| 803 | 803 | |
| 804 | 804 | // By default, we want searches to be wildcard for each field. |
| 805 | - $filter['operator'] = empty( $filter['operator'] ) ? 'contains' : $filter['operator']; |
|
| 805 | + $filter[ 'operator' ] = empty( $filter[ 'operator' ] ) ? 'contains' : $filter[ 'operator' ]; |
|
| 806 | 806 | |
| 807 | 807 | // For multichoice, let's have an in (OR) search. |
| 808 | - if ( is_array( $filter['value'] ) ) { |
|
| 809 | - $filter['operator'] = 'in'; // @todo what about in contains (OR LIKE chains)? |
|
| 808 | + if ( is_array( $filter[ 'value' ] ) ) { |
|
| 809 | + $filter[ 'operator' ] = 'in'; // @todo what about in contains (OR LIKE chains)? |
|
| 810 | 810 | } |
| 811 | 811 | |
| 812 | 812 | // Default form with joins functionality |
| 813 | - if ( empty( $filter['form_id'] ) ) { |
|
| 814 | - $filter['form_id'] = $view->form ? $view->form->ID : 0; |
|
| 813 | + if ( empty( $filter[ 'form_id' ] ) ) { |
|
| 814 | + $filter[ 'form_id' ] = $view->form ? $view->form->ID : 0; |
|
| 815 | 815 | } |
| 816 | 816 | |
| 817 | 817 | /** |
@@ -821,28 +821,28 @@ discard block |
||
| 821 | 821 | * @since develop |
| 822 | 822 | * @param \GV\View $view The View we're operating on. |
| 823 | 823 | */ |
| 824 | - $filter['operator'] = apply_filters( 'gravityview_search_operator', $filter['operator'], $filter, $view ); |
|
| 824 | + $filter[ 'operator' ] = apply_filters( 'gravityview_search_operator', $filter[ 'operator' ], $filter, $view ); |
|
| 825 | 825 | } |
| 826 | 826 | |
| 827 | - if ( ! empty( $search_criteria['start_date'] ) || ! empty( $search_criteria['end_date'] ) ) { |
|
| 827 | + if ( ! empty( $search_criteria[ 'start_date' ] ) || ! empty( $search_criteria[ 'end_date' ] ) ) { |
|
| 828 | 828 | $date_criteria = array(); |
| 829 | 829 | |
| 830 | - if ( isset( $search_criteria['start_date'] ) ) { |
|
| 831 | - $date_criteria['start_date'] = $search_criteria['start_date']; |
|
| 830 | + if ( isset( $search_criteria[ 'start_date' ] ) ) { |
|
| 831 | + $date_criteria[ 'start_date' ] = $search_criteria[ 'start_date' ]; |
|
| 832 | 832 | } |
| 833 | 833 | |
| 834 | - if ( isset( $search_criteria['end_date'] ) ) { |
|
| 835 | - $date_criteria['end_date'] = $search_criteria['end_date']; |
|
| 834 | + if ( isset( $search_criteria[ 'end_date' ] ) ) { |
|
| 835 | + $date_criteria[ 'end_date' ] = $search_criteria[ 'end_date' ]; |
|
| 836 | 836 | } |
| 837 | 837 | |
| 838 | 838 | $_tmp_query = new $query_class( $view->form->ID, $date_criteria ); |
| 839 | 839 | $_tmp_query_parts = $_tmp_query->_introspect(); |
| 840 | - $extra_conditions[] = $_tmp_query_parts['where']; |
|
| 840 | + $extra_conditions[ ] = $_tmp_query_parts[ 'where' ]; |
|
| 841 | 841 | } |
| 842 | 842 | |
| 843 | 843 | $search_conditions = array(); |
| 844 | 844 | |
| 845 | - if ( $filters = array_filter( $search_criteria['field_filters'] ) ) { |
|
| 845 | + if ( $filters = array_filter( $search_criteria[ 'field_filters' ] ) ) { |
|
| 846 | 846 | |
| 847 | 847 | foreach ( $filters as $filter ) { |
| 848 | 848 | if ( ! is_array( $filter ) ) { |
@@ -855,22 +855,22 @@ discard block |
||
| 855 | 855 | * code by reusing what's inside GF_Query already as they |
| 856 | 856 | * take care of many small things like forcing numeric, etc. |
| 857 | 857 | */ |
| 858 | - $_tmp_query = new $query_class( $filter['form_id'], array( 'mode' => 'any', 'field_filters' => array( $filter ) ) ); |
|
| 858 | + $_tmp_query = new $query_class( $filter[ 'form_id' ], array( 'mode' => 'any', 'field_filters' => array( $filter ) ) ); |
|
| 859 | 859 | $_tmp_query_parts = $_tmp_query->_introspect(); |
| 860 | - $search_condition = $_tmp_query_parts['where']; |
|
| 860 | + $search_condition = $_tmp_query_parts[ 'where' ]; |
|
| 861 | 861 | |
| 862 | - if ( empty( $filter['key'] ) && $search_condition->expressions ) { |
|
| 862 | + if ( empty( $filter[ 'key' ] ) && $search_condition->expressions ) { |
|
| 863 | 863 | foreach ( $search_condition->expressions as $condition ) { |
| 864 | - $search_conditions[] = new GravityView_Widget_Search_All_GF_Query_Condition( $condition, $view ); |
|
| 864 | + $search_conditions[ ] = new GravityView_Widget_Search_All_GF_Query_Condition( $condition, $view ); |
|
| 865 | 865 | } |
| 866 | 866 | } else { |
| 867 | 867 | $left = $search_condition->left; |
| 868 | 868 | $alias = $query->_alias( $left->field_id, $left->source, $left->is_entry_column() ? 't' : 'm' ); |
| 869 | 869 | |
| 870 | 870 | if ( $view->joins && $left->field_id == GF_Query_Column::META ) { |
| 871 | - $search_conditions[] = new GravityView_Widget_Search_All_GF_Query_Condition( $search_condition, $view ); |
|
| 871 | + $search_conditions[ ] = new GravityView_Widget_Search_All_GF_Query_Condition( $search_condition, $view ); |
|
| 872 | 872 | } else { |
| 873 | - $search_conditions[] = new GF_Query_Condition( |
|
| 873 | + $search_conditions[ ] = new GF_Query_Condition( |
|
| 874 | 874 | new GF_Query_Column( $left->field_id, $left->source, $alias ), |
| 875 | 875 | $search_condition->operator, |
| 876 | 876 | $search_condition->right |
@@ -892,7 +892,7 @@ discard block |
||
| 892 | 892 | /** |
| 893 | 893 | * Combine the parts as a new WHERE clause. |
| 894 | 894 | */ |
| 895 | - $where = call_user_func_array( '\GF_Query_Condition::_and', array_merge( array( $query_parts['where'] ), $search_conditions, $extra_conditions ) ); |
|
| 895 | + $where = call_user_func_array( '\GF_Query_Condition::_and', array_merge( array( $query_parts[ 'where' ] ), $search_conditions, $extra_conditions ) ); |
|
| 896 | 896 | $query->where( $where ); |
| 897 | 897 | } |
| 898 | 898 | |
@@ -915,7 +915,7 @@ discard block |
||
| 915 | 915 | $field_id = str_replace( 'filter_', '', $key ); |
| 916 | 916 | |
| 917 | 917 | // calculates field_id, removing 'filter_' and for '_' for advanced fields ( like name or checkbox ) |
| 918 | - if ( preg_match('/^[0-9_]+$/ism', $field_id ) ) { |
|
| 918 | + if ( preg_match( '/^[0-9_]+$/ism', $field_id ) ) { |
|
| 919 | 919 | $field_id = str_replace( '_', '.', $field_id ); |
| 920 | 920 | } |
| 921 | 921 | |
@@ -967,7 +967,7 @@ discard block |
||
| 967 | 967 | // form is in searchable fields |
| 968 | 968 | $found = false; |
| 969 | 969 | foreach ( $searchable_fields as $field ) { |
| 970 | - if ( $field_id == $field['field'] && $form->ID == $field['form_id'] ) { |
|
| 970 | + if ( $field_id == $field[ 'field' ] && $form->ID == $field[ 'form_id' ] ) { |
|
| 971 | 971 | $found = true; |
| 972 | 972 | break; |
| 973 | 973 | } |
@@ -1003,7 +1003,7 @@ discard block |
||
| 1003 | 1003 | |
| 1004 | 1004 | case 'select': |
| 1005 | 1005 | case 'radio': |
| 1006 | - $filter['operator'] = 'is'; |
|
| 1006 | + $filter[ 'operator' ] = 'is'; |
|
| 1007 | 1007 | break; |
| 1008 | 1008 | |
| 1009 | 1009 | case 'post_category': |
@@ -1017,7 +1017,7 @@ discard block |
||
| 1017 | 1017 | |
| 1018 | 1018 | foreach ( $value as $val ) { |
| 1019 | 1019 | $cat = get_term( $val, 'category' ); |
| 1020 | - $filter[] = array( |
|
| 1020 | + $filter[ ] = array( |
|
| 1021 | 1021 | 'key' => $field_id, |
| 1022 | 1022 | 'value' => esc_attr( $cat->name ) . ':' . $val, |
| 1023 | 1023 | 'operator' => 'is', |
@@ -1036,7 +1036,7 @@ discard block |
||
| 1036 | 1036 | $filter = array(); |
| 1037 | 1037 | |
| 1038 | 1038 | foreach ( $value as $val ) { |
| 1039 | - $filter[] = array( 'key' => $field_id, 'value' => $val ); |
|
| 1039 | + $filter[ ] = array( 'key' => $field_id, 'value' => $val ); |
|
| 1040 | 1040 | } |
| 1041 | 1041 | |
| 1042 | 1042 | break; |
@@ -1045,9 +1045,9 @@ discard block |
||
| 1045 | 1045 | // convert checkbox on/off into the correct search filter |
| 1046 | 1046 | if ( false !== strpos( $field_id, '.' ) && ! empty( $form_field->inputs ) && ! empty( $form_field->choices ) ) { |
| 1047 | 1047 | foreach ( $form_field->inputs as $k => $input ) { |
| 1048 | - if ( $input['id'] == $field_id ) { |
|
| 1049 | - $filter['value'] = $form_field->choices[ $k ]['value']; |
|
| 1050 | - $filter['operator'] = 'is'; |
|
| 1048 | + if ( $input[ 'id' ] == $field_id ) { |
|
| 1049 | + $filter[ 'value' ] = $form_field->choices[ $k ][ 'value' ]; |
|
| 1050 | + $filter[ 'operator' ] = 'is'; |
|
| 1051 | 1051 | break; |
| 1052 | 1052 | } |
| 1053 | 1053 | } |
@@ -1057,7 +1057,7 @@ discard block |
||
| 1057 | 1057 | $filter = array(); |
| 1058 | 1058 | |
| 1059 | 1059 | foreach ( $value as $val ) { |
| 1060 | - $filter[] = array( |
|
| 1060 | + $filter[ ] = array( |
|
| 1061 | 1061 | 'key' => $field_id, |
| 1062 | 1062 | 'value' => $val, |
| 1063 | 1063 | 'operator' => 'is', |
@@ -1078,9 +1078,9 @@ discard block |
||
| 1078 | 1078 | foreach ( $words as $word ) { |
| 1079 | 1079 | if ( ! empty( $word ) && strlen( $word ) > 1 ) { |
| 1080 | 1080 | // Keep the same key for each filter |
| 1081 | - $filter['value'] = $word; |
|
| 1081 | + $filter[ 'value' ] = $word; |
|
| 1082 | 1082 | // Add a search for the value |
| 1083 | - $filters[] = $filter; |
|
| 1083 | + $filters[ ] = $filter; |
|
| 1084 | 1084 | } |
| 1085 | 1085 | } |
| 1086 | 1086 | |
@@ -1094,19 +1094,19 @@ discard block |
||
| 1094 | 1094 | |
| 1095 | 1095 | foreach ( $searchable_fields as $searchable_field ) { |
| 1096 | 1096 | |
| 1097 | - if( $form_field->ID !== $searchable_field['field'] ) { |
|
| 1097 | + if ( $form_field->ID !== $searchable_field[ 'field' ] ) { |
|
| 1098 | 1098 | continue; |
| 1099 | 1099 | } |
| 1100 | 1100 | |
| 1101 | 1101 | // Only exact-match dropdowns, not text search |
| 1102 | - if( in_array( $searchable_field['input'], array( 'text', 'search' ), true ) ) { |
|
| 1102 | + if ( in_array( $searchable_field[ 'input' ], array( 'text', 'search' ), true ) ) { |
|
| 1103 | 1103 | continue; |
| 1104 | 1104 | } |
| 1105 | 1105 | |
| 1106 | 1106 | $input_id = gravityview_get_input_id_from_id( $form_field->ID ); |
| 1107 | 1107 | |
| 1108 | 1108 | if ( 4 === $input_id ) { |
| 1109 | - $filter['operator'] = 'is'; |
|
| 1109 | + $filter[ 'operator' ] = 'is'; |
|
| 1110 | 1110 | }; |
| 1111 | 1111 | } |
| 1112 | 1112 | } |
@@ -1133,12 +1133,12 @@ discard block |
||
| 1133 | 1133 | * @since 1.16.3 |
| 1134 | 1134 | * Safeguard until GF implements '<=' operator |
| 1135 | 1135 | */ |
| 1136 | - if( !GFFormsModel::is_valid_operator( $operator ) && $operator === '<=' ) { |
|
| 1136 | + if ( ! GFFormsModel::is_valid_operator( $operator ) && $operator === '<=' ) { |
|
| 1137 | 1137 | $operator = '<'; |
| 1138 | 1138 | $date = date( 'Y-m-d', strtotime( self::get_formatted_date( $date, 'Y-m-d', $date_format ) . ' +1 day' ) ); |
| 1139 | 1139 | } |
| 1140 | 1140 | |
| 1141 | - $filter[] = array( |
|
| 1141 | + $filter[ ] = array( |
|
| 1142 | 1142 | 'key' => $field_id, |
| 1143 | 1143 | 'value' => self::get_formatted_date( $date, 'Y-m-d', $date_format ), |
| 1144 | 1144 | 'operator' => $operator, |
@@ -1146,7 +1146,7 @@ discard block |
||
| 1146 | 1146 | } |
| 1147 | 1147 | } else { |
| 1148 | 1148 | $date = $value; |
| 1149 | - $filter['value'] = self::get_formatted_date( $date, 'Y-m-d', $date_format ); |
|
| 1149 | + $filter[ 'value' ] = self::get_formatted_date( $date, 'Y-m-d', $date_format ); |
|
| 1150 | 1150 | } |
| 1151 | 1151 | |
| 1152 | 1152 | break; |
@@ -1177,7 +1177,7 @@ discard block |
||
| 1177 | 1177 | 'ymd_dot' => 'Y.m.d', |
| 1178 | 1178 | ); |
| 1179 | 1179 | |
| 1180 | - if ( ! empty( $field->dateFormat ) && isset( $datepicker[ $field->dateFormat ] ) ){ |
|
| 1180 | + if ( ! empty( $field->dateFormat ) && isset( $datepicker[ $field->dateFormat ] ) ) { |
|
| 1181 | 1181 | $format = $datepicker[ $field->dateFormat ]; |
| 1182 | 1182 | } |
| 1183 | 1183 | |
@@ -1214,7 +1214,7 @@ discard block |
||
| 1214 | 1214 | public function add_template_path( $file_paths ) { |
| 1215 | 1215 | |
| 1216 | 1216 | // Index 100 is the default GravityView template path. |
| 1217 | - $file_paths[102] = self::$file . 'templates/'; |
|
| 1217 | + $file_paths[ 102 ] = self::$file . 'templates/'; |
|
| 1218 | 1218 | |
| 1219 | 1219 | return $file_paths; |
| 1220 | 1220 | } |
@@ -1233,7 +1233,7 @@ discard block |
||
| 1233 | 1233 | $has_date = false; |
| 1234 | 1234 | |
| 1235 | 1235 | foreach ( $search_fields as $k => $field ) { |
| 1236 | - if ( in_array( $field['input'], array( 'date', 'date_range', 'entry_date' ) ) ) { |
|
| 1236 | + if ( in_array( $field[ 'input' ], array( 'date', 'date_range', 'entry_date' ) ) ) { |
|
| 1237 | 1237 | $has_date = true; |
| 1238 | 1238 | break; |
| 1239 | 1239 | } |
@@ -1260,7 +1260,7 @@ discard block |
||
| 1260 | 1260 | } |
| 1261 | 1261 | |
| 1262 | 1262 | // get configured search fields |
| 1263 | - $search_fields = ! empty( $widget_args['search_fields'] ) ? json_decode( $widget_args['search_fields'], true ) : ''; |
|
| 1263 | + $search_fields = ! empty( $widget_args[ 'search_fields' ] ) ? json_decode( $widget_args[ 'search_fields' ], true ) : ''; |
|
| 1264 | 1264 | |
| 1265 | 1265 | if ( empty( $search_fields ) || ! is_array( $search_fields ) ) { |
| 1266 | 1266 | gravityview()->log->debug( 'No search fields configured for widget:', array( 'data' => $widget_args ) ); |
@@ -1275,40 +1275,40 @@ discard block |
||
| 1275 | 1275 | |
| 1276 | 1276 | $updated_field = $this->get_search_filter_details( $updated_field ); |
| 1277 | 1277 | |
| 1278 | - switch ( $field['field'] ) { |
|
| 1278 | + switch ( $field[ 'field' ] ) { |
|
| 1279 | 1279 | |
| 1280 | 1280 | case 'search_all': |
| 1281 | - $updated_field['key'] = 'search_all'; |
|
| 1282 | - $updated_field['input'] = 'search_all'; |
|
| 1283 | - $updated_field['value'] = $this->rgget_or_rgpost( 'gv_search' ); |
|
| 1281 | + $updated_field[ 'key' ] = 'search_all'; |
|
| 1282 | + $updated_field[ 'input' ] = 'search_all'; |
|
| 1283 | + $updated_field[ 'value' ] = $this->rgget_or_rgpost( 'gv_search' ); |
|
| 1284 | 1284 | break; |
| 1285 | 1285 | |
| 1286 | 1286 | case 'entry_date': |
| 1287 | - $updated_field['key'] = 'entry_date'; |
|
| 1288 | - $updated_field['input'] = 'entry_date'; |
|
| 1289 | - $updated_field['value'] = array( |
|
| 1287 | + $updated_field[ 'key' ] = 'entry_date'; |
|
| 1288 | + $updated_field[ 'input' ] = 'entry_date'; |
|
| 1289 | + $updated_field[ 'value' ] = array( |
|
| 1290 | 1290 | 'start' => $this->rgget_or_rgpost( 'gv_start' ), |
| 1291 | 1291 | 'end' => $this->rgget_or_rgpost( 'gv_end' ), |
| 1292 | 1292 | ); |
| 1293 | 1293 | break; |
| 1294 | 1294 | |
| 1295 | 1295 | case 'entry_id': |
| 1296 | - $updated_field['key'] = 'entry_id'; |
|
| 1297 | - $updated_field['input'] = 'entry_id'; |
|
| 1298 | - $updated_field['value'] = $this->rgget_or_rgpost( 'gv_id' ); |
|
| 1296 | + $updated_field[ 'key' ] = 'entry_id'; |
|
| 1297 | + $updated_field[ 'input' ] = 'entry_id'; |
|
| 1298 | + $updated_field[ 'value' ] = $this->rgget_or_rgpost( 'gv_id' ); |
|
| 1299 | 1299 | break; |
| 1300 | 1300 | |
| 1301 | 1301 | case 'created_by': |
| 1302 | - $updated_field['key'] = 'created_by'; |
|
| 1303 | - $updated_field['name'] = 'gv_by'; |
|
| 1304 | - $updated_field['value'] = $this->rgget_or_rgpost( 'gv_by' ); |
|
| 1305 | - $updated_field['choices'] = self::get_created_by_choices(); |
|
| 1302 | + $updated_field[ 'key' ] = 'created_by'; |
|
| 1303 | + $updated_field[ 'name' ] = 'gv_by'; |
|
| 1304 | + $updated_field[ 'value' ] = $this->rgget_or_rgpost( 'gv_by' ); |
|
| 1305 | + $updated_field[ 'choices' ] = self::get_created_by_choices(); |
|
| 1306 | 1306 | break; |
| 1307 | 1307 | |
| 1308 | 1308 | case 'is_approved': |
| 1309 | - $updated_field['key'] = 'is_approved'; |
|
| 1310 | - $updated_field['value'] = $this->rgget_or_rgpost( 'filter_is_approved' ); |
|
| 1311 | - $updated_field['choices'] = self::get_is_approved_choices(); |
|
| 1309 | + $updated_field[ 'key' ] = 'is_approved'; |
|
| 1310 | + $updated_field[ 'value' ] = $this->rgget_or_rgpost( 'filter_is_approved' ); |
|
| 1311 | + $updated_field[ 'choices' ] = self::get_is_approved_choices(); |
|
| 1312 | 1312 | break; |
| 1313 | 1313 | } |
| 1314 | 1314 | |
@@ -1327,16 +1327,16 @@ discard block |
||
| 1327 | 1327 | */ |
| 1328 | 1328 | $gravityview_view->search_fields = apply_filters( 'gravityview_widget_search_filters', $search_fields, $this, $widget_args, $context ); |
| 1329 | 1329 | |
| 1330 | - $gravityview_view->search_layout = ! empty( $widget_args['search_layout'] ) ? $widget_args['search_layout'] : 'horizontal'; |
|
| 1330 | + $gravityview_view->search_layout = ! empty( $widget_args[ 'search_layout' ] ) ? $widget_args[ 'search_layout' ] : 'horizontal'; |
|
| 1331 | 1331 | |
| 1332 | 1332 | /** @since 1.14 */ |
| 1333 | - $gravityview_view->search_mode = ! empty( $widget_args['search_mode'] ) ? $widget_args['search_mode'] : 'any'; |
|
| 1333 | + $gravityview_view->search_mode = ! empty( $widget_args[ 'search_mode' ] ) ? $widget_args[ 'search_mode' ] : 'any'; |
|
| 1334 | 1334 | |
| 1335 | - $custom_class = ! empty( $widget_args['custom_class'] ) ? $widget_args['custom_class'] : ''; |
|
| 1335 | + $custom_class = ! empty( $widget_args[ 'custom_class' ] ) ? $widget_args[ 'custom_class' ] : ''; |
|
| 1336 | 1336 | |
| 1337 | 1337 | $gravityview_view->search_class = self::get_search_class( $custom_class ); |
| 1338 | 1338 | |
| 1339 | - $gravityview_view->search_clear = ! empty( $widget_args['search_clear'] ) ? $widget_args['search_clear'] : false; |
|
| 1339 | + $gravityview_view->search_clear = ! empty( $widget_args[ 'search_clear' ] ) ? $widget_args[ 'search_clear' ] : false; |
|
| 1340 | 1340 | |
| 1341 | 1341 | if ( $this->has_date_field( $search_fields ) ) { |
| 1342 | 1342 | // enqueue datepicker stuff only if needed! |
@@ -1358,10 +1358,10 @@ discard block |
||
| 1358 | 1358 | public static function get_search_class( $custom_class = '' ) { |
| 1359 | 1359 | $gravityview_view = GravityView_View::getInstance(); |
| 1360 | 1360 | |
| 1361 | - $search_class = 'gv-search-'.$gravityview_view->search_layout; |
|
| 1361 | + $search_class = 'gv-search-' . $gravityview_view->search_layout; |
|
| 1362 | 1362 | |
| 1363 | - if ( ! empty( $custom_class ) ) { |
|
| 1364 | - $search_class .= ' '.$custom_class; |
|
| 1363 | + if ( ! empty( $custom_class ) ) { |
|
| 1364 | + $search_class .= ' ' . $custom_class; |
|
| 1365 | 1365 | } |
| 1366 | 1366 | |
| 1367 | 1367 | /** |
@@ -1405,9 +1405,9 @@ discard block |
||
| 1405 | 1405 | |
| 1406 | 1406 | if ( ! $label ) { |
| 1407 | 1407 | |
| 1408 | - $label = isset( $form_field['label'] ) ? $form_field['label'] : ''; |
|
| 1408 | + $label = isset( $form_field[ 'label' ] ) ? $form_field[ 'label' ] : ''; |
|
| 1409 | 1409 | |
| 1410 | - switch( $field['field'] ) { |
|
| 1410 | + switch ( $field[ 'field' ] ) { |
|
| 1411 | 1411 | case 'search_all': |
| 1412 | 1412 | $label = __( 'Search Entries:', 'gravityview' ); |
| 1413 | 1413 | break; |
@@ -1419,10 +1419,10 @@ discard block |
||
| 1419 | 1419 | break; |
| 1420 | 1420 | default: |
| 1421 | 1421 | // If this is a field input, not a field |
| 1422 | - if ( strpos( $field['field'], '.' ) > 0 && ! empty( $form_field['inputs'] ) ) { |
|
| 1422 | + if ( strpos( $field[ 'field' ], '.' ) > 0 && ! empty( $form_field[ 'inputs' ] ) ) { |
|
| 1423 | 1423 | |
| 1424 | 1424 | // Get the label for the field in question, which returns an array |
| 1425 | - $items = wp_list_filter( $form_field['inputs'], array( 'id' => $field['field'] ) ); |
|
| 1425 | + $items = wp_list_filter( $form_field[ 'inputs' ], array( 'id' => $field[ 'field' ] ) ); |
|
| 1426 | 1426 | |
| 1427 | 1427 | // Get the item with the `label` key |
| 1428 | 1428 | $values = wp_list_pluck( $items, 'label' ); |
@@ -1461,32 +1461,32 @@ discard block |
||
| 1461 | 1461 | $form = $gravityview_view->getForm(); |
| 1462 | 1462 | |
| 1463 | 1463 | // for advanced field ids (eg, first name / last name ) |
| 1464 | - $name = 'filter_' . str_replace( '.', '_', $field['field'] ); |
|
| 1464 | + $name = 'filter_' . str_replace( '.', '_', $field[ 'field' ] ); |
|
| 1465 | 1465 | |
| 1466 | 1466 | // get searched value from $_GET/$_POST (string or array) |
| 1467 | 1467 | $value = $this->rgget_or_rgpost( $name ); |
| 1468 | 1468 | |
| 1469 | 1469 | // get form field details |
| 1470 | - $form_field = gravityview_get_field( $form, $field['field'] ); |
|
| 1470 | + $form_field = gravityview_get_field( $form, $field[ 'field' ] ); |
|
| 1471 | 1471 | |
| 1472 | 1472 | $filter = array( |
| 1473 | - 'key' => $field['field'], |
|
| 1473 | + 'key' => $field[ 'field' ], |
|
| 1474 | 1474 | 'name' => $name, |
| 1475 | 1475 | 'label' => self::get_field_label( $field, $form_field ), |
| 1476 | - 'input' => $field['input'], |
|
| 1476 | + 'input' => $field[ 'input' ], |
|
| 1477 | 1477 | 'value' => $value, |
| 1478 | - 'type' => $form_field['type'], |
|
| 1478 | + 'type' => $form_field[ 'type' ], |
|
| 1479 | 1479 | ); |
| 1480 | 1480 | |
| 1481 | 1481 | // collect choices |
| 1482 | - if ( 'post_category' === $form_field['type'] && ! empty( $form_field['displayAllCategories'] ) && empty( $form_field['choices'] ) ) { |
|
| 1483 | - $filter['choices'] = gravityview_get_terms_choices(); |
|
| 1484 | - } elseif ( ! empty( $form_field['choices'] ) ) { |
|
| 1485 | - $filter['choices'] = $form_field['choices']; |
|
| 1482 | + if ( 'post_category' === $form_field[ 'type' ] && ! empty( $form_field[ 'displayAllCategories' ] ) && empty( $form_field[ 'choices' ] ) ) { |
|
| 1483 | + $filter[ 'choices' ] = gravityview_get_terms_choices(); |
|
| 1484 | + } elseif ( ! empty( $form_field[ 'choices' ] ) ) { |
|
| 1485 | + $filter[ 'choices' ] = $form_field[ 'choices' ]; |
|
| 1486 | 1486 | } |
| 1487 | 1487 | |
| 1488 | - if ( 'date_range' === $field['input'] && empty( $value ) ) { |
|
| 1489 | - $filter['value'] = array( 'start' => '', 'end' => '' ); |
|
| 1488 | + if ( 'date_range' === $field[ 'input' ] && empty( $value ) ) { |
|
| 1489 | + $filter[ 'value' ] = array( 'start' => '', 'end' => '' ); |
|
| 1490 | 1490 | } |
| 1491 | 1491 | |
| 1492 | 1492 | return $filter; |
@@ -1510,7 +1510,7 @@ discard block |
||
| 1510 | 1510 | |
| 1511 | 1511 | $choices = array(); |
| 1512 | 1512 | foreach ( $users as $user ) { |
| 1513 | - $choices[] = array( |
|
| 1513 | + $choices[ ] = array( |
|
| 1514 | 1514 | 'value' => $user->ID, |
| 1515 | 1515 | 'text' => $user->display_name, |
| 1516 | 1516 | ); |
@@ -1530,9 +1530,9 @@ discard block |
||
| 1530 | 1530 | |
| 1531 | 1531 | $choices = array(); |
| 1532 | 1532 | foreach ( GravityView_Entry_Approval_Status::get_all() as $status ) { |
| 1533 | - $choices[] = array( |
|
| 1534 | - 'value' => $status['value'], |
|
| 1535 | - 'text' => $status['label'], |
|
| 1533 | + $choices[ ] = array( |
|
| 1534 | + 'value' => $status[ 'value' ], |
|
| 1535 | + 'text' => $status[ 'label' ], |
|
| 1536 | 1536 | ); |
| 1537 | 1537 | } |
| 1538 | 1538 | |
@@ -1584,7 +1584,7 @@ discard block |
||
| 1584 | 1584 | */ |
| 1585 | 1585 | public function add_datepicker_js_dependency( $js_dependencies ) { |
| 1586 | 1586 | |
| 1587 | - $js_dependencies[] = 'jquery-ui-datepicker'; |
|
| 1587 | + $js_dependencies[ ] = 'jquery-ui-datepicker'; |
|
| 1588 | 1588 | |
| 1589 | 1589 | return $js_dependencies; |
| 1590 | 1590 | } |
@@ -1628,7 +1628,7 @@ discard block |
||
| 1628 | 1628 | 'isRTL' => is_rtl(), |
| 1629 | 1629 | ), $view_data ); |
| 1630 | 1630 | |
| 1631 | - $localizations['datepicker'] = $datepicker_settings; |
|
| 1631 | + $localizations[ 'datepicker' ] = $datepicker_settings; |
|
| 1632 | 1632 | |
| 1633 | 1633 | return $localizations; |
| 1634 | 1634 | |
@@ -1655,7 +1655,7 @@ discard block |
||
| 1655 | 1655 | * @return void |
| 1656 | 1656 | */ |
| 1657 | 1657 | private function maybe_enqueue_flexibility() { |
| 1658 | - if ( isset( $_SERVER['HTTP_USER_AGENT'] ) && preg_match( '/MSIE [8-9]/', $_SERVER['HTTP_USER_AGENT'] ) ) { |
|
| 1658 | + if ( isset( $_SERVER[ 'HTTP_USER_AGENT' ] ) && preg_match( '/MSIE [8-9]/', $_SERVER[ 'HTTP_USER_AGENT' ] ) ) { |
|
| 1659 | 1659 | wp_enqueue_script( 'gv-flexibility' ); |
| 1660 | 1660 | } |
| 1661 | 1661 | } |
@@ -1677,7 +1677,7 @@ discard block |
||
| 1677 | 1677 | add_filter( 'gravityview_js_localization', array( $this, 'add_datepicker_localization' ), 10, 2 ); |
| 1678 | 1678 | |
| 1679 | 1679 | $scheme = is_ssl() ? 'https://' : 'http://'; |
| 1680 | - wp_enqueue_style( 'jquery-ui-datepicker', $scheme.'ajax.googleapis.com/ajax/libs/jqueryui/1.8.18/themes/smoothness/jquery-ui.css' ); |
|
| 1680 | + wp_enqueue_style( 'jquery-ui-datepicker', $scheme . 'ajax.googleapis.com/ajax/libs/jqueryui/1.8.18/themes/smoothness/jquery-ui.css' ); |
|
| 1681 | 1681 | |
| 1682 | 1682 | /** |
| 1683 | 1683 | * @filter `gravityview_search_datepicker_class` |
@@ -1756,7 +1756,7 @@ discard block |
||
| 1756 | 1756 | public function add_preview_inputs() { |
| 1757 | 1757 | global $wp; |
| 1758 | 1758 | |
| 1759 | - if ( ! is_preview() || ! current_user_can( 'publish_gravityviews') ) { |
|
| 1759 | + if ( ! is_preview() || ! current_user_can( 'publish_gravityviews' ) ) { |
|
| 1760 | 1760 | return; |
| 1761 | 1761 | } |
| 1762 | 1762 | |
@@ -1781,7 +1781,7 @@ discard block |
||
| 1781 | 1781 | */ |
| 1782 | 1782 | class GravityView_Widget_Search_Author_GF_Query_Condition extends \GF_Query_Condition { |
| 1783 | 1783 | public function __construct( $filter, $view ) { |
| 1784 | - $this->value = $filter['value']; |
|
| 1784 | + $this->value = $filter[ 'value' ]; |
|
| 1785 | 1785 | $this->view = $view; |
| 1786 | 1786 | } |
| 1787 | 1787 | |
@@ -1813,11 +1813,11 @@ discard block |
||
| 1813 | 1813 | $conditions = array(); |
| 1814 | 1814 | |
| 1815 | 1815 | foreach ( $user_fields as $user_field ) { |
| 1816 | - $conditions[] = $wpdb->prepare( "`u`.`$user_field` LIKE %s", '%' . $wpdb->esc_like( $this->value ) . '%' ); |
|
| 1816 | + $conditions[ ] = $wpdb->prepare( "`u`.`$user_field` LIKE %s", '%' . $wpdb->esc_like( $this->value ) . '%' ); |
|
| 1817 | 1817 | } |
| 1818 | 1818 | |
| 1819 | 1819 | foreach ( $user_meta_fields as $meta_field ) { |
| 1820 | - $conditions[] = $wpdb->prepare( "(`um`.`meta_key` = %s AND `um`.`meta_value` LIKE %s)", $meta_field, '%' . $wpdb->esc_like( $this->value ) . '%' ); |
|
| 1820 | + $conditions[ ] = $wpdb->prepare( "(`um`.`meta_key` = %s AND `um`.`meta_value` LIKE %s)", $meta_field, '%' . $wpdb->esc_like( $this->value ) . '%' ); |
|
| 1821 | 1821 | } |
| 1822 | 1822 | |
| 1823 | 1823 | $conditions = '(' . implode( ' OR ', $conditions ) . ')'; |
@@ -1846,9 +1846,9 @@ discard block |
||
| 1846 | 1846 | |
| 1847 | 1847 | $conditions = array(); |
| 1848 | 1848 | |
| 1849 | - foreach ( $parameters['aliases'] as $key => $alias ) { |
|
| 1850 | - if ( 'm' == $alias[0] && preg_match( '#\d+_\d+#', $key ) ) { |
|
| 1851 | - $conditions[] = sprintf( "EXISTS(SELECT * FROM `$table` WHERE `meta_value` %s %s AND `entry_id` = `%s`.`entry_id`)", |
|
| 1849 | + foreach ( $parameters[ 'aliases' ] as $key => $alias ) { |
|
| 1850 | + if ( 'm' == $alias[ 0 ] && preg_match( '#\d+_\d+#', $key ) ) { |
|
| 1851 | + $conditions[ ] = sprintf( "EXISTS(SELECT * FROM `$table` WHERE `meta_value` %s %s AND `entry_id` = `%s`.`entry_id`)", |
|
| 1852 | 1852 | $this->search_condition->operator, $this->search_condition->right->sql( $query ), $alias ); |
| 1853 | 1853 | } |
| 1854 | 1854 | } |
@@ -87,7 +87,7 @@ discard block |
||
| 87 | 87 | */ |
| 88 | 88 | public static function get_instance() { |
| 89 | 89 | |
| 90 | - if( empty( self::$instance ) ) { |
|
| 90 | + if ( empty( self::$instance ) ) { |
|
| 91 | 91 | self::$instance = new self; |
| 92 | 92 | } |
| 93 | 93 | |
@@ -121,9 +121,9 @@ discard block |
||
| 121 | 121 | |
| 122 | 122 | $operators = array_merge( self::$SUPPORTED_ARRAY_OPERATORS, self::$SUPPORTED_NUMERIC_OPERATORS, self::$SUPPORTED_SCALAR_OPERATORS, self::$SUPPORTED_CUSTOM_OPERATORS ); |
| 123 | 123 | |
| 124 | - if( $with_values ) { |
|
| 124 | + if ( $with_values ) { |
|
| 125 | 125 | $operators_with_values = array(); |
| 126 | - foreach( $operators as $key ) { |
|
| 126 | + foreach ( $operators as $key ) { |
|
| 127 | 127 | $operators_with_values[ $key ] = ''; |
| 128 | 128 | } |
| 129 | 129 | return $operators_with_values; |
@@ -142,7 +142,7 @@ discard block |
||
| 142 | 142 | |
| 143 | 143 | $operators = $this->get_operators( false ); |
| 144 | 144 | |
| 145 | - if( !in_array( $operation, $operators ) ) { |
|
| 145 | + if ( ! in_array( $operation, $operators ) ) { |
|
| 146 | 146 | gravityview()->log->debug( ' Attempted to add invalid operation type. {operation}', array( 'operation' => $operation ) ); |
| 147 | 147 | return false; |
| 148 | 148 | } |
@@ -194,7 +194,7 @@ discard block |
||
| 194 | 194 | return null; |
| 195 | 195 | } |
| 196 | 196 | |
| 197 | - if( empty( $atts ) ) { |
|
| 197 | + if ( empty( $atts ) ) { |
|
| 198 | 198 | gravityview()->log->error( '$atts are empty.', array( 'data' => $atts ) ); |
| 199 | 199 | return null; |
| 200 | 200 | } |
@@ -209,7 +209,7 @@ discard block |
||
| 209 | 209 | $this->parse_atts(); |
| 210 | 210 | |
| 211 | 211 | // We need an "if" |
| 212 | - if( false === $this->if ) { |
|
| 212 | + if ( false === $this->if ) { |
|
| 213 | 213 | gravityview()->log->error( '$atts->if is empty.', array( 'data' => $this->passed_atts ) ); |
| 214 | 214 | return null; |
| 215 | 215 | } |
@@ -217,7 +217,7 @@ discard block |
||
| 217 | 217 | $setup = $this->setup_operation_and_comparison(); |
| 218 | 218 | |
| 219 | 219 | // We need an operation and comparison value |
| 220 | - if( ! $setup ) { |
|
| 220 | + if ( ! $setup ) { |
|
| 221 | 221 | gravityview()->log->error( 'No valid operators were passed.', array( 'data' => $this->atts ) ); |
| 222 | 222 | return null; |
| 223 | 223 | } |
@@ -267,7 +267,7 @@ discard block |
||
| 267 | 267 | */ |
| 268 | 268 | private function get_output() { |
| 269 | 269 | |
| 270 | - if( $this->is_match ) { |
|
| 270 | + if ( $this->is_match ) { |
|
| 271 | 271 | $output = $this->content; |
| 272 | 272 | } else { |
| 273 | 273 | $output = $this->else_content; |
@@ -285,7 +285,7 @@ discard block |
||
| 285 | 285 | * @param string $output HTML/text output |
| 286 | 286 | * @param GVLogic_Shortcode $this This class |
| 287 | 287 | */ |
| 288 | - $output = apply_filters('gravityview/gvlogic/output', $output, $this ); |
|
| 288 | + $output = apply_filters( 'gravityview/gvlogic/output', $output, $this ); |
|
| 289 | 289 | |
| 290 | 290 | gravityview()->log->debug( 'Output: ', array( 'data' => $output ) ); |
| 291 | 291 | |
@@ -305,14 +305,14 @@ discard block |
||
| 305 | 305 | list( $before_else, $after_else ) = array_pad( explode( '[else]', $passed_content ), 2, NULL ); |
| 306 | 306 | list( $before_else_if, $after_else_if ) = array_pad( explode( '[else', $passed_content ), 2, NULL ); |
| 307 | 307 | |
| 308 | - $else_attr = isset( $this->atts['else'] ) ? $this->atts['else'] : NULL; |
|
| 308 | + $else_attr = isset( $this->atts[ 'else' ] ) ? $this->atts[ 'else' ] : NULL; |
|
| 309 | 309 | $else_content = isset( $after_else ) ? $after_else : $else_attr; |
| 310 | 310 | |
| 311 | 311 | // The content is everything OTHER than the [else] |
| 312 | 312 | $this->content = $before_else_if; |
| 313 | 313 | |
| 314 | 314 | if ( ! $this->is_match ) { |
| 315 | - if( $elseif_content = $this->process_elseif( $before_else ) ) { |
|
| 315 | + if ( $elseif_content = $this->process_elseif( $before_else ) ) { |
|
| 316 | 316 | $this->else_content = $elseif_content; |
| 317 | 317 | } else { |
| 318 | 318 | $this->else_content = $else_content; |
@@ -340,16 +340,16 @@ discard block |
||
| 340 | 340 | foreach ( $else_if_matches as $key => $else_if_match ) { |
| 341 | 341 | |
| 342 | 342 | // If $else_if_match[5] exists and has content, check for more shortcodes |
| 343 | - preg_match_all( '/' . $regex . '/', $else_if_match[5] . '[/else]', $recursive_matches, PREG_SET_ORDER ); |
|
| 343 | + preg_match_all( '/' . $regex . '/', $else_if_match[ 5 ] . '[/else]', $recursive_matches, PREG_SET_ORDER ); |
|
| 344 | 344 | |
| 345 | 345 | // If the logic passes, this is the value that should be used for $this->else_content |
| 346 | - $else_if_value = $else_if_match[5]; |
|
| 347 | - $check_elseif_match = $else_if_match[0]; |
|
| 346 | + $else_if_value = $else_if_match[ 5 ]; |
|
| 347 | + $check_elseif_match = $else_if_match[ 0 ]; |
|
| 348 | 348 | |
| 349 | 349 | // Retrieve the value of the match that is currently being checked, without any other [else] tags |
| 350 | - if( ! empty( $recursive_matches[0][0] ) ) { |
|
| 351 | - $else_if_value = str_replace( $recursive_matches[0][0], '', $else_if_value ); |
|
| 352 | - $check_elseif_match = str_replace( $recursive_matches[0][0], '', $check_elseif_match ); |
|
| 350 | + if ( ! empty( $recursive_matches[ 0 ][ 0 ] ) ) { |
|
| 351 | + $else_if_value = str_replace( $recursive_matches[ 0 ][ 0 ], '', $else_if_value ); |
|
| 352 | + $check_elseif_match = str_replace( $recursive_matches[ 0 ][ 0 ], '', $check_elseif_match ); |
|
| 353 | 353 | } |
| 354 | 354 | |
| 355 | 355 | $check_elseif_match = str_replace( '[else', '[gvlogicelse', $check_elseif_match ); |
@@ -366,7 +366,7 @@ discard block |
||
| 366 | 366 | } |
| 367 | 367 | |
| 368 | 368 | // Process any remaining [else] tags |
| 369 | - return $this->process_elseif( $else_if_match[5] ); |
|
| 369 | + return $this->process_elseif( $else_if_match[ 5 ] ); |
|
| 370 | 370 | } |
| 371 | 371 | |
| 372 | 372 | return false; |
@@ -392,7 +392,7 @@ discard block |
||
| 392 | 392 | $this->atts = array_intersect_key( $this->passed_atts, $this->atts ); |
| 393 | 393 | |
| 394 | 394 | // Strip whitespace if it's not default false |
| 395 | - $this->if = ( isset( $this->atts['if'] ) && is_string( $this->atts['if'] ) ) ? trim( $this->atts['if'] ) : false; |
|
| 395 | + $this->if = ( isset( $this->atts[ 'if' ] ) && is_string( $this->atts[ 'if' ] ) ) ? trim( $this->atts[ 'if' ] ) : false; |
|
| 396 | 396 | |
| 397 | 397 | /** |
| 398 | 398 | * @action `gravityview/gvlogic/parse_atts/after` Modify shortcode attributes after it's been parsed |
@@ -403,7 +403,7 @@ discard block |
||
| 403 | 403 | do_action( 'gravityview/gvlogic/parse_atts/after', $this ); |
| 404 | 404 | |
| 405 | 405 | // Make sure the "if" isn't processed in self::setup_operation_and_comparison() |
| 406 | - unset( $this->atts['if'] ); |
|
| 406 | + unset( $this->atts[ 'if' ] ); |
|
| 407 | 407 | } |
| 408 | 408 | } |
| 409 | 409 | |
@@ -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 | |
@@ -26,11 +26,11 @@ discard block |
||
| 26 | 26 | |
| 27 | 27 | <?php |
| 28 | 28 | |
| 29 | - do_action('gravityview_render_widgets_active_areas', $curr_template, 'footer', $post->ID ); |
|
| 29 | + do_action('gravityview_render_widgets_active_areas', $curr_template, 'footer', $post->ID ); |
|
| 30 | 30 | |
| 31 | - do_action('gravityview_render_field_pickers', 'directory' ); |
|
| 31 | + do_action('gravityview_render_field_pickers', 'directory' ); |
|
| 32 | 32 | |
| 33 | - ?> |
|
| 33 | + ?> |
|
| 34 | 34 | |
| 35 | 35 | <?php // list of available widgets to be shown in the popup ?> |
| 36 | 36 | <div id="directory-available-widgets" class="hide-if-js gv-tooltip"> |
@@ -55,13 +55,13 @@ discard block |
||
| 55 | 55 | |
| 56 | 56 | <div id="single-active-fields" class="gv-grid gv-grid-pad gv-grid-border"> |
| 57 | 57 | <?php |
| 58 | - if(!empty( $curr_template ) ) { |
|
| 59 | - do_action('gravityview_render_directory_active_areas', $curr_template, 'single', $post->ID, true ); |
|
| 60 | - } |
|
| 61 | - ?> |
|
| 58 | + if(!empty( $curr_template ) ) { |
|
| 59 | + do_action('gravityview_render_directory_active_areas', $curr_template, 'single', $post->ID, true ); |
|
| 60 | + } |
|
| 61 | + ?> |
|
| 62 | 62 | </div> |
| 63 | 63 | <?php |
| 64 | - do_action('gravityview_render_field_pickers', 'single' ); |
|
| 64 | + do_action('gravityview_render_field_pickers', 'single' ); |
|
| 65 | 65 | ?> |
| 66 | 66 | </div> |
| 67 | 67 | |
@@ -80,7 +80,7 @@ discard block |
||
| 80 | 80 | </div> |
| 81 | 81 | |
| 82 | 82 | <?php |
| 83 | - do_action('gravityview_render_field_pickers', 'edit' ); |
|
| 83 | + do_action('gravityview_render_field_pickers', 'edit' ); |
|
| 84 | 84 | ?> |
| 85 | 85 | |
| 86 | 86 | </div> |
@@ -10,32 +10,32 @@ discard block |
||
| 10 | 10 | |
| 11 | 11 | <div id="directory-fields" class="gv-section"> |
| 12 | 12 | |
| 13 | - <h4><?php esc_html_e( 'Above Entries Widgets', 'gravityview'); ?> <span><?php esc_html_e( 'These widgets will be shown above entries.', 'gravityview'); ?></span></h4> |
|
| 13 | + <h4><?php esc_html_e( 'Above Entries Widgets', 'gravityview' ); ?> <span><?php esc_html_e( 'These widgets will be shown above entries.', 'gravityview' ); ?></span></h4> |
|
| 14 | 14 | |
| 15 | - <?php do_action('gravityview_render_widgets_active_areas', $curr_template, 'header', $post->ID ); ?> |
|
| 15 | + <?php do_action( 'gravityview_render_widgets_active_areas', $curr_template, 'header', $post->ID ); ?> |
|
| 16 | 16 | |
| 17 | - <h4><?php esc_html_e( 'Entries Fields', 'gravityview'); ?> <span><?php esc_html_e( 'These fields will be shown for each entry.', 'gravityview'); ?></span></h4> |
|
| 17 | + <h4><?php esc_html_e( 'Entries Fields', 'gravityview' ); ?> <span><?php esc_html_e( 'These fields will be shown for each entry.', 'gravityview' ); ?></span></h4> |
|
| 18 | 18 | |
| 19 | 19 | <div id="directory-active-fields" class="gv-grid gv-grid-pad gv-grid-border"> |
| 20 | - <?php if(!empty( $curr_template ) ) { |
|
| 21 | - do_action('gravityview_render_directory_active_areas', $curr_template, 'directory', $post->ID, true ); |
|
| 20 | + <?php if ( ! empty( $curr_template ) ) { |
|
| 21 | + do_action( 'gravityview_render_directory_active_areas', $curr_template, 'directory', $post->ID, true ); |
|
| 22 | 22 | } ?> |
| 23 | 23 | </div> |
| 24 | 24 | |
| 25 | - <h4><?php esc_html_e( 'Below Entries Widgets', 'gravityview'); ?> <span><?php esc_html_e( 'These widgets will be shown below entries.', 'gravityview'); ?></span></h4> |
|
| 25 | + <h4><?php esc_html_e( 'Below Entries Widgets', 'gravityview' ); ?> <span><?php esc_html_e( 'These widgets will be shown below entries.', 'gravityview' ); ?></span></h4> |
|
| 26 | 26 | |
| 27 | 27 | <?php |
| 28 | 28 | |
| 29 | - do_action('gravityview_render_widgets_active_areas', $curr_template, 'footer', $post->ID ); |
|
| 29 | + do_action( 'gravityview_render_widgets_active_areas', $curr_template, 'footer', $post->ID ); |
|
| 30 | 30 | |
| 31 | - do_action('gravityview_render_field_pickers', 'directory' ); |
|
| 31 | + do_action( 'gravityview_render_field_pickers', 'directory' ); |
|
| 32 | 32 | |
| 33 | 33 | ?> |
| 34 | 34 | |
| 35 | 35 | <?php // list of available widgets to be shown in the popup ?> |
| 36 | 36 | <div id="directory-available-widgets" class="hide-if-js gv-tooltip"> |
| 37 | 37 | <span class="close"><i class="dashicons dashicons-dismiss"></i></span> |
| 38 | - <?php do_action('gravityview_render_available_widgets' ); ?> |
|
| 38 | + <?php do_action( 'gravityview_render_available_widgets' ); ?> |
|
| 39 | 39 | </div> |
| 40 | 40 | |
| 41 | 41 | </div> |
@@ -51,17 +51,17 @@ discard block |
||
| 51 | 51 | |
| 52 | 52 | <div id="single-fields" class="gv-section"> |
| 53 | 53 | |
| 54 | - <h4><?php esc_html_e( 'These fields will be shown in Single Entry view.', 'gravityview'); ?></h4> |
|
| 54 | + <h4><?php esc_html_e( 'These fields will be shown in Single Entry view.', 'gravityview' ); ?></h4> |
|
| 55 | 55 | |
| 56 | 56 | <div id="single-active-fields" class="gv-grid gv-grid-pad gv-grid-border"> |
| 57 | 57 | <?php |
| 58 | - if(!empty( $curr_template ) ) { |
|
| 59 | - do_action('gravityview_render_directory_active_areas', $curr_template, 'single', $post->ID, true ); |
|
| 58 | + if ( ! empty( $curr_template ) ) { |
|
| 59 | + do_action( 'gravityview_render_directory_active_areas', $curr_template, 'single', $post->ID, true ); |
|
| 60 | 60 | } |
| 61 | 61 | ?> |
| 62 | 62 | </div> |
| 63 | 63 | <?php |
| 64 | - do_action('gravityview_render_field_pickers', 'single' ); |
|
| 64 | + do_action( 'gravityview_render_field_pickers', 'single' ); |
|
| 65 | 65 | ?> |
| 66 | 66 | </div> |
| 67 | 67 | |
@@ -71,16 +71,16 @@ discard block |
||
| 71 | 71 | |
| 72 | 72 | <div id="edit-fields" class="gv-section"> |
| 73 | 73 | |
| 74 | - <h4><?php esc_html_e( 'Fields shown when editing an entry.', 'gravityview'); ?> <span><?php esc_html_e('If not configured, all form fields will be displayed.', 'gravityview'); ?></span></h4> |
|
| 74 | + <h4><?php esc_html_e( 'Fields shown when editing an entry.', 'gravityview' ); ?> <span><?php esc_html_e( 'If not configured, all form fields will be displayed.', 'gravityview' ); ?></span></h4> |
|
| 75 | 75 | |
| 76 | 76 | <div id="edit-active-fields" class="gv-grid gv-grid-pad gv-grid-border"> |
| 77 | 77 | <?php |
| 78 | - do_action('gravityview_render_directory_active_areas', apply_filters( 'gravityview/template/edit', 'default_table_edit' ), 'edit', $post->ID, true ); |
|
| 78 | + do_action( 'gravityview_render_directory_active_areas', apply_filters( 'gravityview/template/edit', 'default_table_edit' ), 'edit', $post->ID, true ); |
|
| 79 | 79 | ?> |
| 80 | 80 | </div> |
| 81 | 81 | |
| 82 | 82 | <?php |
| 83 | - do_action('gravityview_render_field_pickers', 'edit' ); |
|
| 83 | + do_action( 'gravityview_render_field_pickers', 'edit' ); |
|
| 84 | 84 | ?> |
| 85 | 85 | |
| 86 | 86 | </div> |
@@ -105,14 +105,14 @@ discard block |
||
| 105 | 105 | * @return \GV\GF_Entry|null An instance of this entry or null if not found. |
| 106 | 106 | */ |
| 107 | 107 | public static function from_entry( $entry ) { |
| 108 | - if ( empty( $entry['id'] ) ) { |
|
| 108 | + if ( empty( $entry[ 'id' ] ) ) { |
|
| 109 | 109 | return null; |
| 110 | 110 | } |
| 111 | 111 | |
| 112 | 112 | $self = new self(); |
| 113 | 113 | $self->entry = $entry; |
| 114 | 114 | |
| 115 | - $self->ID = $self->entry['id']; |
|
| 115 | + $self->ID = $self->entry[ 'id' ]; |
|
| 116 | 116 | $self->slug = \GravityView_API::get_entry_slug( $self->ID, $self->as_entry() ); |
| 117 | 117 | |
| 118 | 118 | return $self; |
@@ -127,7 +127,7 @@ discard block |
||
| 127 | 127 | * @return bool Whether the offset exists or not. |
| 128 | 128 | */ |
| 129 | 129 | public function offsetExists( $offset ) { |
| 130 | - return isset( $this->entry[$offset] ); |
|
| 130 | + return isset( $this->entry[ $offset ] ); |
|
| 131 | 131 | } |
| 132 | 132 | |
| 133 | 133 | /** |
@@ -142,7 +142,7 @@ discard block |
||
| 142 | 142 | * @return mixed The value of the requested entry data. |
| 143 | 143 | */ |
| 144 | 144 | public function offsetGet( $offset ) { |
| 145 | - return $this->entry[$offset]; |
|
| 145 | + return $this->entry[ $offset ]; |
|
| 146 | 146 | } |
| 147 | 147 | |
| 148 | 148 | /** |
@@ -26,7 +26,7 @@ discard block |
||
| 26 | 26 | wp_embed_register_handler( 'gravityview_entry', self::get_entry_regex(), array( __CLASS__, 'render' ), 20000 ); |
| 27 | 27 | wp_oembed_add_provider( self::get_entry_regex(), self::$provider_url, true ); |
| 28 | 28 | |
| 29 | - if ( ! empty( $_GET['gv_oembed_provider'] ) && ! empty( $_GET['url'] ) ) { |
|
| 29 | + if ( ! empty( $_GET[ 'gv_oembed_provider' ] ) && ! empty( $_GET[ 'url' ] ) ) { |
|
| 30 | 30 | add_action( 'template_redirect', array( __CLASS__, 'render_provider_request' ) ); |
| 31 | 31 | } |
| 32 | 32 | |
@@ -43,8 +43,8 @@ discard block |
||
| 43 | 43 | * @return void |
| 44 | 44 | */ |
| 45 | 45 | public static function render_provider_request() { |
| 46 | - if ( ! empty( $_GET['url'] ) ) { |
|
| 47 | - $url = $_GET['url']; |
|
| 46 | + if ( ! empty( $_GET[ 'url' ] ) ) { |
|
| 47 | + $url = $_GET[ 'url' ]; |
|
| 48 | 48 | } else { |
| 49 | 49 | header( 'HTTP/1.0 404 Not Found' ); |
| 50 | 50 | exit; |
@@ -111,18 +111,18 @@ discard block |
||
| 111 | 111 | */ |
| 112 | 112 | private static function parse_matches( $matches, $url ) { |
| 113 | 113 | // If not using permalinks, re-assign values for matching groups |
| 114 | - if ( ! empty( $matches['entry_slug2'] ) ) { |
|
| 115 | - $matches['is_cpt'] = $matches['is_cpt2']; |
|
| 116 | - $matches['slug'] = $matches['slug2']; |
|
| 117 | - $matches['entry_slug'] = $matches['entry_slug2']; |
|
| 118 | - unset( $matches['is_cpt2'], $matches['slug2'], $matches['entry_slug2'] ); |
|
| 114 | + if ( ! empty( $matches[ 'entry_slug2' ] ) ) { |
|
| 115 | + $matches[ 'is_cpt' ] = $matches[ 'is_cpt2' ]; |
|
| 116 | + $matches[ 'slug' ] = $matches[ 'slug2' ]; |
|
| 117 | + $matches[ 'entry_slug' ] = $matches[ 'entry_slug2' ]; |
|
| 118 | + unset( $matches[ 'is_cpt2' ], $matches[ 'slug2' ], $matches[ 'entry_slug2' ] ); |
|
| 119 | 119 | } |
| 120 | 120 | |
| 121 | - if ( empty( $matches['entry_slug'] ) ) { |
|
| 121 | + if ( empty( $matches[ 'entry_slug' ] ) ) { |
|
| 122 | 122 | gravityview()->log->error( 'Entry slug not parsed by regex.', array( 'data' => $matches ) ); |
| 123 | 123 | return null; |
| 124 | 124 | } else { |
| 125 | - $entry_id = $matches['entry_slug']; |
|
| 125 | + $entry_id = $matches[ 'entry_slug' ]; |
|
| 126 | 126 | } |
| 127 | 127 | |
| 128 | 128 | if ( ! $entry = \GV\GF_Entry::by_id( $entry_id ) ) { |
@@ -142,12 +142,12 @@ discard block |
||
| 142 | 142 | if ( ! $view ) { |
| 143 | 143 | |
| 144 | 144 | // If the slug doesn't work, maybe using Plain permalinks and not the slug, only ID |
| 145 | - if( is_numeric( $matches['slug'] ) ) { |
|
| 146 | - $view = \GV\View::by_id( $matches['slug'] ); |
|
| 145 | + if ( is_numeric( $matches[ 'slug' ] ) ) { |
|
| 146 | + $view = \GV\View::by_id( $matches[ 'slug' ] ); |
|
| 147 | 147 | } |
| 148 | 148 | |
| 149 | - if( ! $view ) { |
|
| 150 | - $view = \GV\View::from_post( get_page_by_path( $matches['slug'], OBJECT, 'gravityview' ) ); |
|
| 149 | + if ( ! $view ) { |
|
| 150 | + $view = \GV\View::from_post( get_page_by_path( $matches[ 'slug' ], OBJECT, 'gravityview' ) ); |
|
| 151 | 151 | } |
| 152 | 152 | } |
| 153 | 153 | |
@@ -178,9 +178,9 @@ discard block |
||
| 178 | 178 | |
| 179 | 179 | return ' |
| 180 | 180 | <div class="loading-placeholder" style="background-color:#e6f0f5;"> |
| 181 | - <h3 style="margin:0; padding:0; font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen-Sans, Ubuntu, Cantarell, \'Helvetica Neue\', sans-serif;">'.$image.$embed_heading.'</h3> |
|
| 181 | + <h3 style="margin:0; padding:0; font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen-Sans, Ubuntu, Cantarell, \'Helvetica Neue\', sans-serif;">'.$image . $embed_heading . '</h3> |
|
| 182 | 182 | <p style="margin:0; padding:0; font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen-Sans, Ubuntu, Cantarell, \'Helvetica Neue\', sans-serif;"> |
| 183 | - '.$embed_text.' |
|
| 183 | + '.$embed_text . ' |
|
| 184 | 184 | </p> |
| 185 | 185 | <br style="clear: both;"> |
| 186 | 186 | </div>'; |
@@ -194,8 +194,8 @@ discard block |
||
| 194 | 194 | private static function render_preview_notice() { |
| 195 | 195 | $floaty = \GravityView_Admin::get_floaty(); |
| 196 | 196 | $title = esc_html__( 'This will look better when it is embedded.', 'gravityview' ); |
| 197 | - $message = esc_html__( 'Styles don\'t get loaded when being previewed, so the content below will look strange. Don\'t be concerned!', 'gravityview'); |
|
| 198 | - return '<div class="updated notice">'.$floaty.'<h3>'.$title.'</h3><p>'.$message.'</p><br style="clear:both;" /></div>'; |
|
| 197 | + $message = esc_html__( 'Styles don\'t get loaded when being previewed, so the content below will look strange. Don\'t be concerned!', 'gravityview' ); |
|
| 198 | + return '<div class="updated notice">' . $floaty . '<h3>' . $title . '</h3><p>' . $message . '</p><br style="clear:both;" /></div>'; |
|
| 199 | 199 | } |
| 200 | 200 | |
| 201 | 201 | /** |
@@ -214,13 +214,13 @@ discard block |
||
| 214 | 214 | return __( 'You are not allowed to view this content.', 'gravityview' ); |
| 215 | 215 | } |
| 216 | 216 | |
| 217 | - if ( $entry && 'active' !== $entry['status'] ) { |
|
| 217 | + if ( $entry && 'active' !== $entry[ 'status' ] ) { |
|
| 218 | 218 | gravityview()->log->notice( 'Entry ID #{entry_id} is not active', array( 'entry_id' => $entry->ID ) ); |
| 219 | 219 | return __( 'You are not allowed to view this content.', 'gravityview' ); |
| 220 | 220 | } |
| 221 | 221 | |
| 222 | 222 | if ( $view->settings->get( 'show_only_approved' ) ) { |
| 223 | - if ( ! \GravityView_Entry_Approval_Status::is_approved( gform_get_meta( $entry->ID, \GravityView_Entry_Approval::meta_key ) ) ) { |
|
| 223 | + if ( ! \GravityView_Entry_Approval_Status::is_approved( gform_get_meta( $entry->ID, \GravityView_Entry_Approval::meta_key ) ) ) { |
|
| 224 | 224 | gravityview()->log->error( 'Entry ID #{entry_id} is not approved for viewing', array( 'entry_id' => $entry->ID ) ); |
| 225 | 225 | return __( 'You are not allowed to view this content.', 'gravityview' ); |
| 226 | 226 | } |
@@ -285,7 +285,7 @@ discard block |
||
| 285 | 285 | // Catch either |
| 286 | 286 | $match_regex = "(?:{$using_permalinks}|{$not_using_permalinks})"; |
| 287 | 287 | |
| 288 | - return '#'.$match_regex.'#i'; |
|
| 288 | + return '#' . $match_regex . '#i'; |
|
| 289 | 289 | } |
| 290 | 290 | |
| 291 | 291 | /** |
@@ -266,7 +266,7 @@ |
||
| 266 | 266 | * |
| 267 | 267 | * @uses GravityView_frontend::get_search_criteria() Convert the $_POST search request into a properly formatted request. |
| 268 | 268 | * @access public |
| 269 | - * @return void|boolean |
|
| 269 | + * @return false|null |
|
| 270 | 270 | */ |
| 271 | 271 | public function process_bulk_action() { |
| 272 | 272 | |
@@ -346,14 +346,14 @@ discard block |
||
| 346 | 346 | /** |
| 347 | 347 | * update_approved function. |
| 348 | 348 | * |
| 349 | - * @since 1.18 Moved to GravityView_Entry_Approval::update_approved |
|
| 349 | + * @since 1.18 Moved to GravityView_Entry_Approval::update_approved |
|
| 350 | 350 | * @see GravityView_Entry_Approval::update_approved |
| 351 | - * |
|
| 351 | + * |
|
| 352 | 352 | * @param int $entry_id (default: 0) |
| 353 | 353 | * @param int $approved (default: 0) |
| 354 | 354 | * @param int $form_id (default: 0) |
| 355 | 355 | * @param int $approvedcolumn (default: 0) |
| 356 | - * |
|
| 356 | + * |
|
| 357 | 357 | * @return boolean True: It worked; False: it failed |
| 358 | 358 | */ |
| 359 | 359 | public static function update_approved( $entry_id = 0, $approved = 0, $form_id = 0, $approvedcolumn = 0) { |
@@ -363,9 +363,9 @@ discard block |
||
| 363 | 363 | /** |
| 364 | 364 | * Calculate the approve field.input id |
| 365 | 365 | * |
| 366 | - * @since 1.18 Moved to GravityView_Entry_Approval::get_approved_column |
|
| 367 | - * @see GravityView_Entry_Approval::get_approved_column |
|
| 368 | - * |
|
| 366 | + * @since 1.18 Moved to GravityView_Entry_Approval::get_approved_column |
|
| 367 | + * @see GravityView_Entry_Approval::get_approved_column |
|
| 368 | + * |
|
| 369 | 369 | * @param mixed $form GF Form or Form ID |
| 370 | 370 | * @return false|null|string Returns the input ID of the approved field. Returns NULL if no approved fields were found. Returns false if $form_id wasn't set. |
| 371 | 371 | */ |
@@ -486,7 +486,7 @@ discard block |
||
| 486 | 486 | 'bulk_actions' => $this->get_bulk_actions( $form_id ), |
| 487 | 487 | 'bulk_message' => $this->bulk_update_message, |
| 488 | 488 | 'unapprove_title' => GravityView_Entry_Approval_Status::get_title_attr('unapproved'), |
| 489 | - 'approve_title' => GravityView_Entry_Approval_Status::get_title_attr('disapproved'), |
|
| 489 | + 'approve_title' => GravityView_Entry_Approval_Status::get_title_attr('disapproved'), |
|
| 490 | 490 | 'disapprove_title' => GravityView_Entry_Approval_Status::get_title_attr('approved'), |
| 491 | 491 | 'column_title' => __( 'Show entry in directory view?', 'gravityview'), |
| 492 | 492 | 'column_link' => esc_url( $this->get_sort_link() ), |
@@ -495,26 +495,26 @@ discard block |
||
| 495 | 495 | } |
| 496 | 496 | |
| 497 | 497 | /** |
| 498 | - * Generate a link to sort by approval status |
|
| 499 | - * |
|
| 500 | - * Note: Sorting by approval will never be great because it's not possible currently to declare the sorting as |
|
| 501 | - * numeric, but it does group the approved entries together. |
|
| 502 | - * |
|
| 503 | - * @since 2.0.14 Remove need for approval field for sorting by approval status |
|
| 504 | - * |
|
| 498 | + * Generate a link to sort by approval status |
|
| 499 | + * |
|
| 500 | + * Note: Sorting by approval will never be great because it's not possible currently to declare the sorting as |
|
| 501 | + * numeric, but it does group the approved entries together. |
|
| 502 | + * |
|
| 503 | + * @since 2.0.14 Remove need for approval field for sorting by approval status |
|
| 504 | + * |
|
| 505 | 505 | * @param int $form_id [NO LONGER USED] |
| 506 | 506 | * |
| 507 | 507 | * @return string Sorting link |
| 508 | 508 | */ |
| 509 | 509 | private function get_sort_link( $form_id = 0 ) { |
| 510 | 510 | |
| 511 | - $args = array( |
|
| 512 | - 'orderby' => 'is_approved', |
|
| 513 | - 'order' => ( 'desc' === \GV\Utils::_GET( 'order' ) ) ? 'asc' : 'desc', |
|
| 514 | - ); |
|
| 511 | + $args = array( |
|
| 512 | + 'orderby' => 'is_approved', |
|
| 513 | + 'order' => ( 'desc' === \GV\Utils::_GET( 'order' ) ) ? 'asc' : 'desc', |
|
| 514 | + ); |
|
| 515 | 515 | |
| 516 | 516 | return add_query_arg( $args ); |
| 517 | - } |
|
| 517 | + } |
|
| 518 | 518 | |
| 519 | 519 | /** |
| 520 | 520 | * Get an array of options to be added to the Gravity Forms "Bulk action" dropdown in a "GravityView" option group |
@@ -556,9 +556,9 @@ discard block |
||
| 556 | 556 | // Sanitize the values, just to be sure. |
| 557 | 557 | foreach ( $bulk_actions as $key => $group ) { |
| 558 | 558 | |
| 559 | - if( empty( $group ) ) { |
|
| 560 | - continue; |
|
| 561 | - } |
|
| 559 | + if( empty( $group ) ) { |
|
| 560 | + continue; |
|
| 561 | + } |
|
| 562 | 562 | |
| 563 | 563 | foreach ( $group as $i => $action ) { |
| 564 | 564 | $bulk_actions[ $key ][ $i ]['label'] = esc_html( $bulk_actions[ $key ][ $i ]['label'] ); |
@@ -44,7 +44,7 @@ discard block |
||
| 44 | 44 | /** gf_entries page - entries table screen */ |
| 45 | 45 | |
| 46 | 46 | // capture bulk actions |
| 47 | - add_action( 'gform_loaded', array( $this, 'process_bulk_action') ); |
|
| 47 | + add_action( 'gform_loaded', array( $this, 'process_bulk_action' ) ); |
|
| 48 | 48 | |
| 49 | 49 | // add hidden field with approve status |
| 50 | 50 | add_action( 'gform_entries_first_column_actions', array( $this, 'add_entry_approved_hidden_input' ), 1, 5 ); |
@@ -52,7 +52,7 @@ discard block |
||
| 52 | 52 | add_filter( 'gravityview/metaboxes/tooltips', array( $this, 'tooltips' ) ); |
| 53 | 53 | |
| 54 | 54 | // adding styles and scripts |
| 55 | - add_action( 'admin_enqueue_scripts', array( $this, 'add_scripts_and_styles') ); |
|
| 55 | + add_action( 'admin_enqueue_scripts', array( $this, 'add_scripts_and_styles' ) ); |
|
| 56 | 56 | // bypass Gravity Forms no-conflict mode |
| 57 | 57 | add_filter( 'gform_noconflict_scripts', array( $this, 'register_gform_noconflict_script' ) ); |
| 58 | 58 | add_filter( 'gform_noconflict_styles', array( $this, 'register_gform_noconflict_style' ) ); |
@@ -81,7 +81,7 @@ discard block |
||
| 81 | 81 | * @param bool $show_filter_links True: show the "approved"/"disapproved" filter links. False: hide them. |
| 82 | 82 | * @param array $form GF Form object of current form |
| 83 | 83 | */ |
| 84 | - if( false === apply_filters( 'gravityview/approve_entries/show_filter_links_entry_list', true, $form ) ) { |
|
| 84 | + if ( false === apply_filters( 'gravityview/approve_entries/show_filter_links_entry_list', true, $form ) ) { |
|
| 85 | 85 | return $filter_links; |
| 86 | 86 | } |
| 87 | 87 | |
@@ -109,27 +109,27 @@ discard block |
||
| 109 | 109 | $approved_count = $disapproved_count = $unapproved_count = 0; |
| 110 | 110 | |
| 111 | 111 | // Only count if necessary |
| 112 | - if( $include_counts ) { |
|
| 113 | - $approved_count = count( gravityview_get_entry_ids( $form['id'], array( 'status' => 'active', 'field_filters' => $field_filters_approved ) ) ); |
|
| 114 | - $disapproved_count = count( gravityview_get_entry_ids( $form['id'], array( 'status' => 'active', 'field_filters' => $field_filters_disapproved ) ) ); |
|
| 115 | - $unapproved_count = count( gravityview_get_entry_ids( $form['id'], array( 'status' => 'active', 'field_filters' => $field_filters_unapproved ) ) ); |
|
| 112 | + if ( $include_counts ) { |
|
| 113 | + $approved_count = count( gravityview_get_entry_ids( $form[ 'id' ], array( 'status' => 'active', 'field_filters' => $field_filters_approved ) ) ); |
|
| 114 | + $disapproved_count = count( gravityview_get_entry_ids( $form[ 'id' ], array( 'status' => 'active', 'field_filters' => $field_filters_disapproved ) ) ); |
|
| 115 | + $unapproved_count = count( gravityview_get_entry_ids( $form[ 'id' ], array( 'status' => 'active', 'field_filters' => $field_filters_unapproved ) ) ); |
|
| 116 | 116 | } |
| 117 | 117 | |
| 118 | - $filter_links[] = array( |
|
| 118 | + $filter_links[ ] = array( |
|
| 119 | 119 | 'id' => 'gv_approved', |
| 120 | 120 | 'field_filters' => $field_filters_approved, |
| 121 | 121 | 'count' => $approved_count, |
| 122 | 122 | 'label' => GravityView_Entry_Approval_Status::get_label( GravityView_Entry_Approval_Status::APPROVED ), |
| 123 | 123 | ); |
| 124 | 124 | |
| 125 | - $filter_links[] = array( |
|
| 125 | + $filter_links[ ] = array( |
|
| 126 | 126 | 'id' => 'gv_disapproved', |
| 127 | 127 | 'field_filters' => $field_filters_disapproved, |
| 128 | 128 | 'count' => $disapproved_count, |
| 129 | 129 | 'label' => GravityView_Entry_Approval_Status::get_label( GravityView_Entry_Approval_Status::DISAPPROVED ), |
| 130 | 130 | ); |
| 131 | 131 | |
| 132 | - $filter_links[] = array( |
|
| 132 | + $filter_links[ ] = array( |
|
| 133 | 133 | 'id' => 'gv_unapproved', |
| 134 | 134 | 'field_filters' => $field_filters_unapproved, |
| 135 | 135 | 'count' => $unapproved_count, |
@@ -148,9 +148,9 @@ discard block |
||
| 148 | 148 | */ |
| 149 | 149 | function tooltips( $tooltips ) { |
| 150 | 150 | |
| 151 | - $tooltips['form_gravityview_fields'] = array( |
|
| 152 | - 'title' => __('GravityView Fields', 'gravityview'), |
|
| 153 | - 'value' => __( 'Allow administrators to approve or reject entries and users to opt-in or opt-out of their entries being displayed.', 'gravityview'), |
|
| 151 | + $tooltips[ 'form_gravityview_fields' ] = array( |
|
| 152 | + 'title' => __( 'GravityView Fields', 'gravityview' ), |
|
| 153 | + 'value' => __( 'Allow administrators to approve or reject entries and users to opt-in or opt-out of their entries being displayed.', 'gravityview' ), |
|
| 154 | 154 | ); |
| 155 | 155 | |
| 156 | 156 | return $tooltips; |
@@ -261,7 +261,7 @@ discard block |
||
| 261 | 261 | |
| 262 | 262 | $gv_bulk_action = false; |
| 263 | 263 | |
| 264 | - if( version_compare( GFForms::$version, '2.0', '>=' ) ) { |
|
| 264 | + if ( version_compare( GFForms::$version, '2.0', '>=' ) ) { |
|
| 265 | 265 | $bulk_action = ( '-1' !== \GV\Utils::_POST( 'action' ) ) ? \GV\Utils::_POST( 'action' ) : \GV\Utils::_POST( 'action2' ); |
| 266 | 266 | } else { |
| 267 | 267 | // GF 1.9.x - Bulk action 2 is the bottom bulk action select form. |
@@ -269,7 +269,7 @@ discard block |
||
| 269 | 269 | } |
| 270 | 270 | |
| 271 | 271 | // Check the $bulk_action value against GV actions, see if they're the same. I hate strpos(). |
| 272 | - if( ! empty( $bulk_action ) && preg_match( '/^('. implode( '|', $this->bulk_action_prefixes ) .')/ism', $bulk_action ) ) { |
|
| 272 | + if ( ! empty( $bulk_action ) && preg_match( '/^(' . implode( '|', $this->bulk_action_prefixes ) . ')/ism', $bulk_action ) ) { |
|
| 273 | 273 | $gv_bulk_action = $bulk_action; |
| 274 | 274 | } |
| 275 | 275 | |
@@ -294,7 +294,7 @@ discard block |
||
| 294 | 294 | |
| 295 | 295 | // gforms_entry_list is the nonce that confirms we're on the right page |
| 296 | 296 | // gforms_update_note is sent when bulk editing entry notes. We don't want to process then. |
| 297 | - if ( $bulk_action && \GV\Utils::_POST( 'gforms_entry_list' ) && empty( $_POST['gforms_update_note'] ) ) { |
|
| 297 | + if ( $bulk_action && \GV\Utils::_POST( 'gforms_entry_list' ) && empty( $_POST[ 'gforms_update_note' ] ) ) { |
|
| 298 | 298 | |
| 299 | 299 | check_admin_referer( 'gforms_entry_list', 'gforms_entry_list' ); |
| 300 | 300 | |
@@ -312,13 +312,13 @@ discard block |
||
| 312 | 312 | } |
| 313 | 313 | |
| 314 | 314 | // All entries are set to be updated, not just the visible ones |
| 315 | - if ( ! empty( $_POST['all_entries'] ) ) { |
|
| 315 | + if ( ! empty( $_POST[ 'all_entries' ] ) ) { |
|
| 316 | 316 | |
| 317 | 317 | // Convert the current entry search into GF-formatted search criteria |
| 318 | 318 | $search = array( |
| 319 | - 'search_field' => isset( $_POST['f'] ) ? $_POST['f'][0] : 0, |
|
| 320 | - 'search_value' => isset( $_POST['v'][0] ) ? $_POST['v'][0] : '', |
|
| 321 | - 'search_operator' => isset( $_POST['o'][0] ) ? $_POST['o'][0] : 'contains', |
|
| 319 | + 'search_field' => isset( $_POST[ 'f' ] ) ? $_POST[ 'f' ][ 0 ] : 0, |
|
| 320 | + 'search_value' => isset( $_POST[ 'v' ][ 0 ] ) ? $_POST[ 'v' ][ 0 ] : '', |
|
| 321 | + 'search_operator' => isset( $_POST[ 'o' ][ 0 ] ) ? $_POST[ 'o' ][ 0 ] : 'contains', |
|
| 322 | 322 | ); |
| 323 | 323 | |
| 324 | 324 | $search_criteria = GravityView_frontend::get_search_criteria( $search, $form_id ); |
@@ -329,7 +329,7 @@ discard block |
||
| 329 | 329 | } else { |
| 330 | 330 | |
| 331 | 331 | // Changed from 'lead' to 'entry' in 2.0 |
| 332 | - $entries = isset( $_POST['lead'] ) ? $_POST['lead'] : $_POST['entry']; |
|
| 332 | + $entries = isset( $_POST[ 'lead' ] ) ? $_POST[ 'lead' ] : $_POST[ 'entry' ]; |
|
| 333 | 333 | |
| 334 | 334 | } |
| 335 | 335 | |
@@ -341,15 +341,15 @@ discard block |
||
| 341 | 341 | $entry_count = count( $entries ) > 1 ? sprintf( __( '%d entries', 'gravityview' ), count( $entries ) ) : __( '1 entry', 'gravityview' ); |
| 342 | 342 | |
| 343 | 343 | switch ( $approved_status ) { |
| 344 | - case $this->bulk_action_prefixes['approve']: |
|
| 344 | + case $this->bulk_action_prefixes[ 'approve' ]: |
|
| 345 | 345 | GravityView_Entry_Approval::update_bulk( $entries, GravityView_Entry_Approval_Status::APPROVED, $form_id ); |
| 346 | 346 | $this->bulk_update_message = sprintf( __( '%s approved.', 'gravityview' ), $entry_count ); |
| 347 | 347 | break; |
| 348 | - case $this->bulk_action_prefixes['unapprove']: |
|
| 348 | + case $this->bulk_action_prefixes[ 'unapprove' ]: |
|
| 349 | 349 | GravityView_Entry_Approval::update_bulk( $entries, GravityView_Entry_Approval_Status::UNAPPROVED, $form_id ); |
| 350 | 350 | $this->bulk_update_message = sprintf( __( '%s unapproved.', 'gravityview' ), $entry_count ); |
| 351 | 351 | break; |
| 352 | - case $this->bulk_action_prefixes['disapprove']: |
|
| 352 | + case $this->bulk_action_prefixes[ 'disapprove' ]: |
|
| 353 | 353 | GravityView_Entry_Approval::update_bulk( $entries, GravityView_Entry_Approval_Status::DISAPPROVED, $form_id ); |
| 354 | 354 | $this->bulk_update_message = sprintf( __( '%s disapproved.', 'gravityview' ), $entry_count ); |
| 355 | 355 | break; |
@@ -371,7 +371,7 @@ discard block |
||
| 371 | 371 | * |
| 372 | 372 | * @return boolean True: It worked; False: it failed |
| 373 | 373 | */ |
| 374 | - public static function update_approved( $entry_id = 0, $approved = 0, $form_id = 0, $approvedcolumn = 0) { |
|
| 374 | + public static function update_approved( $entry_id = 0, $approved = 0, $form_id = 0, $approvedcolumn = 0 ) { |
|
| 375 | 375 | return GravityView_Entry_Approval::update_approved( $entry_id, $approved, $form_id, $approvedcolumn ); |
| 376 | 376 | } |
| 377 | 377 | |
@@ -401,20 +401,20 @@ discard block |
||
| 401 | 401 | * |
| 402 | 402 | * @return void |
| 403 | 403 | */ |
| 404 | - static public function add_entry_approved_hidden_input( $form_id, $field_id, $value, $entry, $query_string ) { |
|
| 404 | + static public function add_entry_approved_hidden_input( $form_id, $field_id, $value, $entry, $query_string ) { |
|
| 405 | 405 | |
| 406 | - if( ! GVCommon::has_cap( 'gravityview_moderate_entries', $entry['id'] ) ) { |
|
| 406 | + if ( ! GVCommon::has_cap( 'gravityview_moderate_entries', $entry[ 'id' ] ) ) { |
|
| 407 | 407 | return; |
| 408 | 408 | } |
| 409 | 409 | |
| 410 | - if( empty( $entry['id'] ) ) { |
|
| 410 | + if ( empty( $entry[ 'id' ] ) ) { |
|
| 411 | 411 | return; |
| 412 | 412 | } |
| 413 | 413 | |
| 414 | 414 | $status_value = GravityView_Entry_Approval::get_entry_status( $entry, 'value' ); |
| 415 | 415 | |
| 416 | - if( $status_value ) { |
|
| 417 | - echo '<input type="hidden" class="entry_approval" id="entry_approved_'. $entry['id'] .'" value="' . esc_attr( $status_value ) . '" />'; |
|
| 416 | + if ( $status_value ) { |
|
| 417 | + echo '<input type="hidden" class="entry_approval" id="entry_approved_' . $entry[ 'id' ] . '" value="' . esc_attr( $status_value ) . '" />'; |
|
| 418 | 418 | } |
| 419 | 419 | } |
| 420 | 420 | |
@@ -427,10 +427,10 @@ discard block |
||
| 427 | 427 | */ |
| 428 | 428 | private function get_form_id() { |
| 429 | 429 | |
| 430 | - $form_id = GFForms::get('id'); |
|
| 430 | + $form_id = GFForms::get( 'id' ); |
|
| 431 | 431 | |
| 432 | 432 | // If there are no forms identified, use the first form. That's how GF does it. |
| 433 | - if( empty( $form_id ) && class_exists('RGFormsModel') ) { |
|
| 433 | + if ( empty( $form_id ) && class_exists( 'RGFormsModel' ) ) { |
|
| 434 | 434 | $form_id = $this->get_first_form_id(); |
| 435 | 435 | } |
| 436 | 436 | |
@@ -450,14 +450,14 @@ discard block |
||
| 450 | 450 | |
| 451 | 451 | $forms = RGFormsModel::get_forms( null, 'title' ); |
| 452 | 452 | |
| 453 | - if( ! isset( $forms[0] ) ) { |
|
| 453 | + if ( ! isset( $forms[ 0 ] ) ) { |
|
| 454 | 454 | gravityview()->log->error( 'No forms were found' ); |
| 455 | 455 | return 0; |
| 456 | 456 | } |
| 457 | 457 | |
| 458 | - $first_form = $forms[0]; |
|
| 458 | + $first_form = $forms[ 0 ]; |
|
| 459 | 459 | |
| 460 | - $form_id = is_object( $forms[0] ) ? $first_form->id : $first_form['id']; |
|
| 460 | + $form_id = is_object( $forms[ 0 ] ) ? $first_form->id : $first_form[ 'id' ]; |
|
| 461 | 461 | |
| 462 | 462 | return intval( $form_id ); |
| 463 | 463 | } |
@@ -465,33 +465,33 @@ discard block |
||
| 465 | 465 | |
| 466 | 466 | function add_scripts_and_styles( $hook ) { |
| 467 | 467 | |
| 468 | - if( ! class_exists( 'GFForms' ) ) { |
|
| 468 | + if ( ! class_exists( 'GFForms' ) ) { |
|
| 469 | 469 | gravityview()->log->error( 'GFForms does not exist.' ); |
| 470 | 470 | return; |
| 471 | 471 | } |
| 472 | 472 | |
| 473 | 473 | // enqueue styles & scripts gf_entries |
| 474 | 474 | // But only if we're on the main Entries page, not on reports pages |
| 475 | - if( GFForms::get_page() !== 'entry_list' ) { |
|
| 475 | + if ( GFForms::get_page() !== 'entry_list' ) { |
|
| 476 | 476 | return; |
| 477 | 477 | } |
| 478 | 478 | |
| 479 | 479 | $form_id = $this->get_form_id(); |
| 480 | 480 | |
| 481 | 481 | // Things are broken; no forms were found |
| 482 | - if( empty( $form_id ) ) { |
|
| 482 | + if ( empty( $form_id ) ) { |
|
| 483 | 483 | return; |
| 484 | 484 | } |
| 485 | 485 | |
| 486 | - wp_enqueue_style( 'gravityview_entries_list', plugins_url('assets/css/admin-entries-list.css', GRAVITYVIEW_FILE), array(), GravityView_Plugin::version ); |
|
| 486 | + wp_enqueue_style( 'gravityview_entries_list', plugins_url( 'assets/css/admin-entries-list.css', GRAVITYVIEW_FILE ), array(), GravityView_Plugin::version ); |
|
| 487 | 487 | |
| 488 | - $script_debug = (defined('SCRIPT_DEBUG') && SCRIPT_DEBUG) ? '' : '.min'; |
|
| 488 | + $script_debug = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min'; |
|
| 489 | 489 | |
| 490 | - wp_enqueue_script( 'gravityview_gf_entries_scripts', plugins_url('assets/js/admin-entries-list'.$script_debug.'.js', GRAVITYVIEW_FILE), array( 'jquery' ), GravityView_Plugin::version ); |
|
| 490 | + wp_enqueue_script( 'gravityview_gf_entries_scripts', plugins_url( 'assets/js/admin-entries-list' . $script_debug . '.js', GRAVITYVIEW_FILE ), array( 'jquery' ), GravityView_Plugin::version ); |
|
| 491 | 491 | |
| 492 | 492 | wp_localize_script( 'gravityview_gf_entries_scripts', 'gvGlobals', array( |
| 493 | - 'nonce' => wp_create_nonce( 'gravityview_entry_approval'), |
|
| 494 | - 'admin_nonce' => wp_create_nonce( 'gravityview_admin_entry_approval'), |
|
| 493 | + 'nonce' => wp_create_nonce( 'gravityview_entry_approval' ), |
|
| 494 | + 'admin_nonce' => wp_create_nonce( 'gravityview_admin_entry_approval' ), |
|
| 495 | 495 | 'form_id' => $form_id, |
| 496 | 496 | 'show_column' => (int)$this->show_approve_entry_column( $form_id ), |
| 497 | 497 | 'add_bulk_action' => (int)GVCommon::has_cap( 'gravityview_moderate_entries' ), |
@@ -500,10 +500,10 @@ discard block |
||
| 500 | 500 | 'status_unapproved' => GravityView_Entry_Approval_Status::UNAPPROVED, |
| 501 | 501 | 'bulk_actions' => $this->get_bulk_actions( $form_id ), |
| 502 | 502 | 'bulk_message' => $this->bulk_update_message, |
| 503 | - 'unapprove_title' => GravityView_Entry_Approval_Status::get_title_attr('unapproved'), |
|
| 504 | - 'approve_title' => GravityView_Entry_Approval_Status::get_title_attr('disapproved'), |
|
| 505 | - 'disapprove_title' => GravityView_Entry_Approval_Status::get_title_attr('approved'), |
|
| 506 | - 'column_title' => __( 'Show entry in directory view?', 'gravityview'), |
|
| 503 | + 'unapprove_title' => GravityView_Entry_Approval_Status::get_title_attr( 'unapproved' ), |
|
| 504 | + 'approve_title' => GravityView_Entry_Approval_Status::get_title_attr( 'disapproved' ), |
|
| 505 | + 'disapprove_title' => GravityView_Entry_Approval_Status::get_title_attr( 'approved' ), |
|
| 506 | + 'column_title' => __( 'Show entry in directory view?', 'gravityview' ), |
|
| 507 | 507 | 'column_link' => esc_url( $this->get_sort_link() ), |
| 508 | 508 | ) ); |
| 509 | 509 | |
@@ -545,16 +545,16 @@ discard block |
||
| 545 | 545 | $bulk_actions = array( |
| 546 | 546 | 'GravityView' => array( |
| 547 | 547 | array( |
| 548 | - 'label' => GravityView_Entry_Approval_Status::get_string('approved', 'action'), |
|
| 549 | - 'value' => sprintf( '%s-%d', $this->bulk_action_prefixes['approve'], $form_id ), |
|
| 548 | + 'label' => GravityView_Entry_Approval_Status::get_string( 'approved', 'action' ), |
|
| 549 | + 'value' => sprintf( '%s-%d', $this->bulk_action_prefixes[ 'approve' ], $form_id ), |
|
| 550 | 550 | ), |
| 551 | 551 | array( |
| 552 | - 'label' => GravityView_Entry_Approval_Status::get_string('disapproved', 'action'), |
|
| 553 | - 'value' => sprintf( '%s-%d', $this->bulk_action_prefixes['disapprove'], $form_id ), |
|
| 552 | + 'label' => GravityView_Entry_Approval_Status::get_string( 'disapproved', 'action' ), |
|
| 553 | + 'value' => sprintf( '%s-%d', $this->bulk_action_prefixes[ 'disapprove' ], $form_id ), |
|
| 554 | 554 | ), |
| 555 | 555 | array( |
| 556 | - 'label' => GravityView_Entry_Approval_Status::get_string('unapproved', 'action'), |
|
| 557 | - 'value' => sprintf( '%s-%d', $this->bulk_action_prefixes['unapprove'], $form_id ), |
|
| 556 | + 'label' => GravityView_Entry_Approval_Status::get_string( 'unapproved', 'action' ), |
|
| 557 | + 'value' => sprintf( '%s-%d', $this->bulk_action_prefixes[ 'unapprove' ], $form_id ), |
|
| 558 | 558 | ), |
| 559 | 559 | ), |
| 560 | 560 | ); |
@@ -571,13 +571,13 @@ discard block |
||
| 571 | 571 | // Sanitize the values, just to be sure. |
| 572 | 572 | foreach ( $bulk_actions as $key => $group ) { |
| 573 | 573 | |
| 574 | - if( empty( $group ) ) { |
|
| 574 | + if ( empty( $group ) ) { |
|
| 575 | 575 | continue; |
| 576 | 576 | } |
| 577 | 577 | |
| 578 | 578 | foreach ( $group as $i => $action ) { |
| 579 | - $bulk_actions[ $key ][ $i ]['label'] = esc_html( $bulk_actions[ $key ][ $i ]['label'] ); |
|
| 580 | - $bulk_actions[ $key ][ $i ]['value'] = esc_attr( $bulk_actions[ $key ][ $i ]['value'] ); |
|
| 579 | + $bulk_actions[ $key ][ $i ][ 'label' ] = esc_html( $bulk_actions[ $key ][ $i ][ 'label' ] ); |
|
| 580 | + $bulk_actions[ $key ][ $i ][ 'value' ] = esc_attr( $bulk_actions[ $key ][ $i ][ 'value' ] ); |
|
| 581 | 581 | } |
| 582 | 582 | } |
| 583 | 583 | |
@@ -602,13 +602,13 @@ discard block |
||
| 602 | 602 | * @since 1.7.2 |
| 603 | 603 | * @param boolean $hide_if_no_connections |
| 604 | 604 | */ |
| 605 | - $hide_if_no_connections = apply_filters('gravityview/approve_entries/hide-if-no-connections', false ); |
|
| 605 | + $hide_if_no_connections = apply_filters( 'gravityview/approve_entries/hide-if-no-connections', false ); |
|
| 606 | 606 | |
| 607 | - if( $hide_if_no_connections ) { |
|
| 607 | + if ( $hide_if_no_connections ) { |
|
| 608 | 608 | |
| 609 | 609 | $connected_views = gravityview_get_connected_views( $form_id ); |
| 610 | 610 | |
| 611 | - if( empty( $connected_views ) ) { |
|
| 611 | + if ( empty( $connected_views ) ) { |
|
| 612 | 612 | $show_approve_column = false; |
| 613 | 613 | } |
| 614 | 614 | } |
@@ -618,18 +618,18 @@ discard block |
||
| 618 | 618 | * @param boolean $show_approve_column Whether the column will be shown |
| 619 | 619 | * @param int $form_id The ID of the Gravity Forms form for which entries are being shown |
| 620 | 620 | */ |
| 621 | - $show_approve_column = apply_filters('gravityview/approve_entries/show-column', $show_approve_column, $form_id ); |
|
| 621 | + $show_approve_column = apply_filters( 'gravityview/approve_entries/show-column', $show_approve_column, $form_id ); |
|
| 622 | 622 | |
| 623 | 623 | return $show_approve_column; |
| 624 | 624 | } |
| 625 | 625 | |
| 626 | 626 | function register_gform_noconflict_script( $scripts ) { |
| 627 | - $scripts[] = 'gravityview_gf_entries_scripts'; |
|
| 627 | + $scripts[ ] = 'gravityview_gf_entries_scripts'; |
|
| 628 | 628 | return $scripts; |
| 629 | 629 | } |
| 630 | 630 | |
| 631 | 631 | function register_gform_noconflict_style( $styles ) { |
| 632 | - $styles[] = 'gravityview_entries_list'; |
|
| 632 | + $styles[ ] = 'gravityview_entries_list'; |
|
| 633 | 633 | return $styles; |
| 634 | 634 | } |
| 635 | 635 | |