@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | * @return string |
27 | 27 | */ |
28 | 28 | public function the_field( \GV\Field $field, $extras = null ) { |
29 | - $form = \GV\GF_Form::by_id( $field->form_id ) ? : $this->view->form; |
|
29 | + $form = \GV\GF_Form::by_id( $field->form_id ) ?: $this->view->form; |
|
30 | 30 | $entry = $this->entry->from_field( $field ); |
31 | 31 | |
32 | 32 | if ( ! $entry ) { |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | } |
35 | 35 | |
36 | 36 | $renderer = new Field_Renderer(); |
37 | - $source = is_numeric( $field->ID ) ? ( GF_Form::by_id( $field->form_id ) ? : $this->view->form ) : new Internal_Source(); |
|
37 | + $source = is_numeric( $field->ID ) ? ( GF_Form::by_id( $field->form_id ) ?: $this->view->form ) : new Internal_Source(); |
|
38 | 38 | |
39 | 39 | $value = $renderer->render( $field, $this->view, $source, $entry, $this->request ); |
40 | 40 | |
@@ -62,13 +62,13 @@ discard block |
||
62 | 62 | $hide_empty = apply_filters( 'gravityview/render/hide-empty-zone', Utils::get( $extras, 'hide_empty', $this->view->settings->get( 'hide_empty', false ) ), $context ); |
63 | 63 | |
64 | 64 | if ( is_numeric( $field->ID ) ) { |
65 | - $extras['field'] = $field->as_configuration(); |
|
65 | + $extras[ 'field' ] = $field->as_configuration(); |
|
66 | 66 | } |
67 | 67 | |
68 | - $extras['entry'] = $this->entry->as_entry(); |
|
69 | - $extras['hide_empty'] = $hide_empty; |
|
70 | - $extras['label'] = $label; |
|
71 | - $extras['value'] = $value; |
|
68 | + $extras[ 'entry' ] = $this->entry->as_entry(); |
|
69 | + $extras[ 'hide_empty' ] = $hide_empty; |
|
70 | + $extras[ 'label' ] = $label; |
|
71 | + $extras[ 'value' ] = $value; |
|
72 | 72 | |
73 | 73 | return \gravityview_field_output( $extras, $context ); |
74 | 74 | } |
@@ -29,9 +29,9 @@ discard block |
||
29 | 29 | public function the_field( \GV\Field $field, \GV\Entry $entry, $extras = null ) { |
30 | 30 | $form = $this->view->form; |
31 | 31 | |
32 | - if ( isset( $this->view->unions[ $entry['form_id'] ] ) ) { |
|
33 | - if ( isset( $this->view->unions[ $entry['form_id'] ][ $field->ID ] ) ) { |
|
34 | - $field = $this->view->unions[ $entry['form_id'] ][ $field->ID ]; |
|
32 | + if ( isset( $this->view->unions[ $entry[ 'form_id' ] ] ) ) { |
|
33 | + if ( isset( $this->view->unions[ $entry[ 'form_id' ] ][ $field->ID ] ) ) { |
|
34 | + $field = $this->view->unions[ $entry[ 'form_id' ] ][ $field->ID ]; |
|
35 | 35 | } elseif ( ! $field instanceof Internal_Field ) { |
36 | 36 | $field = Internal_Field::from_configuration( array( 'id' => 'custom' ) ); |
37 | 37 | } |
@@ -81,13 +81,13 @@ discard block |
||
81 | 81 | $hide_empty = apply_filters( 'gravityview/render/hide-empty-zone', Utils::get( $extras, 'hide_empty', $this->view->settings->get( 'hide_empty', false ) ), $context ); |
82 | 82 | |
83 | 83 | if ( is_numeric( $field->ID ) ) { |
84 | - $extras['field'] = $field->as_configuration(); |
|
84 | + $extras[ 'field' ] = $field->as_configuration(); |
|
85 | 85 | } |
86 | 86 | |
87 | - $extras['entry'] = $entry->as_entry(); |
|
88 | - $extras['hide_empty'] = $hide_empty; |
|
89 | - $extras['label'] = $label; |
|
90 | - $extras['value'] = $value; |
|
87 | + $extras[ 'entry' ] = $entry->as_entry(); |
|
88 | + $extras[ 'hide_empty' ] = $hide_empty; |
|
89 | + $extras[ 'label' ] = $label; |
|
90 | + $extras[ 'value' ] = $value; |
|
91 | 91 | |
92 | 92 | return \gravityview_field_output( $extras, $context ); |
93 | 93 | } |
@@ -89,7 +89,7 @@ discard block |
||
89 | 89 | /** |
90 | 90 | * @var string The REST API functionality identifier. |
91 | 91 | */ |
92 | - const FEATURE_REST = 'rest_api'; |
|
92 | + const FEATURE_REST = 'rest_api'; |
|
93 | 93 | |
94 | 94 | /** |
95 | 95 | * Get the global instance of \GV\Plugin. |
@@ -215,7 +215,7 @@ discard block |
||
215 | 215 | include_once $this->dir( 'includes/class-frontend-views.php' ); |
216 | 216 | include_once $this->dir( 'includes/class-gravityview-admin-bar.php' ); |
217 | 217 | include_once $this->dir( 'includes/class-gravityview-entry-list.php' ); |
218 | - include_once $this->dir( 'includes/class-gravityview-merge-tags.php'); /** @since 1.8.4 */ |
|
218 | + include_once $this->dir( 'includes/class-gravityview-merge-tags.php' ); /** @since 1.8.4 */ |
|
219 | 219 | include_once $this->dir( 'includes/class-data.php' ); |
220 | 220 | include_once $this->dir( 'includes/class-gravityview-shortcode.php' ); |
221 | 221 | include_once $this->dir( 'includes/class-gravityview-entry-link-shortcode.php' ); |
@@ -269,11 +269,11 @@ discard block |
||
269 | 269 | |
270 | 270 | // Pre-4.6 loading |
271 | 271 | // TODO: Remove when GV minimum version is WordPress 4.6.0 |
272 | - $locale = apply_filters( 'plugin_locale', ( ( function_exists('get_user_locale') && is_admin() ) ? get_user_locale() : get_locale() ), 'gravityview' ); |
|
272 | + $locale = apply_filters( 'plugin_locale', ( ( function_exists( 'get_user_locale' ) && is_admin() ) ? get_user_locale() : get_locale() ), 'gravityview' ); |
|
273 | 273 | |
274 | - $loaded = load_textdomain( 'gravityview', sprintf( '%s/%s-%s.mo', $this->dir('languages'), $domain, $locale ) ); |
|
274 | + $loaded = load_textdomain( 'gravityview', sprintf( '%s/%s-%s.mo', $this->dir( 'languages' ), $domain, $locale ) ); |
|
275 | 275 | |
276 | - if( $loaded ) { |
|
276 | + if ( $loaded ) { |
|
277 | 277 | return; |
278 | 278 | } |
279 | 279 | |
@@ -424,7 +424,7 @@ discard block |
||
424 | 424 | */ |
425 | 425 | public function is_compatible_wordpress( $version = null ) { |
426 | 426 | |
427 | - if( ! $version ) { |
|
427 | + if ( ! $version ) { |
|
428 | 428 | $version = self::$min_wp_version; |
429 | 429 | } |
430 | 430 | |
@@ -465,8 +465,8 @@ discard block |
||
465 | 465 | * @return string The version of PHP. |
466 | 466 | */ |
467 | 467 | private function get_php_version() { |
468 | - return ! empty( $GLOBALS['GRAVITYVIEW_TESTS_PHP_VERSION_OVERRIDE'] ) ? |
|
469 | - $GLOBALS['GRAVITYVIEW_TESTS_PHP_VERSION_OVERRIDE'] : phpversion(); |
|
468 | + return ! empty( $GLOBALS[ 'GRAVITYVIEW_TESTS_PHP_VERSION_OVERRIDE' ] ) ? |
|
469 | + $GLOBALS[ 'GRAVITYVIEW_TESTS_PHP_VERSION_OVERRIDE' ] : phpversion(); |
|
470 | 470 | } |
471 | 471 | |
472 | 472 | /** |
@@ -477,8 +477,8 @@ discard block |
||
477 | 477 | * @return string The version of WordPress. |
478 | 478 | */ |
479 | 479 | private function get_wordpress_version() { |
480 | - return ! empty( $GLOBALS['GRAVITYVIEW_TESTS_WP_VERSION_OVERRIDE'] ) ? |
|
481 | - $GLOBALS['GRAVITYVIEW_TESTS_WP_VERSION_OVERRIDE'] : $GLOBALS['wp_version']; |
|
480 | + return ! empty( $GLOBALS[ 'GRAVITYVIEW_TESTS_WP_VERSION_OVERRIDE' ] ) ? |
|
481 | + $GLOBALS[ 'GRAVITYVIEW_TESTS_WP_VERSION_OVERRIDE' ] : $GLOBALS[ 'wp_version' ]; |
|
482 | 482 | } |
483 | 483 | |
484 | 484 | /** |
@@ -489,13 +489,13 @@ discard block |
||
489 | 489 | * @return string|null The version of Gravity Forms or null if inactive. |
490 | 490 | */ |
491 | 491 | private function get_gravityforms_version() { |
492 | - if ( ! class_exists( '\GFCommon' ) || ! empty( $GLOBALS['GRAVITYVIEW_TESTS_GF_INACTIVE_OVERRIDE'] ) ) { |
|
492 | + if ( ! class_exists( '\GFCommon' ) || ! empty( $GLOBALS[ 'GRAVITYVIEW_TESTS_GF_INACTIVE_OVERRIDE' ] ) ) { |
|
493 | 493 | gravityview()->log->error( 'Gravity Forms is inactive or not installed.' ); |
494 | 494 | return null; |
495 | 495 | } |
496 | 496 | |
497 | - return ! empty( $GLOBALS['GRAVITYVIEW_TESTS_GF_VERSION_OVERRIDE'] ) ? |
|
498 | - $GLOBALS['GRAVITYVIEW_TESTS_GF_VERSION_OVERRIDE'] : \GFCommon::$version; |
|
497 | + return ! empty( $GLOBALS[ 'GRAVITYVIEW_TESTS_GF_VERSION_OVERRIDE' ] ) ? |
|
498 | + $GLOBALS[ 'GRAVITYVIEW_TESTS_GF_VERSION_OVERRIDE' ] : \GFCommon::$version; |
|
499 | 499 | } |
500 | 500 | |
501 | 501 | /** |
@@ -552,9 +552,9 @@ discard block |
||
552 | 552 | $tables = array(); |
553 | 553 | |
554 | 554 | if ( version_compare( \GravityView_GFFormsModel::get_database_version(), '2.3-dev-1', '>=' ) ) { |
555 | - $tables []= \GFFormsModel::get_entry_meta_table_name(); |
|
555 | + $tables [ ] = \GFFormsModel::get_entry_meta_table_name(); |
|
556 | 556 | } |
557 | - $tables []= \GFFormsModel::get_lead_meta_table_name(); |
|
557 | + $tables [ ] = \GFFormsModel::get_lead_meta_table_name(); |
|
558 | 558 | |
559 | 559 | foreach ( $tables as $meta_table ) { |
560 | 560 | $sql = " |
@@ -572,13 +572,13 @@ discard block |
||
572 | 572 | $tables = array(); |
573 | 573 | |
574 | 574 | if ( version_compare( \GravityView_GFFormsModel::get_database_version(), '2.3-dev-1', '>=' ) && method_exists( 'GFFormsModel', 'get_entry_notes_table_name' ) ) { |
575 | - $tables[] = \GFFormsModel::get_entry_notes_table_name(); |
|
575 | + $tables[ ] = \GFFormsModel::get_entry_notes_table_name(); |
|
576 | 576 | } |
577 | 577 | |
578 | - $tables[] = \GFFormsModel::get_lead_notes_table_name(); |
|
578 | + $tables[ ] = \GFFormsModel::get_lead_notes_table_name(); |
|
579 | 579 | |
580 | - $disapproved = __('Disapproved the Entry for GravityView', 'gravityview'); |
|
581 | - $approved = __('Approved the Entry for GravityView', 'gravityview'); |
|
580 | + $disapproved = __( 'Disapproved the Entry for GravityView', 'gravityview' ); |
|
581 | + $approved = __( 'Approved the Entry for GravityView', 'gravityview' ); |
|
582 | 582 | |
583 | 583 | $suppress = $wpdb->suppress_errors(); |
584 | 584 | foreach ( $tables as $notes_table ) { |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | |
26 | 26 | public function __construct() { |
27 | 27 | $this->label = esc_html__( 'Other Entries', 'gravityview' ); |
28 | - $this->description = esc_html__('Display other entries created by the entry creator.', 'gravityview'); |
|
28 | + $this->description = esc_html__( 'Display other entries created by the entry creator.', 'gravityview' ); |
|
29 | 29 | parent::__construct(); |
30 | 30 | } |
31 | 31 | |
@@ -35,32 +35,32 @@ discard block |
||
35 | 35 | */ |
36 | 36 | function field_options( $field_options, $template_id, $field_id, $context, $input_type ) { |
37 | 37 | |
38 | - if( 'edit' === $context ) { |
|
38 | + if ( 'edit' === $context ) { |
|
39 | 39 | return $field_options; |
40 | 40 | } |
41 | 41 | |
42 | 42 | // No "Link to single entry"; all the items will be links to entries! |
43 | - unset( $field_options['show_as_link'] ); |
|
43 | + unset( $field_options[ 'show_as_link' ] ); |
|
44 | 44 | |
45 | 45 | $new_options = array(); |
46 | 46 | |
47 | - $new_options['link_format'] = array( |
|
47 | + $new_options[ 'link_format' ] = array( |
|
48 | 48 | 'type' => 'text', |
49 | 49 | 'label' => __( 'Entry link text (required)', 'gravityview' ), |
50 | - 'value' => __('Entry #{entry_id}', 'gravityview'), |
|
50 | + 'value' => __( 'Entry #{entry_id}', 'gravityview' ), |
|
51 | 51 | 'merge_tags' => 'force', |
52 | 52 | ); |
53 | 53 | |
54 | - $new_options['after_link'] = array( |
|
54 | + $new_options[ 'after_link' ] = array( |
|
55 | 55 | 'type' => 'textarea', |
56 | 56 | 'label' => __( 'Text or HTML to display after the link (optional)', 'gravityview' ), |
57 | - 'desc' => __('This content will be displayed below each entry link.', 'gravityview'), |
|
57 | + 'desc' => __( 'This content will be displayed below each entry link.', 'gravityview' ), |
|
58 | 58 | 'value' => '', |
59 | 59 | 'merge_tags' => 'force', |
60 | 60 | 'class' => 'widefat code', |
61 | 61 | ); |
62 | 62 | |
63 | - $new_options['page_size'] = array( |
|
63 | + $new_options[ 'page_size' ] = array( |
|
64 | 64 | 'type' => 'number', |
65 | 65 | 'label' => __( 'Entries to Display', 'gravityview' ), |
66 | 66 | 'desc' => __( 'What is the maximum number of entries that should be shown?', 'gravityview' ), |
@@ -68,14 +68,14 @@ discard block |
||
68 | 68 | 'merge_tags' => false, |
69 | 69 | ); |
70 | 70 | |
71 | - $new_options['no_entries_hide'] = array( |
|
71 | + $new_options[ 'no_entries_hide' ] = array( |
|
72 | 72 | 'type' => 'checkbox', |
73 | 73 | 'label' => __( 'Hide if no entries', 'gravityview' ), |
74 | 74 | 'desc' => __( 'Don\'t display this field if the entry creator has no other entries', 'gravityview' ), |
75 | 75 | 'value' => false, |
76 | 76 | ); |
77 | 77 | |
78 | - $new_options['no_entries_text'] = array( |
|
78 | + $new_options[ 'no_entries_text' ] = array( |
|
79 | 79 | 'type' => 'text', |
80 | 80 | 'label' => __( 'No Entries Text', 'gravityview' ), |
81 | 81 | 'desc' => __( 'The text that is shown if the entry creator has no other entries (and "Hide if no entries" is disabled).', 'gravityview' ), |
@@ -107,11 +107,11 @@ discard block |
||
107 | 107 | foreach ( $filters as $filter ) { |
108 | 108 | foreach ( $wp_filter[ $filter ] as $priority => $callbacks ) { |
109 | 109 | foreach ( $callbacks as $id => $callback ) { |
110 | - if ( ! is_array( $callback['function'] ) ) { |
|
110 | + if ( ! is_array( $callback[ 'function' ] ) ) { |
|
111 | 111 | continue; |
112 | 112 | } |
113 | - if ( $callback['function'][0] instanceof \GV\Widget ) { |
|
114 | - $remove[] = array( $filter, $priority, $id ); |
|
113 | + if ( $callback[ 'function' ][ 0 ] instanceof \GV\Widget ) { |
|
114 | + $remove[ ] = array( $filter, $priority, $id ); |
|
115 | 115 | } |
116 | 116 | } |
117 | 117 | } |
@@ -119,7 +119,7 @@ discard block |
||
119 | 119 | |
120 | 120 | foreach ( $remove as $r ) { |
121 | 121 | list( $filter, $priority, $id ) = $r; |
122 | - $removed[] = array( $filter, $priority, $id, $wp_filter[ $filter ]->callbacks[ $priority ][ $id ] ); |
|
122 | + $removed[ ] = array( $filter, $priority, $id, $wp_filter[ $filter ]->callbacks[ $priority ][ $id ] ); |
|
123 | 123 | unset( $wp_filter[ $filter ]->callbacks[ $priority ][ $id ] ); |
124 | 124 | } |
125 | 125 | |
@@ -143,10 +143,10 @@ discard block |
||
143 | 143 | public function filter_entries( $search_criteria, $form_id = null, $args = array(), $force_search_criteria = false ) { |
144 | 144 | $context = $this->context; |
145 | 145 | |
146 | - $created_by = $context->entry['created_by']; |
|
146 | + $created_by = $context->entry[ 'created_by' ]; |
|
147 | 147 | |
148 | 148 | /** Filter entries by approved and created_by. */ |
149 | - $search_criteria['field_filters'][] = array( |
|
149 | + $search_criteria[ 'field_filters' ][ ] = array( |
|
150 | 150 | 'key' => 'created_by', |
151 | 151 | 'value' => $created_by, |
152 | 152 | 'operator' => 'is' |
@@ -166,14 +166,14 @@ discard block |
||
166 | 166 | $criteria = apply_filters( 'gravityview/field/other_entries/criteria', $search_criteria, $context->view->settings->as_atts(), $context->view->form->ID, $context ); |
167 | 167 | |
168 | 168 | /** Force mode all and filter out our own entry. */ |
169 | - $search_criteria['field_filters']['mode'] = 'all'; |
|
170 | - $search_criteria['field_filters'][] = array( |
|
169 | + $search_criteria[ 'field_filters' ][ 'mode' ] = 'all'; |
|
170 | + $search_criteria[ 'field_filters' ][ ] = array( |
|
171 | 171 | 'key' => 'id', |
172 | 172 | 'value' => $context->entry->ID, |
173 | 173 | 'operator' => 'isnot' |
174 | 174 | ); |
175 | 175 | |
176 | - $search_criteria['paging']['page_size'] = $context->field->page_size ? : 10; |
|
176 | + $search_criteria[ 'paging' ][ 'page_size' ] = $context->field->page_size ?: 10; |
|
177 | 177 | |
178 | 178 | return $search_criteria; |
179 | 179 | } |
@@ -32,19 +32,19 @@ discard block |
||
32 | 32 | // If there's an overriding CSS file in the current template folder, use it. |
33 | 33 | $template_css_path = trailingslashit( get_stylesheet_directory() ) . 'gravityview/css/' . $css_file; |
34 | 34 | |
35 | - if( file_exists( $template_css_path ) ) { |
|
35 | + if ( file_exists( $template_css_path ) ) { |
|
36 | 36 | $path = trailingslashit( get_stylesheet_directory_uri() ) . 'gravityview/css/' . $css_file; |
37 | 37 | gravityview()->log->debug( 'Stylesheet override ({css_file})', array( 'css_file' => esc_attr( $css_file ) ) ); |
38 | 38 | } else { |
39 | 39 | // Default: use GravityView CSS file |
40 | 40 | |
41 | 41 | // If no path is provided, assume default plugin templates CSS folder |
42 | - if( '' === $dir_path ) { |
|
42 | + if ( '' === $dir_path ) { |
|
43 | 43 | $dir_path = GRAVITYVIEW_DIR . 'templates/css/'; |
44 | 44 | } |
45 | 45 | |
46 | 46 | // plugins_url() expects a path to a file, not directory. We append a file to be stripped. |
47 | - $path = plugins_url( $css_file, trailingslashit( $dir_path ) . 'stripped-by-plugin_basename.php' ); |
|
47 | + $path = plugins_url( $css_file, trailingslashit( $dir_path ) . 'stripped-by-plugin_basename.php' ); |
|
48 | 48 | } |
49 | 49 | |
50 | 50 | return $path; |
@@ -82,9 +82,9 @@ discard block |
||
82 | 82 | |
83 | 83 | $parsed_permalink = parse_url( get_permalink( $id ) ); |
84 | 84 | |
85 | - $permalink_args = isset( $parsed_permalink['query'] ) ? $parsed_permalink['query'] : false; |
|
85 | + $permalink_args = isset( $parsed_permalink[ 'query' ] ) ? $parsed_permalink[ 'query' ] : false; |
|
86 | 86 | |
87 | - if( empty( $permalink_args ) ) { |
|
87 | + if ( empty( $permalink_args ) ) { |
|
88 | 88 | return array(); |
89 | 89 | } |
90 | 90 | |
@@ -109,15 +109,15 @@ discard block |
||
109 | 109 | function gv_selected( $value, $current, $echo = true, $type = 'selected' ) { |
110 | 110 | |
111 | 111 | $output = ''; |
112 | - if( is_array( $current ) ) { |
|
113 | - if( in_array( $value, $current ) ) { |
|
112 | + if ( is_array( $current ) ) { |
|
113 | + if ( in_array( $value, $current ) ) { |
|
114 | 114 | $output = __checked_selected_helper( true, true, false, $type ); |
115 | 115 | } |
116 | 116 | } else { |
117 | 117 | $output = __checked_selected_helper( $value, $current, false, $type ); |
118 | 118 | } |
119 | 119 | |
120 | - if( $echo ) { |
|
120 | + if ( $echo ) { |
|
121 | 121 | echo $output; |
122 | 122 | } |
123 | 123 | |
@@ -125,7 +125,7 @@ discard block |
||
125 | 125 | } |
126 | 126 | |
127 | 127 | |
128 | -if( ! function_exists( 'gravityview_sanitize_html_class' ) ) { |
|
128 | +if ( ! function_exists( 'gravityview_sanitize_html_class' ) ) { |
|
129 | 129 | |
130 | 130 | /** |
131 | 131 | * sanitize_html_class doesn't handle spaces (multiple classes). We remedy that. |
@@ -171,7 +171,7 @@ discard block |
||
171 | 171 | */ |
172 | 172 | function gravityview_strip_whitespace( $string ) { |
173 | 173 | $string = normalize_whitespace( $string ); |
174 | - return preg_replace('/[\r\n\t ]+/', ' ', $string ); |
|
174 | + return preg_replace( '/[\r\n\t ]+/', ' ', $string ); |
|
175 | 175 | } |
176 | 176 | |
177 | 177 | /** |
@@ -185,7 +185,7 @@ discard block |
||
185 | 185 | * @return string Included file contents |
186 | 186 | */ |
187 | 187 | function gravityview_ob_include( $file_path, $object = NULL ) { |
188 | - if( ! file_exists( $file_path ) ) { |
|
188 | + if ( ! file_exists( $file_path ) ) { |
|
189 | 189 | gravityview()->log->error( 'File path does not exist. {path}', array( 'path' => $file_path ) ); |
190 | 190 | return ''; |
191 | 191 | } |
@@ -209,15 +209,15 @@ discard block |
||
209 | 209 | |
210 | 210 | $width = $height * 0.7586206897; |
211 | 211 | |
212 | - if( function_exists('is_rtl') && is_rtl() ) { |
|
213 | - $style = 'margin:10px 10px 10px 0; height='. $height .'px; width: '. $width .'px;'; |
|
212 | + if ( function_exists( 'is_rtl' ) && is_rtl() ) { |
|
213 | + $style = 'margin:10px 10px 10px 0; height=' . $height . 'px; width: ' . $width . 'px;'; |
|
214 | 214 | $css_class = is_string( $css_class ) ? $css_class : 'alignright'; |
215 | 215 | } else { |
216 | - $style = 'margin:10px 10px 10px 0; height='. $height .'px; width: '. $width .'px;'; |
|
216 | + $style = 'margin:10px 10px 10px 0; height=' . $height . 'px; width: ' . $width . 'px;'; |
|
217 | 217 | $css_class = is_string( $css_class ) ? $css_class : 'alignleft'; |
218 | 218 | } |
219 | 219 | |
220 | - return '<img src="'. esc_url( plugins_url( 'assets/images/astronaut-200x263.png', GRAVITYVIEW_FILE ) ) .'" class="'. gravityview_sanitize_html_class( $css_class ).'" height="'.intval( $height ).'" width="'.round( $width, 2 ).'" alt="The GravityView Astronaut Says:" style="'.$style.'" />'; |
|
220 | + return '<img src="' . esc_url( plugins_url( 'assets/images/astronaut-200x263.png', GRAVITYVIEW_FILE ) ) . '" class="' . gravityview_sanitize_html_class( $css_class ) . '" height="' . intval( $height ) . '" width="' . round( $width, 2 ) . '" alt="The GravityView Astronaut Says:" style="' . $style . '" />'; |
|
221 | 221 | } |
222 | 222 | |
223 | 223 | /** |
@@ -240,9 +240,9 @@ discard block |
||
240 | 240 | function gravityview_number_format( $number, $decimals = '' ) { |
241 | 241 | global $wp_locale; |
242 | 242 | |
243 | - if( '' === $decimals ) { |
|
243 | + if ( '' === $decimals ) { |
|
244 | 244 | |
245 | - $decimal_point = isset( $wp_locale ) ? $wp_locale->number_format['decimal_point'] : '.'; |
|
245 | + $decimal_point = isset( $wp_locale ) ? $wp_locale->number_format[ 'decimal_point' ] : '.'; |
|
246 | 246 | |
247 | 247 | /** |
248 | 248 | * Calculate the position of the decimal point in the number |
@@ -271,7 +271,7 @@ discard block |
||
271 | 271 | $parts = parse_url( $value ); |
272 | 272 | |
273 | 273 | // No domain? Strange...show the original text. |
274 | - if( empty( $parts['host'] ) ) { |
|
274 | + if ( empty( $parts[ 'host' ] ) ) { |
|
275 | 275 | return $value; |
276 | 276 | } |
277 | 277 | |
@@ -284,16 +284,16 @@ discard block |
||
284 | 284 | * @param boolean $enable Whether to strip the scheme. Return false to show scheme. (default: true)\n |
285 | 285 | * If true: `http://example.com => example.com` |
286 | 286 | */ |
287 | - if( false === apply_filters('gravityview_anchor_text_striphttp', true) ) { |
|
287 | + if ( false === apply_filters( 'gravityview_anchor_text_striphttp', true ) ) { |
|
288 | 288 | |
289 | - if( isset( $parts['scheme'] ) ) { |
|
290 | - $return .= $parts['scheme']; |
|
289 | + if ( isset( $parts[ 'scheme' ] ) ) { |
|
290 | + $return .= $parts[ 'scheme' ]; |
|
291 | 291 | } |
292 | 292 | |
293 | 293 | } |
294 | 294 | |
295 | 295 | // The domain, which may contain a subdomain |
296 | - $domain = $parts['host']; |
|
296 | + $domain = $parts[ 'host' ]; |
|
297 | 297 | |
298 | 298 | /** |
299 | 299 | * @filter `gravityview_anchor_text_stripwww` Strip www from the domain? |
@@ -301,10 +301,10 @@ discard block |
||
301 | 301 | * @param boolean $enable Whether to strip www. Return false to show www. (default: true)\n |
302 | 302 | * If true: `www.example.com => example.com` |
303 | 303 | */ |
304 | - $strip_www = apply_filters('gravityview_anchor_text_stripwww', true ); |
|
304 | + $strip_www = apply_filters( 'gravityview_anchor_text_stripwww', true ); |
|
305 | 305 | |
306 | - if( $strip_www ) { |
|
307 | - $domain = str_replace('www.', '', $domain ); |
|
306 | + if ( $strip_www ) { |
|
307 | + $domain = str_replace( 'www.', '', $domain ); |
|
308 | 308 | } |
309 | 309 | |
310 | 310 | /** |
@@ -314,11 +314,11 @@ discard block |
||
314 | 314 | * If true: `http://demo.example.com => example.com` \n |
315 | 315 | * If false: `http://demo.example.com => demo.example.com` |
316 | 316 | */ |
317 | - $strip_subdomains = apply_filters('gravityview_anchor_text_nosubdomain', true); |
|
317 | + $strip_subdomains = apply_filters( 'gravityview_anchor_text_nosubdomain', true ); |
|
318 | 318 | |
319 | - if( $strip_subdomains ) { |
|
319 | + if ( $strip_subdomains ) { |
|
320 | 320 | |
321 | - $domain = _gravityview_strip_subdomain( $parts['host'] ); |
|
321 | + $domain = _gravityview_strip_subdomain( $parts[ 'host' ] ); |
|
322 | 322 | |
323 | 323 | } |
324 | 324 | |
@@ -332,12 +332,12 @@ discard block |
||
332 | 332 | * If true: `http://example.com/sub/directory/page.html => example.com` \n |
333 | 333 | * If false: `http://example.com/sub/directory/page.html => example.com/sub/directory/page.html` |
334 | 334 | */ |
335 | - $root_only = apply_filters('gravityview_anchor_text_rootonly', true); |
|
335 | + $root_only = apply_filters( 'gravityview_anchor_text_rootonly', true ); |
|
336 | 336 | |
337 | - if( empty( $root_only ) ) { |
|
337 | + if ( empty( $root_only ) ) { |
|
338 | 338 | |
339 | - if( isset( $parts['path'] ) ) { |
|
340 | - $return .= $parts['path']; |
|
339 | + if ( isset( $parts[ 'path' ] ) ) { |
|
340 | + $return .= $parts[ 'path' ]; |
|
341 | 341 | } |
342 | 342 | } |
343 | 343 | |
@@ -347,12 +347,12 @@ discard block |
||
347 | 347 | * @param boolean $enable Whether to enable "root only". Return false to show full path. (default: true)\n |
348 | 348 | * If true: `http://example.com/?query=example => example.com` |
349 | 349 | */ |
350 | - $strip_query_string = apply_filters('gravityview_anchor_text_noquerystring', true ); |
|
350 | + $strip_query_string = apply_filters( 'gravityview_anchor_text_noquerystring', true ); |
|
351 | 351 | |
352 | - if( empty( $strip_query_string ) ) { |
|
352 | + if ( empty( $strip_query_string ) ) { |
|
353 | 353 | |
354 | - if( isset( $parts['query'] ) ) { |
|
355 | - $return .= '?'.$parts['query']; |
|
354 | + if ( isset( $parts[ 'query' ] ) ) { |
|
355 | + $return .= '?' . $parts[ 'query' ]; |
|
356 | 356 | } |
357 | 357 | |
358 | 358 | } |
@@ -369,8 +369,8 @@ discard block |
||
369 | 369 | */ |
370 | 370 | function _gravityview_strip_subdomain( $string_maybe_has_subdomain ) { |
371 | 371 | |
372 | - if( preg_match("/(?P<domain>[a-z0-9][a-z0-9\-]{1,63}\.(?:com\.|co\.|net\.|org\.|firm\.|me\.|school\.|law\.|gov\.|mod\.|msk\.|irkutsks\.|sa\.|act\.|police\.|plc\.|ac\.|tm\.|asso\.|biz\.|pro\.|cg\.|telememo\.)?[a-z\.]{2,6})$/i", $string_maybe_has_subdomain, $matches ) ) { |
|
373 | - return $matches['domain']; |
|
372 | + if ( preg_match( "/(?P<domain>[a-z0-9][a-z0-9\-]{1,63}\.(?:com\.|co\.|net\.|org\.|firm\.|me\.|school\.|law\.|gov\.|mod\.|msk\.|irkutsks\.|sa\.|act\.|police\.|plc\.|ac\.|tm\.|asso\.|biz\.|pro\.|cg\.|telememo\.)?[a-z\.]{2,6})$/i", $string_maybe_has_subdomain, $matches ) ) { |
|
373 | + return $matches[ 'domain' ]; |
|
374 | 374 | } else { |
375 | 375 | return $string_maybe_has_subdomain; |
376 | 376 | } |
@@ -439,7 +439,7 @@ discard block |
||
439 | 439 | |
440 | 440 | if ( in_array( $value, array( 'yes', 'true' ), true ) ) { |
441 | 441 | $value = true; |
442 | - } else if( in_array( $value, array( 'no', 'false' ), true ) ) { |
|
442 | + } else if ( in_array( $value, array( 'no', 'false' ), true ) ) { |
|
443 | 443 | $value = false; |
444 | 444 | } |
445 | 445 | } |
@@ -468,7 +468,7 @@ discard block |
||
468 | 468 | */ |
469 | 469 | function gv_maybe_json_decode( $value, $assoc = false, $depth = 512, $options = 0 ) { |
470 | 470 | |
471 | - if( ! is_string( $value ) ) { |
|
471 | + if ( ! is_string( $value ) ) { |
|
472 | 472 | return $value; |
473 | 473 | } |
474 | 474 | |
@@ -479,12 +479,12 @@ discard block |
||
479 | 479 | } |
480 | 480 | |
481 | 481 | // There was a JSON error (PHP 5.3+) |
482 | - if( function_exists('json_last_error') && JSON_ERROR_NONE !== json_last_error() ) { |
|
482 | + if ( function_exists( 'json_last_error' ) && JSON_ERROR_NONE !== json_last_error() ) { |
|
483 | 483 | return $value; |
484 | 484 | } |
485 | 485 | |
486 | 486 | // It wasn't JSON (PHP < 5.3 fallback) |
487 | - if( is_null( $decoded ) ) { |
|
487 | + if ( is_null( $decoded ) ) { |
|
488 | 488 | return $value; |
489 | 489 | } |
490 | 490 | |
@@ -507,7 +507,7 @@ discard block |
||
507 | 507 | |
508 | 508 | // Use the original function, if exists. |
509 | 509 | // Requires WP 4.4+ |
510 | - if( function_exists( 'map_deep') ) { |
|
510 | + if ( function_exists( 'map_deep' ) ) { |
|
511 | 511 | return map_deep( $value, $callback ); |
512 | 512 | } |
513 | 513 | |
@@ -572,7 +572,7 @@ discard block |
||
572 | 572 | |
573 | 573 | $exploded = explode( '.', "{$field_id}" ); |
574 | 574 | |
575 | - return isset( $exploded[1] ) ? intval( $exploded[1] ) : false; |
|
575 | + return isset( $exploded[ 1 ] ) ? intval( $exploded[ 1 ] ) : false; |
|
576 | 576 | } |
577 | 577 | |
578 | 578 | /** |
@@ -613,13 +613,13 @@ discard block |
||
613 | 613 | */ |
614 | 614 | $args = apply_filters( 'gravityview_get_terms_choices_args', $args ); |
615 | 615 | |
616 | - $terms = get_terms( $args['taxonomy'], $args ); |
|
616 | + $terms = get_terms( $args[ 'taxonomy' ], $args ); |
|
617 | 617 | |
618 | 618 | $choices = array(); |
619 | 619 | |
620 | 620 | if ( is_array( $terms ) ) { |
621 | 621 | foreach ( $terms as $term_id => $term_name ) { |
622 | - $choices[] = array( |
|
622 | + $choices[ ] = array( |
|
623 | 623 | 'text' => $term_name, |
624 | 624 | 'value' => $term_id |
625 | 625 | ); |
@@ -643,21 +643,21 @@ discard block |
||
643 | 643 | function _gravityview_process_posted_fields() { |
644 | 644 | $fields = array(); |
645 | 645 | |
646 | - if( !empty( $_POST['gv_fields'] ) ) { |
|
647 | - if ( ! is_array( $_POST['gv_fields'] ) ) { |
|
646 | + if ( ! empty( $_POST[ 'gv_fields' ] ) ) { |
|
647 | + if ( ! is_array( $_POST[ 'gv_fields' ] ) ) { |
|
648 | 648 | |
649 | 649 | // We are not using parse_str() due to max_input_vars limitation with large View configurations |
650 | 650 | $fields_holder = array(); |
651 | - GVCommon::gv_parse_str( stripslashes( $_POST['gv_fields'] ), $fields_holder ); |
|
651 | + GVCommon::gv_parse_str( stripslashes( $_POST[ 'gv_fields' ] ), $fields_holder ); |
|
652 | 652 | |
653 | - if ( isset( $fields_holder['fields'] ) ) { |
|
654 | - $fields = $fields_holder['fields']; |
|
653 | + if ( isset( $fields_holder[ 'fields' ] ) ) { |
|
654 | + $fields = $fields_holder[ 'fields' ]; |
|
655 | 655 | } else { |
656 | 656 | gravityview()->log->error( 'No `fields` key was found after parsing $fields string', array( 'data' => $fields_holder ) ); |
657 | 657 | } |
658 | 658 | |
659 | 659 | } else { |
660 | - $fields = $_POST['gv_fields']; |
|
660 | + $fields = $_POST[ 'gv_fields' ]; |
|
661 | 661 | } |
662 | 662 | } |
663 | 663 |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | 'total' => wp_count_posts( 'gravityview' )->publish, |
64 | 64 | ); |
65 | 65 | foreach ( $items as $item ) { |
66 | - $data['views'][] = $this->prepare_view_for_response( $item, $request ); |
|
66 | + $data[ 'views' ][ ] = $this->prepare_view_for_response( $item, $request ); |
|
67 | 67 | } |
68 | 68 | |
69 | 69 | return new \WP_REST_Response( $data, 200 ); |
@@ -82,7 +82,7 @@ discard block |
||
82 | 82 | |
83 | 83 | $url = $request->get_url_params(); |
84 | 84 | |
85 | - $view_id = intval( $url['id'] ); |
|
85 | + $view_id = intval( $url[ 'id' ] ); |
|
86 | 86 | |
87 | 87 | $item = get_post( $view_id ); |
88 | 88 | |
@@ -114,7 +114,7 @@ discard block |
||
114 | 114 | // Only output the fields that should be displayed. |
115 | 115 | $allowed = array(); |
116 | 116 | foreach ( $view->fields->by_position( "{$context}_*" )->by_visible()->all() as $field ) { |
117 | - $allowed[] = $field; |
|
117 | + $allowed[ ] = $field; |
|
118 | 118 | } |
119 | 119 | |
120 | 120 | /** |
@@ -133,7 +133,7 @@ discard block |
||
133 | 133 | |
134 | 134 | // Tack on additional fields if needed |
135 | 135 | foreach ( array_diff( $allowed_field_ids, wp_list_pluck( $allowed, 'ID' ) ) as $field_id ) { |
136 | - $allowed[] = is_numeric( $field_id ) ? \GV\GF_Field::by_id( $view->form, $field_id ) : \GV\Internal_Field::by_id( $field_id ); |
|
136 | + $allowed[ ] = is_numeric( $field_id ) ? \GV\GF_Field::by_id( $view->form, $field_id ) : \GV\Internal_Field::by_id( $field_id ); |
|
137 | 137 | } |
138 | 138 | |
139 | 139 | $r = new Request( $request ); |
@@ -201,10 +201,10 @@ discard block |
||
201 | 201 | public function get_sub_items( $request ) { |
202 | 202 | |
203 | 203 | $url = $request->get_url_params(); |
204 | - $view_id = intval( $url['id'] ); |
|
204 | + $view_id = intval( $url[ 'id' ] ); |
|
205 | 205 | $format = \GV\Utils::get( $url, 'format', 'json' ); |
206 | 206 | |
207 | - if( $post_id = $request->get_param('post_id') ) { |
|
207 | + if ( $post_id = $request->get_param( 'post_id' ) ) { |
|
208 | 208 | global $post; |
209 | 209 | |
210 | 210 | $post = get_post( $post_id ); |
@@ -302,7 +302,7 @@ discard block |
||
302 | 302 | |
303 | 303 | $data = array( 'entries' => $entries->all(), 'total' => $entries->total() ); |
304 | 304 | |
305 | - foreach ( $data['entries'] as &$entry ) { |
|
305 | + foreach ( $data[ 'entries' ] as &$entry ) { |
|
306 | 306 | $entry = $this->prepare_entry_for_response( $view, $entry, $request, 'directory' ); |
307 | 307 | } |
308 | 308 | |
@@ -321,8 +321,8 @@ discard block |
||
321 | 321 | */ |
322 | 322 | public function get_sub_item( $request ) { |
323 | 323 | $url = $request->get_url_params(); |
324 | - $view_id = intval( $url['id'] ); |
|
325 | - $entry_id = intval( $url['s_id'] ); |
|
324 | + $view_id = intval( $url[ 'id' ] ); |
|
325 | + $entry_id = intval( $url[ 's_id' ] ); |
|
326 | 326 | $format = \GV\Utils::get( $url, 'format', 'json' ); |
327 | 327 | |
328 | 328 | $view = \GV\View::by_id( $view_id ); |
@@ -357,32 +357,32 @@ discard block |
||
357 | 357 | // Add all the WP_Post data |
358 | 358 | $view_post = $view_post->to_array(); |
359 | 359 | |
360 | - unset( $view_post['to_ping'], $view_post['ping_status'], $view_post['pinged'], $view_post['post_type'], $view_post['filter'], $view_post['post_category'], $view_post['tags_input'], $view_post['post_content'], $view_post['post_content_filtered'] ); |
|
360 | + unset( $view_post[ 'to_ping' ], $view_post[ 'ping_status' ], $view_post[ 'pinged' ], $view_post[ 'post_type' ], $view_post[ 'filter' ], $view_post[ 'post_category' ], $view_post[ 'tags_input' ], $view_post[ 'post_content' ], $view_post[ 'post_content_filtered' ] ); |
|
361 | 361 | |
362 | 362 | $return = wp_parse_args( $item, $view_post ); |
363 | 363 | |
364 | - $return['title'] = $return['post_title']; |
|
364 | + $return[ 'title' ] = $return[ 'post_title' ]; |
|
365 | 365 | |
366 | - $return['settings'] = isset( $return['atts'] ) ? $return['atts'] : array(); |
|
367 | - unset( $return['atts'], $return['view_id'] ); |
|
366 | + $return[ 'settings' ] = isset( $return[ 'atts' ] ) ? $return[ 'atts' ] : array(); |
|
367 | + unset( $return[ 'atts' ], $return[ 'view_id' ] ); |
|
368 | 368 | |
369 | - $return['search_criteria'] = array( |
|
369 | + $return[ 'search_criteria' ] = array( |
|
370 | 370 | 'page_size' => rgars( $return, 'settings/page_size' ), |
371 | 371 | 'sort_field' => rgars( $return, 'settings/sort_field' ), |
372 | 372 | 'sort_direction' => rgars( $return, 'settings/sort_direction' ), |
373 | 373 | 'offset' => rgars( $return, 'settings/offset' ), |
374 | 374 | ); |
375 | 375 | |
376 | - unset( $return['settings']['page_size'], $return['settings']['sort_field'], $return['settings']['sort_direction'] ); |
|
376 | + unset( $return[ 'settings' ][ 'page_size' ], $return[ 'settings' ][ 'sort_field' ], $return[ 'settings' ][ 'sort_direction' ] ); |
|
377 | 377 | |
378 | 378 | // Redact for non-logged ins |
379 | 379 | if ( ! \GVCommon::has_cap( 'edit_others_gravityviews' ) ) { |
380 | - unset( $return['settings'] ); |
|
381 | - unset( $return['search_criteria'] ); |
|
380 | + unset( $return[ 'settings' ] ); |
|
381 | + unset( $return[ 'search_criteria' ] ); |
|
382 | 382 | } |
383 | 383 | |
384 | 384 | if ( ! \GFCommon::current_user_can_any( 'gravityforms_edit_forms' ) ) { |
385 | - unset( $return['form'] ); |
|
385 | + unset( $return[ 'form' ] ); |
|
386 | 386 | } |
387 | 387 | |
388 | 388 | return $return; |
@@ -398,7 +398,7 @@ discard block |
||
398 | 398 | $view_id = func_get_arg( 1 ); // $view_id override |
399 | 399 | } else { |
400 | 400 | $url = $request->get_url_params(); |
401 | - $view_id = intval( $url['id'] ); |
|
401 | + $view_id = intval( $url[ 'id' ] ); |
|
402 | 402 | } |
403 | 403 | |
404 | 404 | if ( ! $view = \GV\View::by_id( $view_id ) ) { |
@@ -444,8 +444,8 @@ discard block |
||
444 | 444 | } |
445 | 445 | |
446 | 446 | $url = $request->get_url_params(); |
447 | - $view_id = intval( $url['id'] ); |
|
448 | - $entry_id = intval( $url['s_id'] ); |
|
447 | + $view_id = intval( $url[ 'id' ] ); |
|
448 | + $entry_id = intval( $url[ 's_id' ] ); |
|
449 | 449 | |
450 | 450 | $view = \GV\View::by_id( $view_id ); |
451 | 451 | |
@@ -453,11 +453,11 @@ discard block |
||
453 | 453 | return new \WP_Error( 'rest_forbidden', 'You are not allowed to view this content.', 'gravityview' ); |
454 | 454 | } |
455 | 455 | |
456 | - if ( $entry['form_id'] != $view->form->ID ) { |
|
456 | + if ( $entry[ 'form_id' ] != $view->form->ID ) { |
|
457 | 457 | return new \WP_Error( 'rest_forbidden', 'You are not allowed to view this content.', 'gravityview' ); |
458 | 458 | } |
459 | 459 | |
460 | - if ( $entry['status'] != 'active' ) { |
|
460 | + if ( $entry[ 'status' ] != 'active' ) { |
|
461 | 461 | return new \WP_Error( 'rest_forbidden', 'You are not allowed to view this content.', 'gravityview' ); |
462 | 462 | } |
463 | 463 | |
@@ -465,10 +465,10 @@ discard block |
||
465 | 465 | return new \WP_Error( 'rest_forbidden', 'You are not allowed to view this content.', 'gravityview' ); |
466 | 466 | } |
467 | 467 | |
468 | - $is_admin_and_can_view = $view->settings->get( 'admin_show_all_statuses' ) && \GVCommon::has_cap('gravityview_moderate_entries', $view->ID ); |
|
468 | + $is_admin_and_can_view = $view->settings->get( 'admin_show_all_statuses' ) && \GVCommon::has_cap( 'gravityview_moderate_entries', $view->ID ); |
|
469 | 469 | |
470 | 470 | if ( $view->settings->get( 'show_only_approved' ) && ! $is_admin_and_can_view ) { |
471 | - if ( ! \GravityView_Entry_Approval_Status::is_approved( gform_get_meta( $entry->ID, \GravityView_Entry_Approval::meta_key ) ) ) { |
|
471 | + if ( ! \GravityView_Entry_Approval_Status::is_approved( gform_get_meta( $entry->ID, \GravityView_Entry_Approval::meta_key ) ) ) { |
|
472 | 472 | return new \WP_Error( 'rest_forbidden', 'You are not allowed to view this content.', 'gravityview' ); |
473 | 473 | } |
474 | 474 | } |
@@ -10,14 +10,14 @@ discard block |
||
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'] ) ) { |
|
13 | +if ( empty( $search_field[ 'choices' ] ) ) { |
|
14 | 14 | gravityview()->log->debug( 'search-field-select.php - No choices for field' ); |
15 | 15 | return; |
16 | 16 | } |
17 | 17 | |
18 | -if( is_array( $search_field['value'] ) ) { |
|
18 | +if ( is_array( $search_field[ 'value' ] ) ) { |
|
19 | 19 | gravityview()->log->debug( 'search-field-select.php - Array values passed; using first value.' ); |
20 | - $search_field['value'] = reset( $search_field['value'] ); |
|
20 | + $search_field[ 'value' ] = reset( $search_field[ 'value' ] ); |
|
21 | 21 | } |
22 | 22 | |
23 | 23 | /** |
@@ -26,26 +26,26 @@ discard block |
||
26 | 26 | * @param string $default_option Default: `—` (—) |
27 | 27 | * @param string $field_type Field type: "select" or "multiselect" |
28 | 28 | */ |
29 | -$default_option = apply_filters('gravityview/extension/search/select_default', '—', 'select' ); |
|
29 | +$default_option = apply_filters( 'gravityview/extension/search/select_default', '—', 'select' ); |
|
30 | 30 | |
31 | 31 | ?> |
32 | 32 | <div class="gv-search-box gv-search-field-select"> |
33 | - <?php if( ! gv_empty( $search_field['label'], false, false ) ) { ?> |
|
34 | - <label for="search-box-<?php echo esc_attr( $search_field['name'] ); ?>"><?php echo esc_html( $search_field['label'] ); ?></label> |
|
33 | + <?php if ( ! gv_empty( $search_field[ 'label' ], false, false ) ) { ?> |
|
34 | + <label for="search-box-<?php echo esc_attr( $search_field[ 'name' ] ); ?>"><?php echo esc_html( $search_field[ 'label' ] ); ?></label> |
|
35 | 35 | <?php } ?> |
36 | 36 | <p> |
37 | - <select name="<?php echo esc_attr( $search_field['name'] ); ?>" id="search-box-<?php echo esc_attr( $search_field['name'] ); ?>"> |
|
38 | - <option value="" <?php gv_selected( '', $search_field['value'], true ); ?>><?php echo esc_html( $default_option ); ?></option> |
|
37 | + <select name="<?php echo esc_attr( $search_field[ 'name' ] ); ?>" id="search-box-<?php echo esc_attr( $search_field[ 'name' ] ); ?>"> |
|
38 | + <option value="" <?php gv_selected( '', $search_field[ 'value' ], true ); ?>><?php echo esc_html( $default_option ); ?></option> |
|
39 | 39 | <?php |
40 | - foreach( $search_field['choices'] as $choice ) { ?> |
|
41 | - <?php if ( is_array( $choice['value'] ) ) { ?> |
|
42 | - <optgroup label="<?php echo esc_attr( $choice['text'] ); ?>"> |
|
43 | - <?php foreach ( $choice['value'] as $subchoice ): ?> |
|
44 | - <option value="<?php echo esc_attr( $subchoice['value'] ); ?>"><?php echo esc_html( $subchoice['text'] ); ?></option> |
|
40 | + foreach ( $search_field[ 'choices' ] as $choice ) { ?> |
|
41 | + <?php if ( is_array( $choice[ 'value' ] ) ) { ?> |
|
42 | + <optgroup label="<?php echo esc_attr( $choice[ 'text' ] ); ?>"> |
|
43 | + <?php foreach ( $choice[ 'value' ] as $subchoice ): ?> |
|
44 | + <option value="<?php echo esc_attr( $subchoice[ 'value' ] ); ?>"><?php echo esc_html( $subchoice[ 'text' ] ); ?></option> |
|
45 | 45 | <?php endforeach; ?> |
46 | 46 | </optgroup> |
47 | 47 | <?php } else { ?> |
48 | - <option value="<?php echo esc_attr( $choice['value'] ); ?>" <?php gv_selected( esc_attr( $choice['value'] ), esc_attr( $search_field['value'] ), true ); ?>><?php echo esc_html( $choice['text'] ); ?></option> |
|
48 | + <option value="<?php echo esc_attr( $choice[ 'value' ] ); ?>" <?php gv_selected( esc_attr( $choice[ 'value' ] ), esc_attr( $search_field[ 'value' ] ), true ); ?>><?php echo esc_html( $choice[ 'text' ] ); ?></option> |
|
49 | 49 | <?php } ?> |
50 | 50 | <?php } ?> |
51 | 51 | </select> |
@@ -114,9 +114,9 @@ discard block |
||
114 | 114 | ) ); |
115 | 115 | |
116 | 116 | // This is just HTML we don't need. |
117 | - unset( $response['message'] ); |
|
117 | + unset( $response[ 'message' ] ); |
|
118 | 118 | |
119 | - switch ( intval( $response['price_id'] ) ) { |
|
119 | + switch ( intval( $response[ 'price_id' ] ) ) { |
|
120 | 120 | default: |
121 | 121 | case 1: |
122 | 122 | $package = 'Core'; |
@@ -142,12 +142,12 @@ discard block |
||
142 | 142 | 'email' => $current_user->user_email, |
143 | 143 | 'name' => mb_substr( $current_user->display_name, 0, 80 ), |
144 | 144 | 'signature' => hash_hmac( 'sha256', $current_user->user_email, self::beacon_key ), |
145 | - 'License Key' => $response['license_key'] . ' (' . ucwords( $response['license'] ) . ')', |
|
145 | + 'License Key' => $response[ 'license_key' ] . ' (' . ucwords( $response[ 'license' ] ) . ')', |
|
146 | 146 | 'License Level' => $package, |
147 | 147 | 'Alt Emails' => sprintf( "Admin: %s, GV Support: %s", get_bloginfo( 'admin_email' ), gravityview()->plugin->settings->get( 'support-email' ) ), |
148 | - 'Payment Details' => $response['customer_name'] . ' ' . $response['customer_email'], |
|
148 | + 'Payment Details' => $response[ 'customer_name' ] . ' ' . $response[ 'customer_email' ], |
|
149 | 149 | 'WordPress Version' => get_bloginfo( 'version', 'display' ), |
150 | - 'PHP Version' => phpversion() . ' on ' . esc_html( $_SERVER['SERVER_SOFTWARE'] ), |
|
150 | + 'PHP Version' => phpversion() . ' on ' . esc_html( $_SERVER[ 'SERVER_SOFTWARE' ] ), |
|
151 | 151 | 'No-Conflict Mode' => empty( $no_conflict_mode ) ? 'Disabled' : 'Enabled', |
152 | 152 | 'GravityView Version' => \GV\Plugin::$version, |
153 | 153 | 'Gravity Forms Version' => GFForms::$version, |
@@ -157,7 +157,7 @@ discard block |
||
157 | 157 | ob_get_clean(); |
158 | 158 | |
159 | 159 | // Help Scout length limit is 200 characters |
160 | - foreach( $data as $key => $value ) { |
|
160 | + foreach ( $data as $key => $value ) { |
|
161 | 161 | if ( ! is_string( $value ) ) { |
162 | 162 | continue; |
163 | 163 | } |
@@ -31,11 +31,11 @@ discard block |
||
31 | 31 | |
32 | 32 | function field_options( $field_options, $template_id = '', $field_id = '', $context = '', $input_type = '' ) { |
33 | 33 | |
34 | - if( 'edit' === $context ) { |
|
34 | + if ( 'edit' === $context ) { |
|
35 | 35 | return $field_options; |
36 | 36 | } |
37 | 37 | |
38 | - $this->add_field_support('date_display', $field_options ); |
|
38 | + $this->add_field_support( 'date_display', $field_options ); |
|
39 | 39 | |
40 | 40 | return $field_options; |
41 | 41 | } |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | $field_input_id = gravityview_get_input_id_from_id( $field_id ); |
84 | 84 | |
85 | 85 | $date_field_output = ''; |
86 | - switch( $field_input_id ) { |
|
86 | + switch ( $field_input_id ) { |
|
87 | 87 | case 1: |
88 | 88 | $date_field_output = \GV\Utils::get( $parsed_date, 'month' ); |
89 | 89 | break; |