@@ -47,11 +47,11 @@ discard block |
||
| 47 | 47 | function modify_entry_value_workflow_step( $output, $entry, $field_settings, $field ) { |
| 48 | 48 | |
| 49 | 49 | // If not set, the entry hasn't started a workflow |
| 50 | - $has_workflow_step = isset( $entry['workflow_step'] ); |
|
| 50 | + $has_workflow_step = isset( $entry[ 'workflow_step' ] ); |
|
| 51 | 51 | |
| 52 | - if( $has_workflow_step ) { |
|
| 52 | + if ( $has_workflow_step ) { |
|
| 53 | 53 | |
| 54 | - $GFlow = new Gravity_Flow_API( $entry['form_id'] ); |
|
| 54 | + $GFlow = new Gravity_Flow_API( $entry[ 'form_id' ] ); |
|
| 55 | 55 | |
| 56 | 56 | if ( $current_step = $GFlow->get_current_step( $entry ) ) { |
| 57 | 57 | $output = esc_html( $current_step->get_name() ); |
@@ -79,7 +79,7 @@ discard block |
||
| 79 | 79 | preg_match( '/workflow_step_status_(\d+)/', $key, $matches ); |
| 80 | 80 | |
| 81 | 81 | if ( ! empty( $matches ) ) { |
| 82 | - $workflow_step_id = intval( $matches[1] ); |
|
| 82 | + $workflow_step_id = intval( $matches[ 1 ] ); |
|
| 83 | 83 | } |
| 84 | 84 | |
| 85 | 85 | return $workflow_step_id; |
@@ -98,7 +98,7 @@ discard block |
||
| 98 | 98 | |
| 99 | 99 | $return = $label; |
| 100 | 100 | |
| 101 | - if ( '' === $label && $workflow_step_id = $this->get_step_id_from_key( $field['field'] ) ) { |
|
| 101 | + if ( '' === $label && $workflow_step_id = $this->get_step_id_from_key( $field[ 'field' ] ) ) { |
|
| 102 | 102 | |
| 103 | 103 | $step = $this->get_workflow_step( $workflow_step_id ); |
| 104 | 104 | |
@@ -128,7 +128,7 @@ discard block |
||
| 128 | 128 | |
| 129 | 129 | $workflow_step = $GFlow->get_step( $workflow_step_id ); |
| 130 | 130 | |
| 131 | - if( ! $GFlow || ! $workflow_step ) { |
|
| 131 | + if ( ! $GFlow || ! $workflow_step ) { |
|
| 132 | 132 | return false; |
| 133 | 133 | } |
| 134 | 134 | |
@@ -150,7 +150,7 @@ discard block |
||
| 150 | 150 | |
| 151 | 151 | foreach ( $search_fields as & $search_field ) { |
| 152 | 152 | |
| 153 | - if ( $this->name === $search_field['key'] ) { |
|
| 153 | + if ( $this->name === $search_field[ 'key' ] ) { |
|
| 154 | 154 | |
| 155 | 155 | $form_id = GravityView_View::getInstance()->getFormId(); |
| 156 | 156 | |
@@ -159,21 +159,21 @@ discard block |
||
| 159 | 159 | $choices = array(); |
| 160 | 160 | |
| 161 | 161 | foreach ( $workflow_steps as $step ) { |
| 162 | - $choices[] = array( |
|
| 162 | + $choices[ ] = array( |
|
| 163 | 163 | 'text' => $step->get_name(), |
| 164 | 164 | 'value' => $step->get_id(), |
| 165 | 165 | ); |
| 166 | 166 | } |
| 167 | 167 | |
| 168 | - $search_field['choices'] = $choices; |
|
| 168 | + $search_field[ 'choices' ] = $choices; |
|
| 169 | 169 | } |
| 170 | 170 | |
| 171 | 171 | // Workflow Step Statuses |
| 172 | - else if ( $workflow_step_id = $this->get_step_id_from_key( $search_field['key'] ) ) { |
|
| 172 | + else if ( $workflow_step_id = $this->get_step_id_from_key( $search_field[ 'key' ] ) ) { |
|
| 173 | 173 | |
| 174 | 174 | $status_key = sprintf( 'workflow_step_status_%d', $workflow_step_id ); |
| 175 | 175 | |
| 176 | - $search_field['choices'] = GravityView_Plugin_Hooks_Gravity_Flow::get_status_options( null, $status_key ); |
|
| 176 | + $search_field[ 'choices' ] = GravityView_Plugin_Hooks_Gravity_Flow::get_status_options( null, $status_key ); |
|
| 177 | 177 | } |
| 178 | 178 | } |
| 179 | 179 | |
@@ -114,12 +114,12 @@ discard block |
||
| 114 | 114 | |
| 115 | 115 | add_filter( 'gravityview/sortable/field_blacklist', array( $this, '_filter_sortable_fields' ), 1 ); |
| 116 | 116 | |
| 117 | - if( $this->_custom_merge_tag ) { |
|
| 117 | + if ( $this->_custom_merge_tag ) { |
|
| 118 | 118 | add_filter( 'gform_custom_merge_tags', array( $this, '_filter_gform_custom_merge_tags' ), 10, 4 ); |
| 119 | 119 | add_filter( 'gform_replace_merge_tags', array( $this, '_filter_gform_replace_merge_tags' ), 10, 7 ); |
| 120 | 120 | } |
| 121 | 121 | |
| 122 | - if( 'meta' === $this->group || '' !== $this->default_search_label ) { |
|
| 122 | + if ( 'meta' === $this->group || '' !== $this->default_search_label ) { |
|
| 123 | 123 | add_filter( 'gravityview_search_field_label', array( $this, 'set_default_search_label' ), 10, 3 ); |
| 124 | 124 | } |
| 125 | 125 | |
@@ -141,7 +141,7 @@ discard block |
||
| 141 | 141 | */ |
| 142 | 142 | function set_default_search_label( $label = '', $gf_field = null, $field = array() ) { |
| 143 | 143 | |
| 144 | - if( $this->name === $field['field'] && '' === $label ) { |
|
| 144 | + if ( $this->name === $field[ 'field' ] && '' === $label ) { |
|
| 145 | 145 | $label = esc_html( $this->default_search_label ); |
| 146 | 146 | } |
| 147 | 147 | |
@@ -162,7 +162,7 @@ discard block |
||
| 162 | 162 | * |
| 163 | 163 | * @return string Original text if {_custom_merge_tag} isn't found. Otherwise, replaced text. |
| 164 | 164 | */ |
| 165 | - public function _filter_gform_replace_merge_tags( $text, $form = array(), $entry = array(), $url_encode = false, $esc_html = false ) { |
|
| 165 | + public function _filter_gform_replace_merge_tags( $text, $form = array(), $entry = array(), $url_encode = false, $esc_html = false ) { |
|
| 166 | 166 | |
| 167 | 167 | /** |
| 168 | 168 | * This prevents the gform_replace_merge_tags filter from being called twice, as defined in: |
@@ -170,7 +170,7 @@ discard block |
||
| 170 | 170 | * @see GFCommon::replace_variables_prepopulate() |
| 171 | 171 | * @todo Remove eventually: Gravity Forms fixed this issue in 1.9.14 |
| 172 | 172 | */ |
| 173 | - if( false === $form ) { |
|
| 173 | + if ( false === $form ) { |
|
| 174 | 174 | return $text; |
| 175 | 175 | } |
| 176 | 176 | |
@@ -203,19 +203,19 @@ discard block |
||
| 203 | 203 | */ |
| 204 | 204 | public function replace_merge_tag( $matches = array(), $text = '', $form = array(), $entry = array(), $url_encode = false, $esc_html = false ) { |
| 205 | 205 | |
| 206 | - foreach( $matches as $match ) { |
|
| 206 | + foreach ( $matches as $match ) { |
|
| 207 | 207 | |
| 208 | - $full_tag = $match[0]; |
|
| 208 | + $full_tag = $match[ 0 ]; |
|
| 209 | 209 | |
| 210 | 210 | // Strip the Merge Tags |
| 211 | - $tag = str_replace( array( '{', '}'), '', $full_tag ); |
|
| 211 | + $tag = str_replace( array( '{', '}' ), '', $full_tag ); |
|
| 212 | 212 | |
| 213 | 213 | // Replace the value from the entry, if exists |
| 214 | - if( isset( $entry[ $tag ] ) ) { |
|
| 214 | + if ( isset( $entry[ $tag ] ) ) { |
|
| 215 | 215 | |
| 216 | 216 | $value = $entry[ $tag ]; |
| 217 | 217 | |
| 218 | - if( is_callable( array( $this, 'get_content') ) ) { |
|
| 218 | + if ( is_callable( array( $this, 'get_content' ) ) ) { |
|
| 219 | 219 | $value = $this->get_content( $value ); |
| 220 | 220 | } |
| 221 | 221 | |
@@ -288,8 +288,8 @@ discard block |
||
| 288 | 288 | */ |
| 289 | 289 | public function _filter_sortable_fields( $not_sortable ) { |
| 290 | 290 | |
| 291 | - if( ! $this->is_sortable ) { |
|
| 292 | - $not_sortable[] = $this->name; |
|
| 291 | + if ( ! $this->is_sortable ) { |
|
| 292 | + $not_sortable[ ] = $this->name; |
|
| 293 | 293 | } |
| 294 | 294 | |
| 295 | 295 | return $not_sortable; |
@@ -318,7 +318,7 @@ discard block |
||
| 318 | 318 | 'date_display' => array( |
| 319 | 319 | 'type' => 'text', |
| 320 | 320 | 'label' => __( 'Override Date Format', 'gravityview' ), |
| 321 | - 'desc' => sprintf( __( 'Define how the date is displayed (using %sthe PHP date format%s)', 'gravityview'), '<a href="https://codex.wordpress.org/Formatting_Date_and_Time">', '</a>' ), |
|
| 321 | + 'desc' => sprintf( __( 'Define how the date is displayed (using %sthe PHP date format%s)', 'gravityview' ), '<a href="https://codex.wordpress.org/Formatting_Date_and_Time">', '</a>' ), |
|
| 322 | 322 | /** |
| 323 | 323 | * @filter `gravityview_date_format` Override the date format with a [PHP date format](https://codex.wordpress.org/Formatting_Date_and_Time) |
| 324 | 324 | * @param[in,out] null|string $date_format Date Format (default: null) |
@@ -343,7 +343,7 @@ discard block |
||
| 343 | 343 | |
| 344 | 344 | $options = $this->field_support_options(); |
| 345 | 345 | |
| 346 | - if( isset( $options[ $key ] ) ) { |
|
| 346 | + if ( isset( $options[ $key ] ) ) { |
|
| 347 | 347 | $field_options[ $key ] = $options[ $key ]; |
| 348 | 348 | } |
| 349 | 349 | |
@@ -407,11 +407,11 @@ discard block |
||
| 407 | 407 | $connected_form = rgpost( 'form_id' ); |
| 408 | 408 | |
| 409 | 409 | // Otherwise, get the Form ID from the Post page |
| 410 | - if( empty( $connected_form ) ) { |
|
| 410 | + if ( empty( $connected_form ) ) { |
|
| 411 | 411 | $connected_form = gravityview_get_form_id( get_the_ID() ); |
| 412 | 412 | } |
| 413 | 413 | |
| 414 | - if( empty( $connected_form ) ) { |
|
| 414 | + if ( empty( $connected_form ) ) { |
|
| 415 | 415 | do_action( 'gravityview_log_error', sprintf( '%s: Form not found for form ID "%s"', __METHOD__, $connected_form ) ); |
| 416 | 416 | return false; |
| 417 | 417 | } |
@@ -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 | |
@@ -59,8 +59,8 @@ discard block |
||
| 59 | 59 | function modify_search_filters( $search_fields = array(), GravityView_Widget_Search $widget, $widget_args = array() ) { |
| 60 | 60 | |
| 61 | 61 | foreach ( $search_fields as & $search_field ) { |
| 62 | - if ( $this->name === $search_field['key'] ) { |
|
| 63 | - $search_field['choices'] = GravityView_Plugin_Hooks_Gravity_Flow::get_status_options(); |
|
| 62 | + if ( $this->name === $search_field[ 'key' ] ) { |
|
| 63 | + $search_field[ 'choices' ] = GravityView_Plugin_Hooks_Gravity_Flow::get_status_options(); |
|
| 64 | 64 | } |
| 65 | 65 | } |
| 66 | 66 | |
@@ -63,7 +63,7 @@ discard block |
||
| 63 | 63 | 'type' => 'radio', |
| 64 | 64 | 'full_width' => true, |
| 65 | 65 | 'label' => esc_html__( 'Search Mode', 'gravityview' ), |
| 66 | - 'desc' => __('Should search results match all search fields, or any?', 'gravityview'), |
|
| 66 | + 'desc' => __( 'Should search results match all search fields, or any?', 'gravityview' ), |
|
| 67 | 67 | 'value' => 'any', |
| 68 | 68 | 'class' => 'hide-if-js', |
| 69 | 69 | 'options' => array( |
@@ -85,7 +85,7 @@ discard block |
||
| 85 | 85 | |
| 86 | 86 | // admin - add scripts - run at 1100 to make sure GravityView_Admin_Views::add_scripts_and_styles() runs first at 999 |
| 87 | 87 | add_action( 'admin_enqueue_scripts', array( $this, 'add_scripts_and_styles' ), 1100 ); |
| 88 | - add_action( 'wp_enqueue_scripts', array( $this, 'register_scripts') ); |
|
| 88 | + add_action( 'wp_enqueue_scripts', array( $this, 'register_scripts' ) ); |
|
| 89 | 89 | add_filter( 'gravityview_noconflict_scripts', array( $this, 'register_no_conflict' ) ); |
| 90 | 90 | |
| 91 | 91 | // ajax - get the searchable fields |
@@ -149,7 +149,7 @@ discard block |
||
| 149 | 149 | $script_min = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min'; |
| 150 | 150 | $script_source = empty( $script_min ) ? '/source' : ''; |
| 151 | 151 | |
| 152 | - wp_enqueue_script( 'gravityview_searchwidget_admin', plugins_url( 'assets/js'.$script_source.'/admin-search-widget'.$script_min.'.js', __FILE__ ), array( 'jquery', 'gravityview_views_scripts' ), GravityView_Plugin::version ); |
|
| 152 | + wp_enqueue_script( 'gravityview_searchwidget_admin', plugins_url( 'assets/js' . $script_source . '/admin-search-widget' . $script_min . '.js', __FILE__ ), array( 'jquery', 'gravityview_views_scripts' ), GravityView_Plugin::version ); |
|
| 153 | 153 | |
| 154 | 154 | |
| 155 | 155 | /** |
@@ -204,7 +204,7 @@ discard block |
||
| 204 | 204 | * @return array Scripts allowed in no-conflict mode, plus the search widget script |
| 205 | 205 | */ |
| 206 | 206 | public function register_no_conflict( $allowed ) { |
| 207 | - $allowed[] = 'gravityview_searchwidget_admin'; |
|
| 207 | + $allowed[ ] = 'gravityview_searchwidget_admin'; |
|
| 208 | 208 | return $allowed; |
| 209 | 209 | } |
| 210 | 210 | |
@@ -217,24 +217,24 @@ discard block |
||
| 217 | 217 | */ |
| 218 | 218 | public static function get_searchable_fields() { |
| 219 | 219 | |
| 220 | - if ( ! isset( $_POST['nonce'] ) || ! wp_verify_nonce( $_POST['nonce'], 'gravityview_ajaxsearchwidget' ) ) { |
|
| 220 | + if ( ! isset( $_POST[ 'nonce' ] ) || ! wp_verify_nonce( $_POST[ 'nonce' ], 'gravityview_ajaxsearchwidget' ) ) { |
|
| 221 | 221 | exit( '0' ); |
| 222 | 222 | } |
| 223 | 223 | |
| 224 | 224 | $form = ''; |
| 225 | 225 | |
| 226 | 226 | // Fetch the form for the current View |
| 227 | - if ( ! empty( $_POST['view_id'] ) ) { |
|
| 227 | + if ( ! empty( $_POST[ 'view_id' ] ) ) { |
|
| 228 | 228 | |
| 229 | - $form = gravityview_get_form_id( $_POST['view_id'] ); |
|
| 229 | + $form = gravityview_get_form_id( $_POST[ 'view_id' ] ); |
|
| 230 | 230 | |
| 231 | - } elseif ( ! empty( $_POST['formid'] ) ) { |
|
| 231 | + } elseif ( ! empty( $_POST[ 'formid' ] ) ) { |
|
| 232 | 232 | |
| 233 | - $form = (int) $_POST['formid']; |
|
| 233 | + $form = (int)$_POST[ 'formid' ]; |
|
| 234 | 234 | |
| 235 | - } elseif ( ! empty( $_POST['template_id'] ) && class_exists( 'GravityView_Ajax' ) ) { |
|
| 235 | + } elseif ( ! empty( $_POST[ 'template_id' ] ) && class_exists( 'GravityView_Ajax' ) ) { |
|
| 236 | 236 | |
| 237 | - $form = GravityView_Ajax::pre_get_form_fields( $_POST['template_id'] ); |
|
| 237 | + $form = GravityView_Ajax::pre_get_form_fields( $_POST[ 'template_id' ] ); |
|
| 238 | 238 | |
| 239 | 239 | } |
| 240 | 240 | |
@@ -279,8 +279,8 @@ discard block |
||
| 279 | 279 | ) |
| 280 | 280 | ); |
| 281 | 281 | |
| 282 | - foreach( $custom_fields as $custom_field_key => $custom_field ) { |
|
| 283 | - $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'] ); |
|
| 282 | + foreach ( $custom_fields as $custom_field_key => $custom_field ) { |
|
| 283 | + $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' ] ); |
|
| 284 | 284 | } |
| 285 | 285 | |
| 286 | 286 | // Get fields with sub-inputs and no parent |
@@ -302,13 +302,13 @@ discard block |
||
| 302 | 302 | |
| 303 | 303 | foreach ( $fields as $id => $field ) { |
| 304 | 304 | |
| 305 | - if ( in_array( $field['type'], $blacklist_field_types ) ) { |
|
| 305 | + if ( in_array( $field[ 'type' ], $blacklist_field_types ) ) { |
|
| 306 | 306 | continue; |
| 307 | 307 | } |
| 308 | 308 | |
| 309 | - $types = self::get_search_input_types( $id, $field['type'] ); |
|
| 309 | + $types = self::get_search_input_types( $id, $field[ 'type' ] ); |
|
| 310 | 310 | |
| 311 | - $output .= '<option value="'. $id .'" '. selected( $id, $current, false ).'data-inputtypes="'. esc_attr( $types ) .'">'. esc_html( $field['label'] ) .'</option>'; |
|
| 311 | + $output .= '<option value="' . $id . '" ' . selected( $id, $current, false ) . 'data-inputtypes="' . esc_attr( $types ) . '">' . esc_html( $field[ 'label' ] ) . '</option>'; |
|
| 312 | 312 | } |
| 313 | 313 | } |
| 314 | 314 | |
@@ -330,7 +330,7 @@ discard block |
||
| 330 | 330 | public static function get_search_input_types( $id = '', $field_type = null ) { |
| 331 | 331 | |
| 332 | 332 | // @todo - This needs to be improved - many fields have . including products and addresses |
| 333 | - if ( false !== strpos( (string) $id, '.' ) && in_array( $field_type, array( 'checkbox' ) ) || in_array( $id, array( 'is_fulfilled' ) ) ) { |
|
| 333 | + if ( false !== strpos( (string)$id, '.' ) && in_array( $field_type, array( 'checkbox' ) ) || in_array( $id, array( 'is_fulfilled' ) ) ) { |
|
| 334 | 334 | $input_type = 'boolean'; // on/off checkbox |
| 335 | 335 | } elseif ( in_array( $field_type, array( 'checkbox', 'post_category', 'multiselect' ) ) ) { |
| 336 | 336 | $input_type = 'multi'; //multiselect |
@@ -372,19 +372,19 @@ discard block |
||
| 372 | 372 | $post_id = 0; |
| 373 | 373 | |
| 374 | 374 | // We're in the WordPress Widget context, and an overriding post ID has been set. |
| 375 | - if ( ! empty( $widget_args['post_id'] ) ) { |
|
| 376 | - $post_id = absint( $widget_args['post_id'] ); |
|
| 375 | + if ( ! empty( $widget_args[ 'post_id' ] ) ) { |
|
| 376 | + $post_id = absint( $widget_args[ 'post_id' ] ); |
|
| 377 | 377 | } |
| 378 | 378 | // We're in the WordPress Widget context, and the base View ID should be used |
| 379 | - else if ( ! empty( $widget_args['view_id'] ) ) { |
|
| 380 | - $post_id = absint( $widget_args['view_id'] ); |
|
| 379 | + else if ( ! empty( $widget_args[ 'view_id' ] ) ) { |
|
| 380 | + $post_id = absint( $widget_args[ 'view_id' ] ); |
|
| 381 | 381 | } |
| 382 | 382 | |
| 383 | 383 | $args = gravityview_get_permalink_query_args( $post_id ); |
| 384 | 384 | |
| 385 | 385 | // Add hidden fields to the search form |
| 386 | 386 | foreach ( $args as $key => $value ) { |
| 387 | - $search_fields[] = array( |
|
| 387 | + $search_fields[ ] = array( |
|
| 388 | 388 | 'name' => $key, |
| 389 | 389 | 'input' => 'hidden', |
| 390 | 390 | 'value' => $value, |
@@ -405,7 +405,7 @@ discard block |
||
| 405 | 405 | */ |
| 406 | 406 | public function filter_entries( $search_criteria ) { |
| 407 | 407 | |
| 408 | - if( 'post' === $this->search_method ) { |
|
| 408 | + if ( 'post' === $this->search_method ) { |
|
| 409 | 409 | $get = $_POST; |
| 410 | 410 | } else { |
| 411 | 411 | $get = $_GET; |
@@ -422,15 +422,15 @@ discard block |
||
| 422 | 422 | $get = gv_map_deep( $get, 'rawurldecode' ); |
| 423 | 423 | |
| 424 | 424 | // add free search |
| 425 | - if ( ! empty( $get['gv_search'] ) ) { |
|
| 425 | + if ( ! empty( $get[ 'gv_search' ] ) ) { |
|
| 426 | 426 | |
| 427 | 427 | // Search for a piece |
| 428 | - $words = explode( ' ', $get['gv_search'] ); |
|
| 428 | + $words = explode( ' ', $get[ 'gv_search' ] ); |
|
| 429 | 429 | |
| 430 | 430 | $words = array_filter( $words ); |
| 431 | 431 | |
| 432 | 432 | foreach ( $words as $word ) { |
| 433 | - $search_criteria['field_filters'][] = array( |
|
| 433 | + $search_criteria[ 'field_filters' ][ ] = array( |
|
| 434 | 434 | 'key' => null, // The field ID to search |
| 435 | 435 | 'value' => $word, // The value to search |
| 436 | 436 | 'operator' => 'contains', // What to search in. Options: `is` or `contains` |
@@ -439,8 +439,8 @@ discard block |
||
| 439 | 439 | } |
| 440 | 440 | |
| 441 | 441 | //start date & end date |
| 442 | - $curr_start = !empty( $get['gv_start'] ) ? $get['gv_start'] : ''; |
|
| 443 | - $curr_end = !empty( $get['gv_start'] ) ? $get['gv_end'] : ''; |
|
| 442 | + $curr_start = ! empty( $get[ 'gv_start' ] ) ? $get[ 'gv_start' ] : ''; |
|
| 443 | + $curr_end = ! empty( $get[ 'gv_start' ] ) ? $get[ 'gv_end' ] : ''; |
|
| 444 | 444 | |
| 445 | 445 | /** |
| 446 | 446 | * @filter `gravityview_date_created_adjust_timezone` Whether to adjust the timezone for entries. \n |
@@ -455,16 +455,16 @@ discard block |
||
| 455 | 455 | /** |
| 456 | 456 | * Don't set $search_criteria['start_date'] if start_date is empty as it may lead to bad query results (GFAPI::get_entries) |
| 457 | 457 | */ |
| 458 | - if( !empty( $curr_start ) ) { |
|
| 459 | - $search_criteria['start_date'] = $adjust_tz ? get_gmt_from_date( $curr_start ) : $curr_start; |
|
| 458 | + if ( ! empty( $curr_start ) ) { |
|
| 459 | + $search_criteria[ 'start_date' ] = $adjust_tz ? get_gmt_from_date( $curr_start ) : $curr_start; |
|
| 460 | 460 | } |
| 461 | - if( !empty( $curr_end ) ) { |
|
| 462 | - $search_criteria['end_date'] = $adjust_tz ? get_gmt_from_date( $curr_end ) : $curr_end; |
|
| 461 | + if ( ! empty( $curr_end ) ) { |
|
| 462 | + $search_criteria[ 'end_date' ] = $adjust_tz ? get_gmt_from_date( $curr_end ) : $curr_end; |
|
| 463 | 463 | } |
| 464 | 464 | |
| 465 | 465 | // search for a specific entry ID |
| 466 | 466 | if ( ! empty( $get[ 'gv_id' ] ) ) { |
| 467 | - $search_criteria['field_filters'][] = array( |
|
| 467 | + $search_criteria[ 'field_filters' ][ ] = array( |
|
| 468 | 468 | 'key' => 'id', |
| 469 | 469 | 'value' => absint( $get[ 'gv_id' ] ), |
| 470 | 470 | 'operator' => '=', |
@@ -473,36 +473,36 @@ discard block |
||
| 473 | 473 | |
| 474 | 474 | // search for a specific Created_by ID |
| 475 | 475 | if ( ! empty( $get[ 'gv_by' ] ) ) { |
| 476 | - $search_criteria['field_filters'][] = array( |
|
| 476 | + $search_criteria[ 'field_filters' ][ ] = array( |
|
| 477 | 477 | 'key' => 'created_by', |
| 478 | - 'value' => absint( $get['gv_by'] ), |
|
| 478 | + 'value' => absint( $get[ 'gv_by' ] ), |
|
| 479 | 479 | 'operator' => '=', |
| 480 | 480 | ); |
| 481 | 481 | } |
| 482 | 482 | |
| 483 | 483 | |
| 484 | 484 | // Get search mode passed in URL |
| 485 | - $mode = isset( $get['mode'] ) && in_array( $get['mode'], array( 'any', 'all' ) ) ? $get['mode'] : 'any'; |
|
| 485 | + $mode = isset( $get[ 'mode' ] ) && in_array( $get[ 'mode' ], array( 'any', 'all' ) ) ? $get[ 'mode' ] : 'any'; |
|
| 486 | 486 | |
| 487 | 487 | // get the other search filters |
| 488 | 488 | foreach ( $get as $key => $value ) { |
| 489 | 489 | |
| 490 | - if ( 0 !== strpos( $key, 'filter_' ) || empty( $value ) || ( is_array( $value ) && count( $value ) === 1 && empty( $value[0] ) ) ) { |
|
| 490 | + if ( 0 !== strpos( $key, 'filter_' ) || empty( $value ) || ( is_array( $value ) && count( $value ) === 1 && empty( $value[ 0 ] ) ) ) { |
|
| 491 | 491 | continue; |
| 492 | 492 | } |
| 493 | 493 | |
| 494 | 494 | // could return simple filter or multiple filters |
| 495 | 495 | $filter = $this->prepare_field_filter( $key, $value ); |
| 496 | 496 | |
| 497 | - if ( isset( $filter[0]['value'] ) ) { |
|
| 498 | - $search_criteria['field_filters'] = array_merge( $search_criteria['field_filters'], $filter ); |
|
| 497 | + if ( isset( $filter[ 0 ][ 'value' ] ) ) { |
|
| 498 | + $search_criteria[ 'field_filters' ] = array_merge( $search_criteria[ 'field_filters' ], $filter ); |
|
| 499 | 499 | |
| 500 | 500 | // if date range type, set search mode to ALL |
| 501 | - if ( ! empty( $filter[0]['operator'] ) && in_array( $filter[0]['operator'], array( '>=', '<=', '>', '<' ) ) ) { |
|
| 501 | + if ( ! empty( $filter[ 0 ][ 'operator' ] ) && in_array( $filter[ 0 ][ 'operator' ], array( '>=', '<=', '>', '<' ) ) ) { |
|
| 502 | 502 | $mode = 'all'; |
| 503 | 503 | } |
| 504 | - } elseif( !empty( $filter ) ) { |
|
| 505 | - $search_criteria['field_filters'][] = $filter; |
|
| 504 | + } elseif ( ! empty( $filter ) ) { |
|
| 505 | + $search_criteria[ 'field_filters' ][ ] = $filter; |
|
| 506 | 506 | } |
| 507 | 507 | } |
| 508 | 508 | |
@@ -511,7 +511,7 @@ discard block |
||
| 511 | 511 | * @since 1.5.1 |
| 512 | 512 | * @param[out,in] string $mode Search mode (`any` vs `all`) |
| 513 | 513 | */ |
| 514 | - $search_criteria['field_filters']['mode'] = apply_filters( 'gravityview/search/mode', $mode ); |
|
| 514 | + $search_criteria[ 'field_filters' ][ 'mode' ] = apply_filters( 'gravityview/search/mode', $mode ); |
|
| 515 | 515 | |
| 516 | 516 | do_action( 'gravityview_log_debug', sprintf( '%s[filter_entries] Returned Search Criteria: ', get_class( $this ) ), $search_criteria ); |
| 517 | 517 | |
@@ -551,11 +551,11 @@ discard block |
||
| 551 | 551 | 'value' => $value, |
| 552 | 552 | ); |
| 553 | 553 | |
| 554 | - switch ( $form_field['type'] ) { |
|
| 554 | + switch ( $form_field[ 'type' ] ) { |
|
| 555 | 555 | |
| 556 | 556 | case 'select': |
| 557 | 557 | case 'radio': |
| 558 | - $filter['operator'] = 'is'; |
|
| 558 | + $filter[ 'operator' ] = 'is'; |
|
| 559 | 559 | break; |
| 560 | 560 | |
| 561 | 561 | case 'post_category': |
@@ -569,7 +569,7 @@ discard block |
||
| 569 | 569 | |
| 570 | 570 | foreach ( $value as $val ) { |
| 571 | 571 | $cat = get_term( $val, 'category' ); |
| 572 | - $filter[] = array( |
|
| 572 | + $filter[ ] = array( |
|
| 573 | 573 | 'key' => $field_id, |
| 574 | 574 | 'value' => esc_attr( $cat->name ) . ':' . $val, |
| 575 | 575 | 'operator' => 'is', |
@@ -588,18 +588,18 @@ discard block |
||
| 588 | 588 | $filter = array(); |
| 589 | 589 | |
| 590 | 590 | foreach ( $value as $val ) { |
| 591 | - $filter[] = array( 'key' => $field_id, 'value' => $val ); |
|
| 591 | + $filter[ ] = array( 'key' => $field_id, 'value' => $val ); |
|
| 592 | 592 | } |
| 593 | 593 | |
| 594 | 594 | break; |
| 595 | 595 | |
| 596 | 596 | case 'checkbox': |
| 597 | 597 | // convert checkbox on/off into the correct search filter |
| 598 | - if ( false !== strpos( $field_id, '.' ) && ! empty( $form_field['inputs'] ) && ! empty( $form_field['choices'] ) ) { |
|
| 599 | - foreach ( $form_field['inputs'] as $k => $input ) { |
|
| 600 | - if ( $input['id'] == $field_id ) { |
|
| 601 | - $filter['value'] = $form_field['choices'][ $k ]['value']; |
|
| 602 | - $filter['operator'] = 'is'; |
|
| 598 | + if ( false !== strpos( $field_id, '.' ) && ! empty( $form_field[ 'inputs' ] ) && ! empty( $form_field[ 'choices' ] ) ) { |
|
| 599 | + foreach ( $form_field[ 'inputs' ] as $k => $input ) { |
|
| 600 | + if ( $input[ 'id' ] == $field_id ) { |
|
| 601 | + $filter[ 'value' ] = $form_field[ 'choices' ][ $k ][ 'value' ]; |
|
| 602 | + $filter[ 'operator' ] = 'is'; |
|
| 603 | 603 | break; |
| 604 | 604 | } |
| 605 | 605 | } |
@@ -609,7 +609,7 @@ discard block |
||
| 609 | 609 | $filter = array(); |
| 610 | 610 | |
| 611 | 611 | foreach ( $value as $val ) { |
| 612 | - $filter[] = array( |
|
| 612 | + $filter[ ] = array( |
|
| 613 | 613 | 'key' => $field_id, |
| 614 | 614 | 'value' => $val, |
| 615 | 615 | 'operator' => 'is', |
@@ -630,9 +630,9 @@ discard block |
||
| 630 | 630 | foreach ( $words as $word ) { |
| 631 | 631 | if ( ! empty( $word ) && strlen( $word ) > 1 ) { |
| 632 | 632 | // Keep the same key for each filter |
| 633 | - $filter['value'] = $word; |
|
| 633 | + $filter[ 'value' ] = $word; |
|
| 634 | 634 | // Add a search for the value |
| 635 | - $filters[] = $filter; |
|
| 635 | + $filters[ ] = $filter; |
|
| 636 | 636 | } |
| 637 | 637 | } |
| 638 | 638 | |
@@ -659,19 +659,19 @@ discard block |
||
| 659 | 659 | * @since 1.16.3 |
| 660 | 660 | * Safeguard until GF implements '<=' operator |
| 661 | 661 | */ |
| 662 | - if( !GFFormsModel::is_valid_operator( $operator ) && $operator === '<=' ) { |
|
| 662 | + if ( ! GFFormsModel::is_valid_operator( $operator ) && $operator === '<=' ) { |
|
| 663 | 663 | $operator = '<'; |
| 664 | 664 | $date = date( 'Y-m-d', strtotime( $date . ' +1 day' ) ); |
| 665 | 665 | } |
| 666 | 666 | |
| 667 | - $filter[] = array( |
|
| 667 | + $filter[ ] = array( |
|
| 668 | 668 | 'key' => $field_id, |
| 669 | 669 | 'value' => self::get_formatted_date( $date, 'Y-m-d' ), |
| 670 | 670 | 'operator' => $operator, |
| 671 | 671 | ); |
| 672 | 672 | } |
| 673 | 673 | } else { |
| 674 | - $filter['value'] = self::get_formatted_date( $value, 'Y-m-d' ); |
|
| 674 | + $filter[ 'value' ] = self::get_formatted_date( $value, 'Y-m-d' ); |
|
| 675 | 675 | } |
| 676 | 676 | |
| 677 | 677 | break; |
@@ -702,7 +702,7 @@ discard block |
||
| 702 | 702 | 'ymd_dot' => 'Y.m.d', |
| 703 | 703 | ); |
| 704 | 704 | |
| 705 | - if ( ! empty( $field->dateFormat ) && isset( $datepicker[ $field->dateFormat ] ) ){ |
|
| 705 | + if ( ! empty( $field->dateFormat ) && isset( $datepicker[ $field->dateFormat ] ) ) { |
|
| 706 | 706 | $format = $datepicker[ $field->dateFormat ]; |
| 707 | 707 | } |
| 708 | 708 | |
@@ -733,7 +733,7 @@ discard block |
||
| 733 | 733 | public function add_template_path( $file_paths ) { |
| 734 | 734 | |
| 735 | 735 | // Index 100 is the default GravityView template path. |
| 736 | - $file_paths[102] = self::$file . 'templates/'; |
|
| 736 | + $file_paths[ 102 ] = self::$file . 'templates/'; |
|
| 737 | 737 | |
| 738 | 738 | return $file_paths; |
| 739 | 739 | } |
@@ -756,7 +756,7 @@ discard block |
||
| 756 | 756 | } |
| 757 | 757 | |
| 758 | 758 | // get configured search fields |
| 759 | - $search_fields = ! empty( $widget_args['search_fields'] ) ? json_decode( $widget_args['search_fields'], true ) : ''; |
|
| 759 | + $search_fields = ! empty( $widget_args[ 'search_fields' ] ) ? json_decode( $widget_args[ 'search_fields' ], true ) : ''; |
|
| 760 | 760 | |
| 761 | 761 | if ( empty( $search_fields ) || ! is_array( $search_fields ) ) { |
| 762 | 762 | do_action( 'gravityview_log_debug', sprintf( '%s[render_frontend] No search fields configured for widget:', get_class( $this ) ), $widget_args ); |
@@ -770,26 +770,26 @@ discard block |
||
| 770 | 770 | |
| 771 | 771 | $updated_field = $field; |
| 772 | 772 | |
| 773 | - if ( in_array( $field['input'], array( 'date', 'date_range' ) ) ) { |
|
| 773 | + if ( in_array( $field[ 'input' ], array( 'date', 'date_range' ) ) ) { |
|
| 774 | 774 | $has_date = true; |
| 775 | 775 | } |
| 776 | 776 | |
| 777 | 777 | $updated_field = $this->get_search_filter_details( $updated_field ); |
| 778 | 778 | |
| 779 | - error_log("Field:Field = " . print_r($field['field'], true)); |
|
| 779 | + error_log( "Field:Field = " . print_r( $field[ 'field' ], true ) ); |
|
| 780 | 780 | |
| 781 | - switch ( $field['field'] ) { |
|
| 781 | + switch ( $field[ 'field' ] ) { |
|
| 782 | 782 | |
| 783 | 783 | case 'search_all': |
| 784 | - $updated_field['key'] = 'search_all'; |
|
| 785 | - $updated_field['input'] = 'search_all'; |
|
| 786 | - $updated_field['value'] = $this->rgget_or_rgpost( 'gv_search' ); |
|
| 784 | + $updated_field[ 'key' ] = 'search_all'; |
|
| 785 | + $updated_field[ 'input' ] = 'search_all'; |
|
| 786 | + $updated_field[ 'value' ] = $this->rgget_or_rgpost( 'gv_search' ); |
|
| 787 | 787 | break; |
| 788 | 788 | |
| 789 | 789 | case 'entry_date': |
| 790 | - $updated_field['key'] = 'entry_date'; |
|
| 791 | - $updated_field['input'] = 'entry_date'; |
|
| 792 | - $updated_field['value'] = array( |
|
| 790 | + $updated_field[ 'key' ] = 'entry_date'; |
|
| 791 | + $updated_field[ 'input' ] = 'entry_date'; |
|
| 792 | + $updated_field[ 'value' ] = array( |
|
| 793 | 793 | 'start' => $this->rgget_or_rgpost( 'gv_start' ), |
| 794 | 794 | 'end' => $this->rgget_or_rgpost( 'gv_end' ), |
| 795 | 795 | ); |
@@ -797,16 +797,16 @@ discard block |
||
| 797 | 797 | break; |
| 798 | 798 | |
| 799 | 799 | case 'entry_id': |
| 800 | - $updated_field['key'] = 'entry_id'; |
|
| 801 | - $updated_field['input'] = 'entry_id'; |
|
| 802 | - $updated_field['value'] = $this->rgget_or_rgpost( 'gv_id' ); |
|
| 800 | + $updated_field[ 'key' ] = 'entry_id'; |
|
| 801 | + $updated_field[ 'input' ] = 'entry_id'; |
|
| 802 | + $updated_field[ 'value' ] = $this->rgget_or_rgpost( 'gv_id' ); |
|
| 803 | 803 | break; |
| 804 | 804 | |
| 805 | 805 | case 'created_by': |
| 806 | - $updated_field['key'] = 'created_by'; |
|
| 807 | - $updated_field['name'] = 'gv_by'; |
|
| 808 | - $updated_field['value'] = $this->rgget_or_rgpost( 'gv_by' ); |
|
| 809 | - $updated_field['choices'] = self::get_created_by_choices(); |
|
| 806 | + $updated_field[ 'key' ] = 'created_by'; |
|
| 807 | + $updated_field[ 'name' ] = 'gv_by'; |
|
| 808 | + $updated_field[ 'value' ] = $this->rgget_or_rgpost( 'gv_by' ); |
|
| 809 | + $updated_field[ 'choices' ] = self::get_created_by_choices(); |
|
| 810 | 810 | break; |
| 811 | 811 | } |
| 812 | 812 | |
@@ -824,16 +824,16 @@ discard block |
||
| 824 | 824 | */ |
| 825 | 825 | $gravityview_view->search_fields = apply_filters( 'gravityview_widget_search_filters', $search_fields, $this, $widget_args ); |
| 826 | 826 | |
| 827 | - $gravityview_view->search_layout = ! empty( $widget_args['search_layout'] ) ? $widget_args['search_layout'] : 'horizontal'; |
|
| 827 | + $gravityview_view->search_layout = ! empty( $widget_args[ 'search_layout' ] ) ? $widget_args[ 'search_layout' ] : 'horizontal'; |
|
| 828 | 828 | |
| 829 | 829 | /** @since 1.14 */ |
| 830 | - $gravityview_view->search_mode = ! empty( $widget_args['search_mode'] ) ? $widget_args['search_mode'] : 'any'; |
|
| 830 | + $gravityview_view->search_mode = ! empty( $widget_args[ 'search_mode' ] ) ? $widget_args[ 'search_mode' ] : 'any'; |
|
| 831 | 831 | |
| 832 | - $custom_class = ! empty( $widget_args['custom_class'] ) ? $widget_args['custom_class'] : ''; |
|
| 832 | + $custom_class = ! empty( $widget_args[ 'custom_class' ] ) ? $widget_args[ 'custom_class' ] : ''; |
|
| 833 | 833 | |
| 834 | 834 | $gravityview_view->search_class = self::get_search_class( $custom_class ); |
| 835 | 835 | |
| 836 | - $gravityview_view->search_clear = ! empty( $widget_args['search_clear'] ) ? $widget_args['search_clear'] : false; |
|
| 836 | + $gravityview_view->search_clear = ! empty( $widget_args[ 'search_clear' ] ) ? $widget_args[ 'search_clear' ] : false; |
|
| 837 | 837 | |
| 838 | 838 | if ( $has_date ) { |
| 839 | 839 | // enqueue datepicker stuff only if needed! |
@@ -855,10 +855,10 @@ discard block |
||
| 855 | 855 | public static function get_search_class( $custom_class = '' ) { |
| 856 | 856 | $gravityview_view = GravityView_View::getInstance(); |
| 857 | 857 | |
| 858 | - $search_class = 'gv-search-'.$gravityview_view->search_layout; |
|
| 858 | + $search_class = 'gv-search-' . $gravityview_view->search_layout; |
|
| 859 | 859 | |
| 860 | - if ( ! empty( $custom_class ) ) { |
|
| 861 | - $search_class .= ' '.$custom_class; |
|
| 860 | + if ( ! empty( $custom_class ) ) { |
|
| 861 | + $search_class .= ' ' . $custom_class; |
|
| 862 | 862 | } |
| 863 | 863 | |
| 864 | 864 | /** |
@@ -900,11 +900,11 @@ discard block |
||
| 900 | 900 | |
| 901 | 901 | $label = rgget( 'label', $field ); |
| 902 | 902 | |
| 903 | - if( '' === $label ) { |
|
| 903 | + if ( '' === $label ) { |
|
| 904 | 904 | |
| 905 | - $label = isset( $form_field['label'] ) ? $form_field['label'] : ''; |
|
| 905 | + $label = isset( $form_field[ 'label' ] ) ? $form_field[ 'label' ] : ''; |
|
| 906 | 906 | |
| 907 | - switch( $field['field'] ) { |
|
| 907 | + switch ( $field[ 'field' ] ) { |
|
| 908 | 908 | case 'search_all': |
| 909 | 909 | $label = __( 'Search Entries:', 'gravityview' ); |
| 910 | 910 | break; |
@@ -916,10 +916,10 @@ discard block |
||
| 916 | 916 | break; |
| 917 | 917 | default: |
| 918 | 918 | // If this is a field input, not a field |
| 919 | - if ( strpos( $field['field'], '.' ) > 0 && ! empty( $form_field['inputs'] ) ) { |
|
| 919 | + if ( strpos( $field[ 'field' ], '.' ) > 0 && ! empty( $form_field[ 'inputs' ] ) ) { |
|
| 920 | 920 | |
| 921 | 921 | // Get the label for the field in question, which returns an array |
| 922 | - $items = wp_list_filter( $form_field['inputs'], array( 'id' => $field['field'] ) ); |
|
| 922 | + $items = wp_list_filter( $form_field[ 'inputs' ], array( 'id' => $field[ 'field' ] ) ); |
|
| 923 | 923 | |
| 924 | 924 | // Get the item with the `label` key |
| 925 | 925 | $values = wp_list_pluck( $items, 'label' ); |
@@ -958,32 +958,32 @@ discard block |
||
| 958 | 958 | $form = $gravityview_view->getForm(); |
| 959 | 959 | |
| 960 | 960 | // for advanced field ids (eg, first name / last name ) |
| 961 | - $name = 'filter_' . str_replace( '.', '_', $field['field'] ); |
|
| 961 | + $name = 'filter_' . str_replace( '.', '_', $field[ 'field' ] ); |
|
| 962 | 962 | |
| 963 | 963 | // get searched value from $_GET/$_POST (string or array) |
| 964 | 964 | $value = $this->rgget_or_rgpost( $name ); |
| 965 | 965 | |
| 966 | 966 | // get form field details |
| 967 | - $form_field = gravityview_get_field( $form, $field['field'] ); |
|
| 967 | + $form_field = gravityview_get_field( $form, $field[ 'field' ] ); |
|
| 968 | 968 | |
| 969 | 969 | $filter = array( |
| 970 | - 'key' => $field['field'], |
|
| 970 | + 'key' => $field[ 'field' ], |
|
| 971 | 971 | 'name' => $name, |
| 972 | 972 | 'label' => self::get_field_label( $field, $form_field ), |
| 973 | - 'input' => $field['input'], |
|
| 973 | + 'input' => $field[ 'input' ], |
|
| 974 | 974 | 'value' => $value, |
| 975 | - 'type' => $form_field['type'], |
|
| 975 | + 'type' => $form_field[ 'type' ], |
|
| 976 | 976 | ); |
| 977 | 977 | |
| 978 | 978 | // collect choices |
| 979 | - if ( 'post_category' === $form_field['type'] && ! empty( $form_field['displayAllCategories'] ) && empty( $form_field['choices'] ) ) { |
|
| 980 | - $filter['choices'] = gravityview_get_terms_choices(); |
|
| 981 | - } elseif ( ! empty( $form_field['choices'] ) ) { |
|
| 982 | - $filter['choices'] = $form_field['choices']; |
|
| 979 | + if ( 'post_category' === $form_field[ 'type' ] && ! empty( $form_field[ 'displayAllCategories' ] ) && empty( $form_field[ 'choices' ] ) ) { |
|
| 980 | + $filter[ 'choices' ] = gravityview_get_terms_choices(); |
|
| 981 | + } elseif ( ! empty( $form_field[ 'choices' ] ) ) { |
|
| 982 | + $filter[ 'choices' ] = $form_field[ 'choices' ]; |
|
| 983 | 983 | } |
| 984 | 984 | |
| 985 | - if ( 'date_range' === $field['input'] && empty( $value ) ) { |
|
| 986 | - $filter['value'] = array( 'start' => '', 'end' => '' ); |
|
| 985 | + if ( 'date_range' === $field[ 'input' ] && empty( $value ) ) { |
|
| 986 | + $filter[ 'value' ] = array( 'start' => '', 'end' => '' ); |
|
| 987 | 987 | } |
| 988 | 988 | |
| 989 | 989 | return $filter; |
@@ -1007,7 +1007,7 @@ discard block |
||
| 1007 | 1007 | |
| 1008 | 1008 | $choices = array(); |
| 1009 | 1009 | foreach ( $users as $user ) { |
| 1010 | - $choices[] = array( |
|
| 1010 | + $choices[ ] = array( |
|
| 1011 | 1011 | 'value' => $user->ID, |
| 1012 | 1012 | 'text' => $user->display_name, |
| 1013 | 1013 | ); |
@@ -1062,7 +1062,7 @@ discard block |
||
| 1062 | 1062 | */ |
| 1063 | 1063 | public function add_datepicker_js_dependency( $js_dependencies ) { |
| 1064 | 1064 | |
| 1065 | - $js_dependencies[] = 'jquery-ui-datepicker'; |
|
| 1065 | + $js_dependencies[ ] = 'jquery-ui-datepicker'; |
|
| 1066 | 1066 | |
| 1067 | 1067 | return $js_dependencies; |
| 1068 | 1068 | } |
@@ -1106,7 +1106,7 @@ discard block |
||
| 1106 | 1106 | 'isRTL' => is_rtl(), |
| 1107 | 1107 | ), $view_data ); |
| 1108 | 1108 | |
| 1109 | - $localizations['datepicker'] = $datepicker_settings; |
|
| 1109 | + $localizations[ 'datepicker' ] = $datepicker_settings; |
|
| 1110 | 1110 | |
| 1111 | 1111 | return $localizations; |
| 1112 | 1112 | |
@@ -1135,7 +1135,7 @@ discard block |
||
| 1135 | 1135 | * @return void |
| 1136 | 1136 | */ |
| 1137 | 1137 | private function maybe_enqueue_flexibility() { |
| 1138 | - if ( isset( $_SERVER['HTTP_USER_AGENT'] ) && preg_match( '/MSIE [8-9]/', $_SERVER['HTTP_USER_AGENT'] ) ) { |
|
| 1138 | + if ( isset( $_SERVER[ 'HTTP_USER_AGENT' ] ) && preg_match( '/MSIE [8-9]/', $_SERVER[ 'HTTP_USER_AGENT' ] ) ) { |
|
| 1139 | 1139 | wp_enqueue_script( 'gv-flexibility' ); |
| 1140 | 1140 | } |
| 1141 | 1141 | } |
@@ -1157,7 +1157,7 @@ discard block |
||
| 1157 | 1157 | add_filter( 'gravityview_js_localization', array( $this, 'add_datepicker_localization' ), 10, 2 ); |
| 1158 | 1158 | |
| 1159 | 1159 | $scheme = is_ssl() ? 'https://' : 'http://'; |
| 1160 | - wp_enqueue_style( 'jquery-ui-datepicker', $scheme.'ajax.googleapis.com/ajax/libs/jqueryui/1.8.18/themes/smoothness/jquery-ui.css' ); |
|
| 1160 | + wp_enqueue_style( 'jquery-ui-datepicker', $scheme . 'ajax.googleapis.com/ajax/libs/jqueryui/1.8.18/themes/smoothness/jquery-ui.css' ); |
|
| 1161 | 1161 | |
| 1162 | 1162 | /** |
| 1163 | 1163 | * @filter `gravityview_search_datepicker_class` |
@@ -33,7 +33,7 @@ discard block |
||
| 33 | 33 | |
| 34 | 34 | parent::add_hooks(); |
| 35 | 35 | |
| 36 | - add_filter( 'gravityview/search/searchable_fields', array( $this, 'modify_search_bar_fields_dropdown'), 10, 2 ); |
|
| 36 | + add_filter( 'gravityview/search/searchable_fields', array( $this, 'modify_search_bar_fields_dropdown' ), 10, 2 ); |
|
| 37 | 37 | |
| 38 | 38 | } |
| 39 | 39 | |
@@ -52,13 +52,13 @@ discard block |
||
| 52 | 52 | */ |
| 53 | 53 | public static function get_status_options( $form_id = 0, $status_key = 'workflow_final_status' ) { |
| 54 | 54 | |
| 55 | - if( empty( $form_id ) ) { |
|
| 55 | + if ( empty( $form_id ) ) { |
|
| 56 | 56 | $form_id = GravityView_View::getInstance()->getFormId(); |
| 57 | 57 | } |
| 58 | 58 | |
| 59 | 59 | $entry_meta = gravity_flow()->get_entry_meta( array(), $form_id ); |
| 60 | 60 | |
| 61 | - return (array) rgars( $entry_meta, $status_key . '/filter/choices' ); |
|
| 61 | + return (array)rgars( $entry_meta, $status_key . '/filter/choices' ); |
|
| 62 | 62 | } |
| 63 | 63 | |
| 64 | 64 | |
@@ -80,7 +80,7 @@ discard block |
||
| 80 | 80 | |
| 81 | 81 | $workflow_steps = $GFlow->get_steps(); |
| 82 | 82 | |
| 83 | - if( $workflow_steps ) { |
|
| 83 | + if ( $workflow_steps ) { |
|
| 84 | 84 | |
| 85 | 85 | foreach ( $workflow_steps as $step ) { |
| 86 | 86 | |
@@ -92,12 +92,12 @@ discard block |
||
| 92 | 92 | ); |
| 93 | 93 | } |
| 94 | 94 | |
| 95 | - $fields['workflow_step'] = array( |
|
| 95 | + $fields[ 'workflow_step' ] = array( |
|
| 96 | 96 | 'label' => esc_html__( 'Workflow Step', 'gravityview' ), |
| 97 | 97 | 'type' => 'select', |
| 98 | 98 | ); |
| 99 | 99 | |
| 100 | - $fields['workflow_final_status'] = array( |
|
| 100 | + $fields[ 'workflow_final_status' ] = array( |
|
| 101 | 101 | 'label' => esc_html__( 'Workflow Status', 'gravityview' ), |
| 102 | 102 | 'type' => 'select', |
| 103 | 103 | ); |
@@ -45,7 +45,7 @@ discard block |
||
| 45 | 45 | |
| 46 | 46 | $return = $input_type; |
| 47 | 47 | |
| 48 | - if( 'survey' === $field_type ) { |
|
| 48 | + if ( 'survey' === $field_type ) { |
|
| 49 | 49 | $return = 'select'; |
| 50 | 50 | } |
| 51 | 51 | |
@@ -65,8 +65,8 @@ discard block |
||
| 65 | 65 | public function fix_survey_fields( $fields ) { |
| 66 | 66 | |
| 67 | 67 | /** @var GF_Field $field */ |
| 68 | - foreach( $fields as &$field ) { |
|
| 69 | - if( 'survey' === $field->type ) { |
|
| 68 | + foreach ( $fields as &$field ) { |
|
| 69 | + if ( 'survey' === $field->type ) { |
|
| 70 | 70 | $field->allowsPrepopulate = true; |
| 71 | 71 | } |
| 72 | 72 | } |
@@ -82,7 +82,7 @@ discard block |
||
| 82 | 82 | * @return void |
| 83 | 83 | */ |
| 84 | 84 | function add_render_hooks() { |
| 85 | - add_filter( 'gform_field_value', array( $this, 'fix_survey_field_value'), 10, 3 ); |
|
| 85 | + add_filter( 'gform_field_value', array( $this, 'fix_survey_field_value' ), 10, 3 ); |
|
| 86 | 86 | } |
| 87 | 87 | |
| 88 | 88 | /** |
@@ -95,7 +95,7 @@ discard block |
||
| 95 | 95 | * @return void |
| 96 | 96 | */ |
| 97 | 97 | function remove_render_hooks() { |
| 98 | - remove_filter( 'gform_field_value', array( $this, 'fix_survey_field_value'), 10 ); |
|
| 98 | + remove_filter( 'gform_field_value', array( $this, 'fix_survey_field_value' ), 10 ); |
|
| 99 | 99 | } |
| 100 | 100 | |
| 101 | 101 | /** |
@@ -113,9 +113,9 @@ discard block |
||
| 113 | 113 | */ |
| 114 | 114 | public function fix_survey_field_value( $value, $field, $name ) { |
| 115 | 115 | |
| 116 | - if( 'survey' === $field->type ) { |
|
| 116 | + if ( 'survey' === $field->type ) { |
|
| 117 | 117 | |
| 118 | - $entry = GravityView_Edit_Entry::getInstance()->instances['render']->get_entry(); |
|
| 118 | + $entry = GravityView_Edit_Entry::getInstance()->instances[ 'render' ]->get_entry(); |
|
| 119 | 119 | |
| 120 | 120 | // We need to run through each survey row until we find a match for expected values |
| 121 | 121 | foreach ( $entry as $field_id => $field_value ) { |
@@ -124,11 +124,11 @@ discard block |
||
| 124 | 124 | continue; |
| 125 | 125 | } |
| 126 | 126 | |
| 127 | - if( rgar( $field, 'gsurveyLikertEnableMultipleRows' ) ) { |
|
| 127 | + if ( rgar( $field, 'gsurveyLikertEnableMultipleRows' ) ) { |
|
| 128 | 128 | list( $row_val, $col_val ) = explode( ':', $field_value, 2 ); |
| 129 | 129 | |
| 130 | 130 | // If the $name matches the $row_val, we are processing the correct row |
| 131 | - if( $row_val === $name ) { |
|
| 131 | + if ( $row_val === $name ) { |
|
| 132 | 132 | $value = $field_value; |
| 133 | 133 | break; |
| 134 | 134 | } |