@@ -21,9 +21,9 @@ discard block |
||
21 | 21 | */ |
22 | 22 | function __construct() { |
23 | 23 | |
24 | - $this->widget_description = __('Displays the results of Poll Fields that exist in the form.', 'gravityview' ); |
|
24 | + $this->widget_description = __( 'Displays the results of Poll Fields that exist in the form.', 'gravityview' ); |
|
25 | 25 | |
26 | - $this->widget_subtitle = sprintf( _x('Note: this will display poll results for %sall form entries%s, not only the entries displayed in the View.', 'The string placeholders are for emphasis HTML', 'gravityview' ), '<em>', '</em>' ); |
|
26 | + $this->widget_subtitle = sprintf( _x( 'Note: this will display poll results for %sall form entries%s, not only the entries displayed in the View.', 'The string placeholders are for emphasis HTML', 'gravityview' ), '<em>', '</em>' ); |
|
27 | 27 | |
28 | 28 | $default_values = array( |
29 | 29 | 'header' => 1, |
@@ -32,32 +32,32 @@ discard block |
||
32 | 32 | |
33 | 33 | $settings = array( |
34 | 34 | 'percentages' => array( |
35 | - 'label' => __('Display Percentages', 'gravityview'), |
|
35 | + 'label' => __( 'Display Percentages', 'gravityview' ), |
|
36 | 36 | 'type' => 'checkbox', |
37 | 37 | 'value' => true, |
38 | 38 | 'tooltip' => __( 'Display results percentages as part of results? Supported values are: true, false. Defaults to "true".', 'gravityview' ), |
39 | 39 | ), |
40 | 40 | 'counts' => array( |
41 | - 'label' => __('Display Counts', 'gravityview'), |
|
41 | + 'label' => __( 'Display Counts', 'gravityview' ), |
|
42 | 42 | 'type' => 'checkbox', |
43 | 43 | 'value' => true, |
44 | 44 | 'tooltip' => __( 'Display number of times each choice has been selected when displaying results? Supported values are: true, false. Defaults to "true".', 'gravityview' ), |
45 | 45 | ), |
46 | 46 | 'style' => array( |
47 | 47 | 'type' => 'select', |
48 | - 'label' => __('Style', 'gravityview'), |
|
48 | + 'label' => __( 'Style', 'gravityview' ), |
|
49 | 49 | 'tooltip' => __( 'The Polls Add-On currently supports 4 built in styles: red, green, orange, blue. Defaults to "green".', 'gravityview' ), |
50 | 50 | 'value' => 'green', |
51 | 51 | 'choices' => array( |
52 | - 'green' => __('Green', 'gravityview'), |
|
53 | - 'blue' => __('Blue', 'gravityview'), |
|
54 | - 'red' => __('Red', 'gravityview'), |
|
55 | - 'orange' => __('Orange', 'gravityview'), |
|
52 | + 'green' => __( 'Green', 'gravityview' ), |
|
53 | + 'blue' => __( 'Blue', 'gravityview' ), |
|
54 | + 'red' => __( 'Red', 'gravityview' ), |
|
55 | + 'orange' => __( 'Orange', 'gravityview' ), |
|
56 | 56 | ) |
57 | 57 | ) |
58 | 58 | ); |
59 | 59 | |
60 | - parent::__construct( __( 'Poll Results', 'gravityview' ) , 'poll', $default_values, $settings ); |
|
60 | + parent::__construct( __( 'Poll Results', 'gravityview' ), 'poll', $default_values, $settings ); |
|
61 | 61 | |
62 | 62 | // frontend - add template path |
63 | 63 | add_filter( 'gravityview_template_paths', array( $this, 'add_template_path' ) ); |
@@ -88,11 +88,11 @@ discard block |
||
88 | 88 | |
89 | 89 | $GFPolls = GFPolls::get_instance(); |
90 | 90 | |
91 | - wp_enqueue_script('gpoll_js', $GFPolls->get_base_url() . '/js/gpoll.js', array('jquery'), $GFPolls->_version); |
|
91 | + wp_enqueue_script( 'gpoll_js', $GFPolls->get_base_url() . '/js/gpoll.js', array( 'jquery' ), $GFPolls->_version ); |
|
92 | 92 | |
93 | 93 | $GFPolls->localize_scripts(); |
94 | 94 | |
95 | - wp_enqueue_style('gpoll_css', $GFPolls->get_base_url() . '/css/gpoll.css', null, $GFPolls->_version); |
|
95 | + wp_enqueue_style( 'gpoll_css', $GFPolls->get_base_url() . '/css/gpoll.css', null, $GFPolls->_version ); |
|
96 | 96 | } |
97 | 97 | |
98 | 98 | /** |
@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | */ |
103 | 103 | public function pre_render_frontend() { |
104 | 104 | |
105 | - if( !class_exists('GFPolls') ) { |
|
105 | + if ( ! class_exists( 'GFPolls' ) ) { |
|
106 | 106 | |
107 | 107 | $return = false; |
108 | 108 | |
@@ -158,14 +158,14 @@ discard block |
||
158 | 158 | * |
159 | 159 | * @since 1.8 |
160 | 160 | */ |
161 | - public function render_frontend( $widget_args, $content = '', $context = '') { |
|
161 | + public function render_frontend( $widget_args, $content = '', $context = '' ) { |
|
162 | 162 | |
163 | - if( !$this->pre_render_frontend() ) { |
|
163 | + if ( ! $this->pre_render_frontend() ) { |
|
164 | 164 | return; |
165 | 165 | } |
166 | 166 | |
167 | 167 | // Make sure the class is loaded in DataTables |
168 | - if( !class_exists( 'GFFormDisplay' ) ) { |
|
168 | + if ( ! class_exists( 'GFFormDisplay' ) ) { |
|
169 | 169 | include_once( GFCommon::get_base_path() . '/form_display.php' ); |
170 | 170 | } |
171 | 171 | |
@@ -173,14 +173,14 @@ discard block |
||
173 | 173 | |
174 | 174 | $settings = $this->get_frontend_settings( $widget_args ); |
175 | 175 | |
176 | - $percentages = empty( $settings['percentages'] ) ? 'false' : 'true'; |
|
176 | + $percentages = empty( $settings[ 'percentages' ] ) ? 'false' : 'true'; |
|
177 | 177 | |
178 | - $counts = empty( $settings['counts'] ) ? 'false' : 'true'; |
|
178 | + $counts = empty( $settings[ 'counts' ] ) ? 'false' : 'true'; |
|
179 | 179 | |
180 | - if( !empty( $settings['field'] ) ) { |
|
181 | - $merge_tag = sprintf( '{gpoll: field="%d" style="%s" percentages="%s" counts="%s"}', $settings['field'], $settings['style'], $percentages, $counts ); |
|
180 | + if ( ! empty( $settings[ 'field' ] ) ) { |
|
181 | + $merge_tag = sprintf( '{gpoll: field="%d" style="%s" percentages="%s" counts="%s"}', $settings[ 'field' ], $settings[ 'style' ], $percentages, $counts ); |
|
182 | 182 | } else { |
183 | - $merge_tag = sprintf( '{all_poll_results: style="%s" percentages="%s" counts="%s"}', $settings['style'], $percentages, $counts ); |
|
183 | + $merge_tag = sprintf( '{all_poll_results: style="%s" percentages="%s" counts="%s"}', $settings[ 'style' ], $percentages, $counts ); |
|
184 | 184 | } |
185 | 185 | |
186 | 186 | $gravityview_view = GravityView_View::getInstance(); |
@@ -189,7 +189,7 @@ discard block |
||
189 | 189 | |
190 | 190 | $gravityview_view->poll_settings = $settings; |
191 | 191 | |
192 | - $gravityview_view->render('widget', 'poll', false ); |
|
192 | + $gravityview_view->render( 'widget', 'poll', false ); |
|
193 | 193 | |
194 | 194 | } |
195 | 195 |
@@ -10,22 +10,22 @@ |
||
10 | 10 | $search_field = $gravityview_view->search_field; |
11 | 11 | |
12 | 12 | // Make sure that there are choices to display |
13 | -if( empty( $search_field['choices'] ) ) { |
|
14 | - do_action('gravityview_log_debug', 'search-field-checkbox.php - No choices for field' ); |
|
13 | +if ( empty( $search_field[ 'choices' ] ) ) { |
|
14 | + do_action( 'gravityview_log_debug', 'search-field-checkbox.php - No choices for field' ); |
|
15 | 15 | return; |
16 | 16 | } |
17 | 17 | |
18 | 18 | ?> |
19 | 19 | <div class="gv-search-box"> |
20 | - <?php if( ! gv_empty( $search_field['label'], false ) ) { ?> |
|
21 | - <label for=search-box-<?php echo esc_attr( $search_field['name'] ); ?>><?php echo esc_html( $search_field['label'] ); ?></label> |
|
20 | + <?php if ( ! gv_empty( $search_field[ 'label' ], false ) ) { ?> |
|
21 | + <label for=search-box-<?php echo esc_attr( $search_field[ 'name' ] ); ?>><?php echo esc_html( $search_field[ 'label' ] ); ?></label> |
|
22 | 22 | <?php } ?> |
23 | 23 | <p> |
24 | - <?php foreach( $search_field['choices'] as $choice ) { ?> |
|
24 | + <?php foreach ( $search_field[ 'choices' ] as $choice ) { ?> |
|
25 | 25 | |
26 | - <label for="search-box-<?php echo sanitize_html_class( $search_field['name'].$choice['value'].$choice['text'] ); ?>" class="gv-check-radio"> |
|
27 | - <input type="checkbox" name="<?php echo esc_attr( $search_field['name'] ); ?>[]" value="<?php echo esc_attr( $choice['value'] ); ?>" id="search-box-<?php echo sanitize_html_class( $search_field['name'].$choice['value'].$choice['text'] ); ?>" <?php gv_selected( $choice['value'], $search_field['value'], true, 'checked' ); ?>> |
|
28 | - <?php echo esc_html( $choice['text'] ); ?> |
|
26 | + <label for="search-box-<?php echo sanitize_html_class( $search_field[ 'name' ] . $choice[ 'value' ] . $choice[ 'text' ] ); ?>" class="gv-check-radio"> |
|
27 | + <input type="checkbox" name="<?php echo esc_attr( $search_field[ 'name' ] ); ?>[]" value="<?php echo esc_attr( $choice[ 'value' ] ); ?>" id="search-box-<?php echo sanitize_html_class( $search_field[ 'name' ] . $choice[ 'value' ] . $choice[ 'text' ] ); ?>" <?php gv_selected( $choice[ 'value' ], $search_field[ 'value' ], true, 'checked' ); ?>> |
|
28 | + <?php echo esc_html( $choice[ 'text' ] ); ?> |
|
29 | 29 | </label> |
30 | 30 | |
31 | 31 | <?php } ?> |
@@ -7,17 +7,17 @@ |
||
7 | 7 | |
8 | 8 | $gravityview_view = GravityView_View::getInstance(); |
9 | 9 | $view_id = $gravityview_view->getViewId(); |
10 | -$value = $gravityview_view->search_field['value']; |
|
11 | -$label = $gravityview_view->search_field['label']; |
|
10 | +$value = $gravityview_view->search_field[ 'value' ]; |
|
11 | +$label = $gravityview_view->search_field[ 'label' ]; |
|
12 | 12 | |
13 | 13 | ?> |
14 | 14 | |
15 | 15 | <div class="gv-search-box gv-search-date"> |
16 | - <?php if( ! gv_empty( $label, false ) ) { ?> |
|
16 | + <?php if ( ! gv_empty( $label, false ) ) { ?> |
|
17 | 17 | <label for="gv_start_date_<?php echo $view_id; ?>"><?php echo esc_html( $label ); ?></label> |
18 | 18 | <?php } ?> |
19 | 19 | <p> |
20 | - <input name="gv_start" id="gv_start_date_<?php echo $view_id; ?>" type="text" class="<?php echo esc_html( $gravityview_view->datepicker_class ); ?>" placeholder="<?php esc_attr_e('Start date', 'gravityview' ); ?>" value="<?php echo $value['start']; ?>"> |
|
21 | - <input name="gv_end" id="gv_end_date_<?php echo $view_id; ?>" type="text" class="<?php echo esc_html( $gravityview_view->datepicker_class ); ?>" placeholder="<?php esc_attr_e('End date', 'gravityview' ); ?>" value="<?php echo $value['end']; ?>"> |
|
20 | + <input name="gv_start" id="gv_start_date_<?php echo $view_id; ?>" type="text" class="<?php echo esc_html( $gravityview_view->datepicker_class ); ?>" placeholder="<?php esc_attr_e( 'Start date', 'gravityview' ); ?>" value="<?php echo $value[ 'start' ]; ?>"> |
|
21 | + <input name="gv_end" id="gv_end_date_<?php echo $view_id; ?>" type="text" class="<?php echo esc_html( $gravityview_view->datepicker_class ); ?>" placeholder="<?php esc_attr_e( 'End date', 'gravityview' ); ?>" value="<?php echo $value[ 'end' ]; ?>"> |
|
22 | 22 | </p> |
23 | 23 | </div> |
24 | 24 | \ No newline at end of file |
@@ -10,22 +10,22 @@ |
||
10 | 10 | $search_field = $gravityview_view->search_field; |
11 | 11 | |
12 | 12 | // Make sure that there are choices to display |
13 | -if( empty( $search_field['choices'] ) ) { |
|
14 | - do_action('gravityview_log_debug', 'search-field-radio.php - No choices for field' ); |
|
13 | +if ( empty( $search_field[ 'choices' ] ) ) { |
|
14 | + do_action( 'gravityview_log_debug', 'search-field-radio.php - No choices for field' ); |
|
15 | 15 | return; |
16 | 16 | } |
17 | 17 | |
18 | 18 | ?> |
19 | 19 | <div class="gv-search-box"> |
20 | - <?php if( ! gv_empty( $search_field['label'], false ) ) { ?> |
|
21 | - <label for=search-box-<?php echo esc_attr( $search_field['name'] ); ?>><?php echo esc_html( $search_field['label'] ); ?></label> |
|
20 | + <?php if ( ! gv_empty( $search_field[ 'label' ], false ) ) { ?> |
|
21 | + <label for=search-box-<?php echo esc_attr( $search_field[ 'name' ] ); ?>><?php echo esc_html( $search_field[ 'label' ] ); ?></label> |
|
22 | 22 | <?php } ?> |
23 | 23 | <p> |
24 | - <?php foreach( $search_field['choices'] as $choice ) { ?> |
|
24 | + <?php foreach ( $search_field[ 'choices' ] as $choice ) { ?> |
|
25 | 25 | |
26 | - <label for="search-box-<?php echo sanitize_html_class( $search_field['name'].$choice['value'].$choice['text'] ); ?>" class="gv-check-radio"> |
|
27 | - <input type="radio" name="<?php echo esc_attr( $search_field['name'] ); ?>" value="<?php echo esc_attr( $choice['value'] ); ?>" id="search-box-<?php echo sanitize_html_class( $search_field['name'].$choice['value'].$choice['text'] ); ?>" <?php checked( $choice['value'], $search_field['value'], true ); ?>> |
|
28 | - <?php echo esc_html( $choice['text'] ); ?> |
|
26 | + <label for="search-box-<?php echo sanitize_html_class( $search_field[ 'name' ] . $choice[ 'value' ] . $choice[ 'text' ] ); ?>" class="gv-check-radio"> |
|
27 | + <input type="radio" name="<?php echo esc_attr( $search_field[ 'name' ] ); ?>" value="<?php echo esc_attr( $choice[ 'value' ] ); ?>" id="search-box-<?php echo sanitize_html_class( $search_field[ 'name' ] . $choice[ 'value' ] . $choice[ 'text' ] ); ?>" <?php checked( $choice[ 'value' ], $search_field[ 'value' ], true ); ?>> |
|
28 | + <?php echo esc_html( $choice[ 'text' ] ); ?> |
|
29 | 29 | </label> |
30 | 30 | |
31 | 31 | <?php } ?> |
@@ -12,8 +12,8 @@ |
||
12 | 12 | ?> |
13 | 13 | |
14 | 14 | <div class="gv-search-box"> |
15 | - <label for="search-box-<?php echo esc_attr( $search_field['name'] ); ?>" class="gv-check-radio"> |
|
16 | - <input type="checkbox" name="<?php echo esc_attr( $search_field['name'] ); ?>" value="1" id="search-box-<?php echo esc_attr( $search_field['name'] ); ?>" <?php checked( '1', $search_field['value'], true ); ?>> |
|
17 | - <?php if( ! gv_empty( $search_field['label'], false ) ) { echo esc_html( $search_field['label'] ); } ?> |
|
15 | + <label for="search-box-<?php echo esc_attr( $search_field[ 'name' ] ); ?>" class="gv-check-radio"> |
|
16 | + <input type="checkbox" name="<?php echo esc_attr( $search_field[ 'name' ] ); ?>" value="1" id="search-box-<?php echo esc_attr( $search_field[ 'name' ] ); ?>" <?php checked( '1', $search_field[ 'value' ], true ); ?>> |
|
17 | + <?php if ( ! gv_empty( $search_field[ 'label' ], false ) ) { echo esc_html( $search_field[ 'label' ] ); } ?> |
|
18 | 18 | </label> |
19 | 19 | </div> |
20 | 20 | \ No newline at end of file |
@@ -23,12 +23,12 @@ discard block |
||
23 | 23 | */ |
24 | 24 | do_action( 'gravityview_search_widget_fields_before', $this ); |
25 | 25 | |
26 | - foreach( $this->search_fields as $search_field ) { |
|
26 | + foreach ( $this->search_fields as $search_field ) { |
|
27 | 27 | $gravityview_view->search_field = $search_field; |
28 | - $this->render( 'search-field', $search_field['input'], false ); |
|
28 | + $this->render( 'search-field', $search_field[ 'input' ], false ); |
|
29 | 29 | |
30 | 30 | // show/hide the search button if there are input type fields |
31 | - if( !$has_inputs && $search_field['input'] != 'link' ) { |
|
31 | + if ( ! $has_inputs && $search_field[ 'input' ] != 'link' ) { |
|
32 | 32 | $has_inputs = true; |
33 | 33 | } |
34 | 34 | } |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | */ |
40 | 40 | do_action( 'gravityview_search_widget_fields_after', $this ); |
41 | 41 | |
42 | - if( $has_inputs ) { ?> |
|
42 | + if ( $has_inputs ) { ?> |
|
43 | 43 | <div class="gv-search-box gv-search-box-submit"> |
44 | 44 | <?php |
45 | 45 |
@@ -622,7 +622,7 @@ |
||
622 | 622 | 'ymd_dot' => 'Y.m.d', |
623 | 623 | ); |
624 | 624 | |
625 | - if ( ! empty( $field->dateFormat ) && isset( $datepicker[ $field->dateFormat ] ) ){ |
|
625 | + if ( ! empty( $field->dateFormat ) && isset( $datepicker[ $field->dateFormat ] ) ) { |
|
626 | 626 | $format = $datepicker[ $field->dateFormat ]; |
627 | 627 | } |
628 | 628 |
@@ -386,14 +386,14 @@ |
||
386 | 386 | $curr_start = esc_attr( rgget( 'gv_start' ) ); |
387 | 387 | $curr_end = esc_attr( rgget( 'gv_end' ) ); |
388 | 388 | |
389 | - /** |
|
390 | - * @filter `gravityview_date_created_adjust_timezone` Whether to adjust the timezone for entries. \n |
|
391 | - * date_created is stored in UTC format. Convert search date into UTC (also used on templates/fields/date_created.php) |
|
392 | - * @since 1.12 |
|
393 | - * @param[out,in] boolean $adjust_tz Use timezone-adjusted datetime? If true, adjusts date based on blog's timezone setting. If false, uses UTC setting. Default: true |
|
394 | - * @param[in] string $context Where the filter is being called from. `search` in this case. |
|
395 | - */ |
|
396 | - $adjust_tz = apply_filters( 'gravityview_date_created_adjust_timezone', true, 'search' ); |
|
389 | + /** |
|
390 | + * @filter `gravityview_date_created_adjust_timezone` Whether to adjust the timezone for entries. \n |
|
391 | + * date_created is stored in UTC format. Convert search date into UTC (also used on templates/fields/date_created.php) |
|
392 | + * @since 1.12 |
|
393 | + * @param[out,in] boolean $adjust_tz Use timezone-adjusted datetime? If true, adjusts date based on blog's timezone setting. If false, uses UTC setting. Default: true |
|
394 | + * @param[in] string $context Where the filter is being called from. `search` in this case. |
|
395 | + */ |
|
396 | + $adjust_tz = apply_filters( 'gravityview_date_created_adjust_timezone', true, 'search' ); |
|
397 | 397 | |
398 | 398 | |
399 | 399 | /** |
@@ -163,7 +163,7 @@ discard block |
||
163 | 163 | /** |
164 | 164 | * Add admin script to the no-conflict scripts whitelist |
165 | 165 | * @param array $allowed Scripts allowed in no-conflict mode |
166 | - * @return array Scripts allowed in no-conflict mode, plus the search widget script |
|
166 | + * @return string[] Scripts allowed in no-conflict mode, plus the search widget script |
|
167 | 167 | */ |
168 | 168 | public function register_no_conflict( $allowed ) { |
169 | 169 | $allowed[] = 'gravityview_searchwidget_admin'; |
@@ -977,7 +977,7 @@ discard block |
||
977 | 977 | /** |
978 | 978 | * Require the datepicker script for the frontend GV script |
979 | 979 | * @param array $js_dependencies Array of existing required scripts for the fe-views.js script |
980 | - * @return array Array required scripts, with `jquery-ui-datepicker` added |
|
980 | + * @return string[] Array required scripts, with `jquery-ui-datepicker` added |
|
981 | 981 | */ |
982 | 982 | public function add_datepicker_js_dependency( $js_dependencies ) { |
983 | 983 | |
@@ -989,7 +989,7 @@ discard block |
||
989 | 989 | /** |
990 | 990 | * Modify the array passed to wp_localize_script() |
991 | 991 | * |
992 | - * @param array $js_localization The data padded to the Javascript file |
|
992 | + * @param array $localizations The data padded to the Javascript file |
|
993 | 993 | * @param array $view_data View data array with View settings |
994 | 994 | * |
995 | 995 | * @return array |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | 'type' => 'radio', |
57 | 57 | 'full_width' => true, |
58 | 58 | 'label' => esc_html__( 'Search Mode', 'gravityview' ), |
59 | - 'desc' => __('Should search results match all search fields, or any?', 'gravityview'), |
|
59 | + 'desc' => __( 'Should search results match all search fields, or any?', 'gravityview' ), |
|
60 | 60 | 'value' => 'any', |
61 | 61 | 'class' => 'hide-if-js', |
62 | 62 | 'options' => array( |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | |
79 | 79 | // admin - add scripts - run at 1100 to make sure GravityView_Admin_Views::add_scripts_and_styles() runs first at 999 |
80 | 80 | add_action( 'admin_enqueue_scripts', array( $this, 'add_scripts_and_styles' ), 1100 ); |
81 | - add_action( 'wp_enqueue_scripts', array( $this, 'register_scripts') ); |
|
81 | + add_action( 'wp_enqueue_scripts', array( $this, 'register_scripts' ) ); |
|
82 | 82 | add_filter( 'gravityview_noconflict_scripts', array( $this, 'register_no_conflict' ) ); |
83 | 83 | |
84 | 84 | // ajax - get the searchable fields |
@@ -112,7 +112,7 @@ discard block |
||
112 | 112 | $script_min = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min'; |
113 | 113 | $script_source = empty( $script_min ) ? '/source' : ''; |
114 | 114 | |
115 | - 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 ); |
|
115 | + 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 ); |
|
116 | 116 | |
117 | 117 | |
118 | 118 | /** |
@@ -166,7 +166,7 @@ discard block |
||
166 | 166 | * @return array Scripts allowed in no-conflict mode, plus the search widget script |
167 | 167 | */ |
168 | 168 | public function register_no_conflict( $allowed ) { |
169 | - $allowed[] = 'gravityview_searchwidget_admin'; |
|
169 | + $allowed[ ] = 'gravityview_searchwidget_admin'; |
|
170 | 170 | return $allowed; |
171 | 171 | } |
172 | 172 | |
@@ -179,24 +179,24 @@ discard block |
||
179 | 179 | */ |
180 | 180 | public static function get_searchable_fields() { |
181 | 181 | |
182 | - if ( ! isset( $_POST['nonce'] ) || ! wp_verify_nonce( $_POST['nonce'], 'gravityview_ajaxsearchwidget' ) ) { |
|
182 | + if ( ! isset( $_POST[ 'nonce' ] ) || ! wp_verify_nonce( $_POST[ 'nonce' ], 'gravityview_ajaxsearchwidget' ) ) { |
|
183 | 183 | exit( '0' ); |
184 | 184 | } |
185 | 185 | |
186 | 186 | $form = ''; |
187 | 187 | |
188 | 188 | // Fetch the form for the current View |
189 | - if ( ! empty( $_POST['view_id'] ) ) { |
|
189 | + if ( ! empty( $_POST[ 'view_id' ] ) ) { |
|
190 | 190 | |
191 | - $form = gravityview_get_form_id( $_POST['view_id'] ); |
|
191 | + $form = gravityview_get_form_id( $_POST[ 'view_id' ] ); |
|
192 | 192 | |
193 | - } elseif ( ! empty( $_POST['formid'] ) ) { |
|
193 | + } elseif ( ! empty( $_POST[ 'formid' ] ) ) { |
|
194 | 194 | |
195 | - $form = (int) $_POST['formid']; |
|
195 | + $form = (int)$_POST[ 'formid' ]; |
|
196 | 196 | |
197 | - } elseif ( ! empty( $_POST['template_id'] ) && class_exists( 'GravityView_Ajax' ) ) { |
|
197 | + } elseif ( ! empty( $_POST[ 'template_id' ] ) && class_exists( 'GravityView_Ajax' ) ) { |
|
198 | 198 | |
199 | - $form = GravityView_Ajax::pre_get_form_fields( $_POST['template_id'] ); |
|
199 | + $form = GravityView_Ajax::pre_get_form_fields( $_POST[ 'template_id' ] ); |
|
200 | 200 | |
201 | 201 | } |
202 | 202 | |
@@ -244,8 +244,8 @@ discard block |
||
244 | 244 | ) |
245 | 245 | ); |
246 | 246 | |
247 | - foreach( $custom_fields as $custom_field_key => $custom_field ) { |
|
248 | - $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'] ); |
|
247 | + foreach ( $custom_fields as $custom_field_key => $custom_field ) { |
|
248 | + $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' ] ); |
|
249 | 249 | } |
250 | 250 | |
251 | 251 | if ( ! empty( $fields ) ) { |
@@ -254,13 +254,13 @@ discard block |
||
254 | 254 | |
255 | 255 | foreach ( $fields as $id => $field ) { |
256 | 256 | |
257 | - if ( in_array( $field['type'], $blacklist_field_types ) ) { |
|
257 | + if ( in_array( $field[ 'type' ], $blacklist_field_types ) ) { |
|
258 | 258 | continue; |
259 | 259 | } |
260 | 260 | |
261 | - $types = self::get_search_input_types( $id, $field['type'] ); |
|
261 | + $types = self::get_search_input_types( $id, $field[ 'type' ] ); |
|
262 | 262 | |
263 | - $output .= '<option value="'. $id .'" '. selected( $id, $current, false ).'data-inputtypes="'. esc_attr( $types ) .'">'. esc_html( $field['label'] ) .'</option>'; |
|
263 | + $output .= '<option value="' . $id . '" ' . selected( $id, $current, false ) . 'data-inputtypes="' . esc_attr( $types ) . '">' . esc_html( $field[ 'label' ] ) . '</option>'; |
|
264 | 264 | } |
265 | 265 | } |
266 | 266 | |
@@ -282,7 +282,7 @@ discard block |
||
282 | 282 | public static function get_search_input_types( $id = '', $field_type = null ) { |
283 | 283 | |
284 | 284 | // @todo - This needs to be improved - many fields have . including products and addresses |
285 | - if ( false !== strpos( (string) $id, '.' ) && in_array( $field_type, array( 'checkbox' ) ) || in_array( $id, array( 'is_fulfilled' ) ) ) { |
|
285 | + if ( false !== strpos( (string)$id, '.' ) && in_array( $field_type, array( 'checkbox' ) ) || in_array( $id, array( 'is_fulfilled' ) ) ) { |
|
286 | 286 | $input_type = 'boolean'; // on/off checkbox |
287 | 287 | } elseif ( in_array( $field_type, array( 'checkbox', 'post_category', 'multiselect' ) ) ) { |
288 | 288 | $input_type = 'multi'; //multiselect |
@@ -324,19 +324,19 @@ discard block |
||
324 | 324 | $post_id = 0; |
325 | 325 | |
326 | 326 | // We're in the WordPress Widget context, and an overriding post ID has been set. |
327 | - if ( ! empty( $widget_args['post_id'] ) ) { |
|
328 | - $post_id = absint( $widget_args['post_id'] ); |
|
327 | + if ( ! empty( $widget_args[ 'post_id' ] ) ) { |
|
328 | + $post_id = absint( $widget_args[ 'post_id' ] ); |
|
329 | 329 | } |
330 | 330 | // We're in the WordPress Widget context, and the base View ID should be used |
331 | - else if ( ! empty( $widget_args['view_id'] ) ) { |
|
332 | - $post_id = absint( $widget_args['view_id'] ); |
|
331 | + else if ( ! empty( $widget_args[ 'view_id' ] ) ) { |
|
332 | + $post_id = absint( $widget_args[ 'view_id' ] ); |
|
333 | 333 | } |
334 | 334 | |
335 | 335 | $args = gravityview_get_permalink_query_args( $post_id ); |
336 | 336 | |
337 | 337 | // Add hidden fields to the search form |
338 | 338 | foreach ( $args as $key => $value ) { |
339 | - $search_fields[] = array( |
|
339 | + $search_fields[ ] = array( |
|
340 | 340 | 'name' => $key, |
341 | 341 | 'input' => 'hidden', |
342 | 342 | 'value' => $value, |
@@ -368,15 +368,15 @@ discard block |
||
368 | 368 | $get = array_map( 'urldecode', $get ); |
369 | 369 | |
370 | 370 | // add free search |
371 | - if ( ! empty( $get['gv_search'] ) ) { |
|
371 | + if ( ! empty( $get[ 'gv_search' ] ) ) { |
|
372 | 372 | |
373 | 373 | // Search for a piece |
374 | - $words = explode( ' ', $get['gv_search'] ); |
|
374 | + $words = explode( ' ', $get[ 'gv_search' ] ); |
|
375 | 375 | |
376 | 376 | $words = array_filter( $words ); |
377 | 377 | |
378 | 378 | foreach ( $words as $word ) { |
379 | - $search_criteria['field_filters'][] = array( |
|
379 | + $search_criteria[ 'field_filters' ][ ] = array( |
|
380 | 380 | 'key' => null, // The field ID to search |
381 | 381 | 'value' => $word, // The value to search |
382 | 382 | 'operator' => 'contains', // What to search in. Options: `is` or `contains` |
@@ -401,16 +401,16 @@ discard block |
||
401 | 401 | /** |
402 | 402 | * Don't set $search_criteria['start_date'] if start_date is empty as it may lead to bad query results (GFAPI::get_entries) |
403 | 403 | */ |
404 | - if( !empty( $curr_start ) ) { |
|
405 | - $search_criteria['start_date'] = $adjust_tz ? get_gmt_from_date( $curr_start ) : $curr_start; |
|
404 | + if ( ! empty( $curr_start ) ) { |
|
405 | + $search_criteria[ 'start_date' ] = $adjust_tz ? get_gmt_from_date( $curr_start ) : $curr_start; |
|
406 | 406 | } |
407 | - if( !empty( $curr_end ) ) { |
|
408 | - $search_criteria['end_date'] = $adjust_tz ? get_gmt_from_date( $curr_end ) : $curr_end; |
|
407 | + if ( ! empty( $curr_end ) ) { |
|
408 | + $search_criteria[ 'end_date' ] = $adjust_tz ? get_gmt_from_date( $curr_end ) : $curr_end; |
|
409 | 409 | } |
410 | 410 | |
411 | 411 | // search for a specific entry ID |
412 | 412 | if ( ! empty( $get[ 'gv_id' ] ) ) { |
413 | - $search_criteria['field_filters'][] = array( |
|
413 | + $search_criteria[ 'field_filters' ][ ] = array( |
|
414 | 414 | 'key' => 'id', |
415 | 415 | 'value' => absint( $get[ 'gv_id' ] ), |
416 | 416 | 'operator' => '=', |
@@ -419,9 +419,9 @@ discard block |
||
419 | 419 | |
420 | 420 | // search for a specific Created_by ID |
421 | 421 | if ( ! empty( $get[ 'gv_by' ] ) ) { |
422 | - $search_criteria['field_filters'][] = array( |
|
422 | + $search_criteria[ 'field_filters' ][ ] = array( |
|
423 | 423 | 'key' => 'created_by', |
424 | - 'value' => absint( $get['gv_by'] ), |
|
424 | + 'value' => absint( $get[ 'gv_by' ] ), |
|
425 | 425 | 'operator' => '=', |
426 | 426 | ); |
427 | 427 | } |
@@ -433,22 +433,22 @@ discard block |
||
433 | 433 | // get the other search filters |
434 | 434 | foreach ( $get as $key => $value ) { |
435 | 435 | |
436 | - if ( 0 !== strpos( $key, 'filter_' ) || empty( $value ) || ( is_array( $value ) && count( $value ) === 1 && empty( $value[0] ) ) ) { |
|
436 | + if ( 0 !== strpos( $key, 'filter_' ) || empty( $value ) || ( is_array( $value ) && count( $value ) === 1 && empty( $value[ 0 ] ) ) ) { |
|
437 | 437 | continue; |
438 | 438 | } |
439 | 439 | |
440 | 440 | // could return simple filter or multiple filters |
441 | 441 | $filter = $this->prepare_field_filter( $key, $value ); |
442 | 442 | |
443 | - if ( isset( $filter[0]['value'] ) ) { |
|
444 | - $search_criteria['field_filters'] = array_merge( $search_criteria['field_filters'], $filter ); |
|
443 | + if ( isset( $filter[ 0 ][ 'value' ] ) ) { |
|
444 | + $search_criteria[ 'field_filters' ] = array_merge( $search_criteria[ 'field_filters' ], $filter ); |
|
445 | 445 | |
446 | 446 | // if date range type, set search mode to ALL |
447 | - if ( ! empty( $filter[0]['operator'] ) && in_array( $filter[0]['operator'], array( '>', '<' ) ) ) { |
|
447 | + if ( ! empty( $filter[ 0 ][ 'operator' ] ) && in_array( $filter[ 0 ][ 'operator' ], array( '>', '<' ) ) ) { |
|
448 | 448 | $mode = 'all'; |
449 | 449 | } |
450 | - } elseif( !empty( $filter ) ) { |
|
451 | - $search_criteria['field_filters'][] = $filter; |
|
450 | + } elseif ( ! empty( $filter ) ) { |
|
451 | + $search_criteria[ 'field_filters' ][ ] = $filter; |
|
452 | 452 | } |
453 | 453 | } |
454 | 454 | |
@@ -457,7 +457,7 @@ discard block |
||
457 | 457 | * @since 1.5.1 |
458 | 458 | * @param[out,in] string $mode Search mode (`any` vs `all`) |
459 | 459 | */ |
460 | - $search_criteria['field_filters']['mode'] = apply_filters( 'gravityview/search/mode', $mode ); |
|
460 | + $search_criteria[ 'field_filters' ][ 'mode' ] = apply_filters( 'gravityview/search/mode', $mode ); |
|
461 | 461 | |
462 | 462 | do_action( 'gravityview_log_debug', sprintf( '%s[filter_entries] Returned Search Criteria: ', get_class( $this ) ), $search_criteria ); |
463 | 463 | |
@@ -493,11 +493,11 @@ discard block |
||
493 | 493 | 'value' => _wp_specialchars( $value ), // Gravity Forms encodes ampersands but not quotes |
494 | 494 | ); |
495 | 495 | |
496 | - switch ( $form_field['type'] ) { |
|
496 | + switch ( $form_field[ 'type' ] ) { |
|
497 | 497 | |
498 | 498 | case 'select': |
499 | 499 | case 'radio': |
500 | - $filter['operator'] = 'is'; |
|
500 | + $filter[ 'operator' ] = 'is'; |
|
501 | 501 | break; |
502 | 502 | |
503 | 503 | case 'post_category': |
@@ -511,7 +511,7 @@ discard block |
||
511 | 511 | |
512 | 512 | foreach ( $value as $val ) { |
513 | 513 | $cat = get_term( $val, 'category' ); |
514 | - $filter[] = array( |
|
514 | + $filter[ ] = array( |
|
515 | 515 | 'key' => $field_id, |
516 | 516 | 'value' => esc_attr( $cat->name ) . ':' . $val, |
517 | 517 | 'operator' => 'is', |
@@ -530,18 +530,18 @@ discard block |
||
530 | 530 | $filter = array(); |
531 | 531 | |
532 | 532 | foreach ( $value as $val ) { |
533 | - $filter[] = array( 'key' => $field_id, 'value' => $val ); |
|
533 | + $filter[ ] = array( 'key' => $field_id, 'value' => $val ); |
|
534 | 534 | } |
535 | 535 | |
536 | 536 | break; |
537 | 537 | |
538 | 538 | case 'checkbox': |
539 | 539 | // convert checkbox on/off into the correct search filter |
540 | - if ( false !== strpos( $field_id, '.' ) && ! empty( $form_field['inputs'] ) && ! empty( $form_field['choices'] ) ) { |
|
541 | - foreach ( $form_field['inputs'] as $k => $input ) { |
|
542 | - if ( $input['id'] == $field_id ) { |
|
543 | - $filter['value'] = $form_field['choices'][ $k ]['value']; |
|
544 | - $filter['operator'] = 'is'; |
|
540 | + if ( false !== strpos( $field_id, '.' ) && ! empty( $form_field[ 'inputs' ] ) && ! empty( $form_field[ 'choices' ] ) ) { |
|
541 | + foreach ( $form_field[ 'inputs' ] as $k => $input ) { |
|
542 | + if ( $input[ 'id' ] == $field_id ) { |
|
543 | + $filter[ 'value' ] = $form_field[ 'choices' ][ $k ][ 'value' ]; |
|
544 | + $filter[ 'operator' ] = 'is'; |
|
545 | 545 | break; |
546 | 546 | } |
547 | 547 | } |
@@ -551,7 +551,7 @@ discard block |
||
551 | 551 | $filter = array(); |
552 | 552 | |
553 | 553 | foreach ( $value as $val ) { |
554 | - $filter[] = array( |
|
554 | + $filter[ ] = array( |
|
555 | 555 | 'key' => $field_id, |
556 | 556 | 'value' => $val, |
557 | 557 | 'operator' => 'is', |
@@ -572,9 +572,9 @@ discard block |
||
572 | 572 | foreach ( $words as $word ) { |
573 | 573 | if ( ! empty( $word ) && strlen( $word ) > 1 ) { |
574 | 574 | // Keep the same key for each filter |
575 | - $filter['value'] = $word; |
|
575 | + $filter[ 'value' ] = $word; |
|
576 | 576 | // Add a search for the value |
577 | - $filters[] = $filter; |
|
577 | + $filters[ ] = $filter; |
|
578 | 578 | } |
579 | 579 | } |
580 | 580 | |
@@ -596,14 +596,14 @@ discard block |
||
596 | 596 | } |
597 | 597 | $operator = 'start' === $k ? '>' : '<'; |
598 | 598 | |
599 | - $filter[] = array( |
|
599 | + $filter[ ] = array( |
|
600 | 600 | 'key' => $field_id, |
601 | 601 | 'value' => self::get_formatted_date( $date, 'Y-m-d' ), |
602 | 602 | 'operator' => $operator, |
603 | 603 | ); |
604 | 604 | } |
605 | 605 | } else { |
606 | - $filter['value'] = self::get_formatted_date( $value, 'Y-m-d' ); |
|
606 | + $filter[ 'value' ] = self::get_formatted_date( $value, 'Y-m-d' ); |
|
607 | 607 | } |
608 | 608 | |
609 | 609 | break; |
@@ -634,7 +634,7 @@ discard block |
||
634 | 634 | 'ymd_dot' => 'Y.m.d', |
635 | 635 | ); |
636 | 636 | |
637 | - if ( ! empty( $field->dateFormat ) && isset( $datepicker[ $field->dateFormat ] ) ){ |
|
637 | + if ( ! empty( $field->dateFormat ) && isset( $datepicker[ $field->dateFormat ] ) ) { |
|
638 | 638 | $format = $datepicker[ $field->dateFormat ]; |
639 | 639 | } |
640 | 640 | |
@@ -665,7 +665,7 @@ discard block |
||
665 | 665 | public function add_template_path( $file_paths ) { |
666 | 666 | |
667 | 667 | // Index 100 is the default GravityView template path. |
668 | - $file_paths[102] = self::$file . 'templates/'; |
|
668 | + $file_paths[ 102 ] = self::$file . 'templates/'; |
|
669 | 669 | |
670 | 670 | return $file_paths; |
671 | 671 | } |
@@ -688,7 +688,7 @@ discard block |
||
688 | 688 | } |
689 | 689 | |
690 | 690 | // get configured search fields |
691 | - $search_fields = ! empty( $widget_args['search_fields'] ) ? json_decode( $widget_args['search_fields'], true ) : ''; |
|
691 | + $search_fields = ! empty( $widget_args[ 'search_fields' ] ) ? json_decode( $widget_args[ 'search_fields' ], true ) : ''; |
|
692 | 692 | |
693 | 693 | if ( empty( $search_fields ) || ! is_array( $search_fields ) ) { |
694 | 694 | do_action( 'gravityview_log_debug', sprintf( '%s[render_frontend] No search fields configured for widget:', get_class( $this ) ), $widget_args ); |
@@ -702,24 +702,24 @@ discard block |
||
702 | 702 | |
703 | 703 | $updated_field = $field; |
704 | 704 | |
705 | - if ( in_array( $field['input'], array( 'date', 'date_range' ) ) ) { |
|
705 | + if ( in_array( $field[ 'input' ], array( 'date', 'date_range' ) ) ) { |
|
706 | 706 | $has_date = true; |
707 | 707 | } |
708 | 708 | |
709 | 709 | $updated_field = $this->get_search_filter_details( $updated_field ); |
710 | 710 | |
711 | - switch ( $field['field'] ) { |
|
711 | + switch ( $field[ 'field' ] ) { |
|
712 | 712 | |
713 | 713 | case 'search_all': |
714 | - $updated_field['key'] = 'search_all'; |
|
715 | - $updated_field['input'] = 'search_all'; |
|
716 | - $updated_field['value'] = esc_attr( stripslashes_deep( rgget( 'gv_search' ) ) ); |
|
714 | + $updated_field[ 'key' ] = 'search_all'; |
|
715 | + $updated_field[ 'input' ] = 'search_all'; |
|
716 | + $updated_field[ 'value' ] = esc_attr( stripslashes_deep( rgget( 'gv_search' ) ) ); |
|
717 | 717 | break; |
718 | 718 | |
719 | 719 | case 'entry_date': |
720 | - $updated_field['key'] = 'entry_date'; |
|
721 | - $updated_field['input'] = 'entry_date'; |
|
722 | - $updated_field['value'] = array( |
|
720 | + $updated_field[ 'key' ] = 'entry_date'; |
|
721 | + $updated_field[ 'input' ] = 'entry_date'; |
|
722 | + $updated_field[ 'value' ] = array( |
|
723 | 723 | 'start' => esc_attr( stripslashes_deep( rgget( 'gv_start' ) ) ), |
724 | 724 | 'end' => esc_attr( stripslashes_deep( rgget( 'gv_end' ) ) ), |
725 | 725 | ); |
@@ -727,16 +727,16 @@ discard block |
||
727 | 727 | break; |
728 | 728 | |
729 | 729 | case 'entry_id': |
730 | - $updated_field['key'] = 'entry_id'; |
|
731 | - $updated_field['input'] = 'entry_id'; |
|
732 | - $updated_field['value'] = esc_attr( stripslashes_deep( rgget( 'gv_id' ) ) ); |
|
730 | + $updated_field[ 'key' ] = 'entry_id'; |
|
731 | + $updated_field[ 'input' ] = 'entry_id'; |
|
732 | + $updated_field[ 'value' ] = esc_attr( stripslashes_deep( rgget( 'gv_id' ) ) ); |
|
733 | 733 | break; |
734 | 734 | |
735 | 735 | case 'created_by': |
736 | - $updated_field['key'] = 'created_by'; |
|
737 | - $updated_field['name'] = 'gv_by'; |
|
738 | - $updated_field['value'] = esc_attr( stripslashes_deep( rgget( 'gv_by' ) ) ); |
|
739 | - $updated_field['choices'] = self::get_created_by_choices(); |
|
736 | + $updated_field[ 'key' ] = 'created_by'; |
|
737 | + $updated_field[ 'name' ] = 'gv_by'; |
|
738 | + $updated_field[ 'value' ] = esc_attr( stripslashes_deep( rgget( 'gv_by' ) ) ); |
|
739 | + $updated_field[ 'choices' ] = self::get_created_by_choices(); |
|
740 | 740 | break; |
741 | 741 | } |
742 | 742 | |
@@ -754,16 +754,16 @@ discard block |
||
754 | 754 | */ |
755 | 755 | $gravityview_view->search_fields = apply_filters( 'gravityview_widget_search_filters', $search_fields, $this, $widget_args ); |
756 | 756 | |
757 | - $gravityview_view->search_layout = ! empty( $widget_args['search_layout'] ) ? $widget_args['search_layout'] : 'horizontal'; |
|
757 | + $gravityview_view->search_layout = ! empty( $widget_args[ 'search_layout' ] ) ? $widget_args[ 'search_layout' ] : 'horizontal'; |
|
758 | 758 | |
759 | 759 | /** @since 1.14 */ |
760 | - $gravityview_view->search_mode = ! empty( $widget_args['search_mode'] ) ? $widget_args['search_mode'] : 'any'; |
|
760 | + $gravityview_view->search_mode = ! empty( $widget_args[ 'search_mode' ] ) ? $widget_args[ 'search_mode' ] : 'any'; |
|
761 | 761 | |
762 | - $custom_class = ! empty( $widget_args['custom_class'] ) ? $widget_args['custom_class'] : ''; |
|
762 | + $custom_class = ! empty( $widget_args[ 'custom_class' ] ) ? $widget_args[ 'custom_class' ] : ''; |
|
763 | 763 | |
764 | 764 | $gravityview_view->search_class = self::get_search_class( $custom_class ); |
765 | 765 | |
766 | - $gravityview_view->search_clear = ! empty( $widget_args['search_clear'] ) ? $widget_args['search_clear'] : false; |
|
766 | + $gravityview_view->search_clear = ! empty( $widget_args[ 'search_clear' ] ) ? $widget_args[ 'search_clear' ] : false; |
|
767 | 767 | |
768 | 768 | if ( $has_date ) { |
769 | 769 | // enqueue datepicker stuff only if needed! |
@@ -785,10 +785,10 @@ discard block |
||
785 | 785 | public static function get_search_class( $custom_class = '' ) { |
786 | 786 | $gravityview_view = GravityView_View::getInstance(); |
787 | 787 | |
788 | - $search_class = 'gv-search-'.$gravityview_view->search_layout; |
|
788 | + $search_class = 'gv-search-' . $gravityview_view->search_layout; |
|
789 | 789 | |
790 | - if ( ! empty( $custom_class ) ) { |
|
791 | - $search_class .= ' '.$custom_class; |
|
790 | + if ( ! empty( $custom_class ) ) { |
|
791 | + $search_class .= ' ' . $custom_class; |
|
792 | 792 | } |
793 | 793 | |
794 | 794 | /** |
@@ -831,11 +831,11 @@ discard block |
||
831 | 831 | |
832 | 832 | $label = rgget( 'label', $field ); |
833 | 833 | |
834 | - if( '' === $label ) { |
|
834 | + if ( '' === $label ) { |
|
835 | 835 | |
836 | - $label = isset( $form_field['label'] ) ? $form_field['label'] : ''; |
|
836 | + $label = isset( $form_field[ 'label' ] ) ? $form_field[ 'label' ] : ''; |
|
837 | 837 | |
838 | - switch( $field['field'] ) { |
|
838 | + switch ( $field[ 'field' ] ) { |
|
839 | 839 | case 'search_all': |
840 | 840 | $label = __( 'Search Entries:', 'gravityview' ); |
841 | 841 | break; |
@@ -853,10 +853,10 @@ discard block |
||
853 | 853 | break; |
854 | 854 | default: |
855 | 855 | // If this is a field input, not a field |
856 | - if ( strpos( $field['field'], '.' ) > 0 && ! empty( $form_field['inputs'] ) ) { |
|
856 | + if ( strpos( $field[ 'field' ], '.' ) > 0 && ! empty( $form_field[ 'inputs' ] ) ) { |
|
857 | 857 | |
858 | 858 | // Get the label for the field in question, which returns an array |
859 | - $items = wp_list_filter( $form_field['inputs'], array( 'id' => $field['field'] ) ); |
|
859 | + $items = wp_list_filter( $form_field[ 'inputs' ], array( 'id' => $field[ 'field' ] ) ); |
|
860 | 860 | |
861 | 861 | // Get the item with the `label` key |
862 | 862 | $values = wp_list_pluck( $items, 'label' ); |
@@ -893,7 +893,7 @@ discard block |
||
893 | 893 | $form = $gravityview_view->getForm(); |
894 | 894 | |
895 | 895 | // for advanced field ids (eg, first name / last name ) |
896 | - $name = 'filter_' . str_replace( '.', '_', $field['field'] ); |
|
896 | + $name = 'filter_' . str_replace( '.', '_', $field[ 'field' ] ); |
|
897 | 897 | |
898 | 898 | // get searched value from $_GET (string or array) |
899 | 899 | $value = rgget( $name ); |
@@ -903,26 +903,26 @@ discard block |
||
903 | 903 | $value = is_array( $value ) ? array_map( 'urldecode', $value ) : urldecode( $value ); |
904 | 904 | |
905 | 905 | // get form field details |
906 | - $form_field = gravityview_get_field( $form, $field['field'] ); |
|
906 | + $form_field = gravityview_get_field( $form, $field[ 'field' ] ); |
|
907 | 907 | |
908 | 908 | $filter = array( |
909 | - 'key' => $field['field'], |
|
909 | + 'key' => $field[ 'field' ], |
|
910 | 910 | 'name' => $name, |
911 | 911 | 'label' => self::get_field_label( $field, $form_field ), |
912 | - 'input' => $field['input'], |
|
912 | + 'input' => $field[ 'input' ], |
|
913 | 913 | 'value' => _wp_specialchars( $value ), |
914 | - 'type' => $form_field['type'], |
|
914 | + 'type' => $form_field[ 'type' ], |
|
915 | 915 | ); |
916 | 916 | |
917 | 917 | // collect choices |
918 | - if ( 'post_category' === $form_field['type'] && ! empty( $form_field['displayAllCategories'] ) && empty( $form_field['choices'] ) ) { |
|
919 | - $filter['choices'] = gravityview_get_terms_choices(); |
|
920 | - } elseif ( ! empty( $form_field['choices'] ) ) { |
|
921 | - $filter['choices'] = $form_field['choices']; |
|
918 | + if ( 'post_category' === $form_field[ 'type' ] && ! empty( $form_field[ 'displayAllCategories' ] ) && empty( $form_field[ 'choices' ] ) ) { |
|
919 | + $filter[ 'choices' ] = gravityview_get_terms_choices(); |
|
920 | + } elseif ( ! empty( $form_field[ 'choices' ] ) ) { |
|
921 | + $filter[ 'choices' ] = $form_field[ 'choices' ]; |
|
922 | 922 | } |
923 | 923 | |
924 | - if ( 'date_range' === $field['input'] && empty( $value ) ) { |
|
925 | - $filter['value'] = array( 'start' => '', 'end' => '' ); |
|
924 | + if ( 'date_range' === $field[ 'input' ] && empty( $value ) ) { |
|
925 | + $filter[ 'value' ] = array( 'start' => '', 'end' => '' ); |
|
926 | 926 | } |
927 | 927 | |
928 | 928 | return $filter; |
@@ -946,7 +946,7 @@ discard block |
||
946 | 946 | |
947 | 947 | $choices = array(); |
948 | 948 | foreach ( $users as $user ) { |
949 | - $choices[] = array( |
|
949 | + $choices[ ] = array( |
|
950 | 950 | 'value' => $user->ID, |
951 | 951 | 'text' => $user->display_name, |
952 | 952 | ); |
@@ -981,7 +981,7 @@ discard block |
||
981 | 981 | */ |
982 | 982 | public function add_datepicker_js_dependency( $js_dependencies ) { |
983 | 983 | |
984 | - $js_dependencies[] = 'jquery-ui-datepicker'; |
|
984 | + $js_dependencies[ ] = 'jquery-ui-datepicker'; |
|
985 | 985 | |
986 | 986 | return $js_dependencies; |
987 | 987 | } |
@@ -1025,7 +1025,7 @@ discard block |
||
1025 | 1025 | 'isRTL' => is_rtl(), |
1026 | 1026 | ), $view_data ); |
1027 | 1027 | |
1028 | - $localizations['datepicker'] = $datepicker_settings; |
|
1028 | + $localizations[ 'datepicker' ] = $datepicker_settings; |
|
1029 | 1029 | |
1030 | 1030 | return $localizations; |
1031 | 1031 | |
@@ -1054,7 +1054,7 @@ discard block |
||
1054 | 1054 | * @return void |
1055 | 1055 | */ |
1056 | 1056 | private function maybe_enqueue_flexibility() { |
1057 | - if ( isset( $_SERVER['HTTP_USER_AGENT'] ) && preg_match( '/MSIE [8-9]/', $_SERVER['HTTP_USER_AGENT'] ) ) { |
|
1057 | + if ( isset( $_SERVER[ 'HTTP_USER_AGENT' ] ) && preg_match( '/MSIE [8-9]/', $_SERVER[ 'HTTP_USER_AGENT' ] ) ) { |
|
1058 | 1058 | wp_enqueue_script( 'gv-flexibility' ); |
1059 | 1059 | } |
1060 | 1060 | } |
@@ -1076,7 +1076,7 @@ discard block |
||
1076 | 1076 | add_filter( 'gravityview_js_localization', array( $this, 'add_datepicker_localization' ), 10, 2 ); |
1077 | 1077 | |
1078 | 1078 | $scheme = is_ssl() ? 'https://' : 'http://'; |
1079 | - wp_enqueue_style( 'jquery-ui-datepicker', $scheme.'ajax.googleapis.com/ajax/libs/jqueryui/1.8.18/themes/smoothness/jquery-ui.css' ); |
|
1079 | + wp_enqueue_style( 'jquery-ui-datepicker', $scheme . 'ajax.googleapis.com/ajax/libs/jqueryui/1.8.18/themes/smoothness/jquery-ui.css' ); |
|
1080 | 1080 | |
1081 | 1081 | /** |
1082 | 1082 | * @filter `gravityview_search_datepicker_class` |
@@ -17,7 +17,7 @@ discard block |
||
17 | 17 | |
18 | 18 | function __construct() { |
19 | 19 | |
20 | - $this->widget_description = __('Insert custom text or HTML as a widget', 'gravityview' ); |
|
20 | + $this->widget_description = __( 'Insert custom text or HTML as a widget', 'gravityview' ); |
|
21 | 21 | |
22 | 22 | $default_values = array( |
23 | 23 | 'header' => 1, |
@@ -42,39 +42,39 @@ discard block |
||
42 | 42 | ), |
43 | 43 | ); |
44 | 44 | |
45 | - parent::__construct( __( 'Custom Content', 'gravityview' ) , 'custom_content', $default_values, $settings ); |
|
45 | + parent::__construct( __( 'Custom Content', 'gravityview' ), 'custom_content', $default_values, $settings ); |
|
46 | 46 | } |
47 | 47 | |
48 | - public function render_frontend( $widget_args, $content = '', $context = '') { |
|
48 | + public function render_frontend( $widget_args, $content = '', $context = '' ) { |
|
49 | 49 | |
50 | - if( !$this->pre_render_frontend() ) { |
|
50 | + if ( ! $this->pre_render_frontend() ) { |
|
51 | 51 | return; |
52 | 52 | } |
53 | 53 | |
54 | - if( !empty( $widget_args['title'] ) ) { |
|
55 | - echo $widget_args['title']; |
|
54 | + if ( ! empty( $widget_args[ 'title' ] ) ) { |
|
55 | + echo $widget_args[ 'title' ]; |
|
56 | 56 | } |
57 | 57 | |
58 | 58 | |
59 | 59 | // Make sure the class is loaded in DataTables |
60 | - if( !class_exists( 'GFFormDisplay' ) ) { |
|
60 | + if ( ! class_exists( 'GFFormDisplay' ) ) { |
|
61 | 61 | include_once( GFCommon::get_base_path() . '/form_display.php' ); |
62 | 62 | } |
63 | 63 | |
64 | - $widget_args['content'] = trim( rtrim( $widget_args['content'] ) ); |
|
64 | + $widget_args[ 'content' ] = trim( rtrim( $widget_args[ 'content' ] ) ); |
|
65 | 65 | |
66 | 66 | // No custom content |
67 | - if( empty( $widget_args['content'] ) ) { |
|
68 | - do_action('gravityview_log_debug', sprintf( '%s[render_frontend]: No content.', get_class($this)) ); |
|
67 | + if ( empty( $widget_args[ 'content' ] ) ) { |
|
68 | + do_action( 'gravityview_log_debug', sprintf( '%s[render_frontend]: No content.', get_class( $this ) ) ); |
|
69 | 69 | return; |
70 | 70 | } |
71 | 71 | |
72 | 72 | // Add paragraphs? |
73 | - if( !empty( $widget_args['wpautop'] ) ) { |
|
74 | - $widget_args['content'] = wpautop( $widget_args['content'] ); |
|
73 | + if ( ! empty( $widget_args[ 'wpautop' ] ) ) { |
|
74 | + $widget_args[ 'content' ] = wpautop( $widget_args[ 'content' ] ); |
|
75 | 75 | } |
76 | 76 | |
77 | - $content = $widget_args['content']; |
|
77 | + $content = $widget_args[ 'content' ]; |
|
78 | 78 | |
79 | 79 | $content = GravityView_Merge_Tags::replace_variables( $content ); |
80 | 80 | |
@@ -84,10 +84,10 @@ discard block |
||
84 | 84 | |
85 | 85 | |
86 | 86 | // Add custom class |
87 | - $class = !empty( $widget_args['custom_class'] ) ? $widget_args['custom_class'] : ''; |
|
87 | + $class = ! empty( $widget_args[ 'custom_class' ] ) ? $widget_args[ 'custom_class' ] : ''; |
|
88 | 88 | $class = gravityview_sanitize_html_class( $class ); |
89 | 89 | |
90 | - echo '<div class="gv-widget-custom-content '.$class.'">'. $content .'</div>'; |
|
90 | + echo '<div class="gv-widget-custom-content ' . $class . '">' . $content . '</div>'; |
|
91 | 91 | |
92 | 92 | } |
93 | 93 |
@@ -16,7 +16,7 @@ discard block |
||
16 | 16 | |
17 | 17 | function __construct() { |
18 | 18 | |
19 | - $this->widget_description = __('Summary of the number of visible entries out of the total results.', 'gravityview' ); |
|
19 | + $this->widget_description = __( 'Summary of the number of visible entries out of the total results.', 'gravityview' ); |
|
20 | 20 | |
21 | 21 | $default_values = array( |
22 | 22 | 'header' => 1, |
@@ -25,18 +25,18 @@ discard block |
||
25 | 25 | |
26 | 26 | $settings = array(); |
27 | 27 | |
28 | - parent::__construct( __( 'Show Pagination Info', 'gravityview' ) , 'page_info', $default_values, $settings ); |
|
28 | + parent::__construct( __( 'Show Pagination Info', 'gravityview' ), 'page_info', $default_values, $settings ); |
|
29 | 29 | } |
30 | 30 | |
31 | - public function render_frontend( $widget_args, $content = '', $context = '') { |
|
31 | + public function render_frontend( $widget_args, $content = '', $context = '' ) { |
|
32 | 32 | $gravityview_view = GravityView_View::getInstance(); |
33 | 33 | |
34 | - if( !$this->pre_render_frontend() ) { |
|
34 | + if ( ! $this->pre_render_frontend() ) { |
|
35 | 35 | return; |
36 | 36 | } |
37 | 37 | |
38 | - if( !empty( $widget_args['title'] ) ) { |
|
39 | - echo $widget_args['title']; |
|
38 | + if ( ! empty( $widget_args[ 'title' ] ) ) { |
|
39 | + echo $widget_args[ 'title' ]; |
|
40 | 40 | } |
41 | 41 | |
42 | 42 | $pagination_counts = $gravityview_view->getPaginationCounts(); |
@@ -45,16 +45,16 @@ discard block |
||
45 | 45 | |
46 | 46 | $output = ''; |
47 | 47 | |
48 | - if( ! empty( $pagination_counts ) ) { |
|
48 | + if ( ! empty( $pagination_counts ) ) { |
|
49 | 49 | |
50 | - $first = $pagination_counts['first']; |
|
51 | - $last = $pagination_counts['last']; |
|
52 | - $total = $pagination_counts['total']; |
|
50 | + $first = $pagination_counts[ 'first' ]; |
|
51 | + $last = $pagination_counts[ 'last' ]; |
|
52 | + $total = $pagination_counts[ 'total' ]; |
|
53 | 53 | |
54 | - $class = !empty( $widget_args['custom_class'] ) ? $widget_args['custom_class'] : ''; |
|
54 | + $class = ! empty( $widget_args[ 'custom_class' ] ) ? $widget_args[ 'custom_class' ] : ''; |
|
55 | 55 | $class = gravityview_sanitize_html_class( $class ); |
56 | 56 | |
57 | - $output = '<div class="gv-widget-pagination '.$class.'"><p>'. sprintf(__( 'Displaying %1$s - %2$s of %3$s', 'gravityview' ), number_format_i18n( $first ), number_format_i18n( $last ), number_format_i18n( $total ) ) . '</p></div>'; |
|
57 | + $output = '<div class="gv-widget-pagination ' . $class . '"><p>' . sprintf( __( 'Displaying %1$s - %2$s of %3$s', 'gravityview' ), number_format_i18n( $first ), number_format_i18n( $last ), number_format_i18n( $total ) ) . '</p></div>'; |
|
58 | 58 | } |
59 | 59 | |
60 | 60 | /** |