@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | $default_size = 25; |
46 | 46 | |
47 | 47 | if ( $context instanceof \GV\Template_Context ) { |
48 | - $default_size = (int) $context->view->settings->get( 'page_size' ); |
|
48 | + $default_size = (int)$context->view->settings->get( 'page_size' ); |
|
49 | 49 | } |
50 | 50 | |
51 | 51 | $sizes = array( 10, 25, $default_size, 50, 100 ); |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | |
57 | 57 | $page_sizes = array(); |
58 | 58 | foreach ( $sizes as $size ) { |
59 | - $page_sizes [] = array( |
|
59 | + $page_sizes [ ] = array( |
|
60 | 60 | 'value' => $size, |
61 | 61 | 'text' => $size |
62 | 62 | ); |
@@ -81,11 +81,11 @@ discard block |
||
81 | 81 | */ |
82 | 82 | public function render_frontend( $widget_args, $content = '', $context = null ) { |
83 | 83 | |
84 | - if( ! $this->pre_render_frontend() ) { |
|
84 | + if ( ! $this->pre_render_frontend() ) { |
|
85 | 85 | return; |
86 | 86 | } |
87 | 87 | |
88 | - $page_size = (int) \GV\Utils::_GET( 'page_size', $context->view->settings->get( 'page_size' ) ); |
|
88 | + $page_size = (int)\GV\Utils::_GET( 'page_size', $context->view->settings->get( 'page_size' ) ); |
|
89 | 89 | |
90 | 90 | $settings = shortcode_atts( array( |
91 | 91 | 'label' => __( 'Page Size', 'gravityview' ), |
@@ -104,20 +104,20 @@ discard block |
||
104 | 104 | <div class="gv-widget-page-size"> |
105 | 105 | <form method="get" action="<?php echo esc_url( add_query_arg( array() ) ); ?>" onchange="this.submit();"> |
106 | 106 | <div> |
107 | - <?php if( ! empty( $settings['label'] ) ) { ?> |
|
108 | - <label for="gv-page_size"><?php echo esc_html( $settings['label'] ); ?></label> |
|
107 | + <?php if ( ! empty( $settings[ 'label' ] ) ) { ?> |
|
108 | + <label for="gv-page_size"><?php echo esc_html( $settings[ 'label' ] ); ?></label> |
|
109 | 109 | <?php } ?> |
110 | 110 | <select name="page_size" id="gv-page_size"> |
111 | - <option value=""><?php echo esc_html( $settings['default_choice_text'] ); ?></option> |
|
111 | + <option value=""><?php echo esc_html( $settings[ 'default_choice_text' ] ); ?></option> |
|
112 | 112 | <?php |
113 | - foreach ( $settings['choices'] as $choice ) { ?> |
|
114 | - <option value='<?php echo esc_attr( $choice['value'] ); ?>'<?php gv_selected( esc_attr( $choice['value'] ), esc_attr( $page_size ), true ); ?>><?php echo esc_html( $choice['text'] ); ?></option> |
|
113 | + foreach ( $settings[ 'choices' ] as $choice ) { ?> |
|
114 | + <option value='<?php echo esc_attr( $choice[ 'value' ] ); ?>'<?php gv_selected( esc_attr( $choice[ 'value' ] ), esc_attr( $page_size ), true ); ?>><?php echo esc_html( $choice[ 'text' ] ); ?></option> |
|
115 | 115 | <?php } ?> |
116 | 116 | </select> |
117 | 117 | <input type="submit" value="Submit" style="visibility: hidden; position: absolute;" /><?php |
118 | - if( ! empty( $_GET ) ) { |
|
118 | + if ( ! empty( $_GET ) ) { |
|
119 | 119 | $get = $_GET; |
120 | - unset( $get['page_size'] ); |
|
120 | + unset( $get[ 'page_size' ] ); |
|
121 | 121 | foreach ( $get as $key => $value ) { |
122 | 122 | printf( '<input type="hidden" name="%s" value="%s" />', esc_attr( $key ), esc_attr( $value ) ); |
123 | 123 | } |
@@ -150,7 +150,7 @@ discard block |
||
150 | 150 | } |
151 | 151 | |
152 | 152 | // Already overridden |
153 | - if ( (int) $page_size === (int) $view->settings->get( 'page_size' ) ) { |
|
153 | + if ( (int)$page_size === (int)$view->settings->get( 'page_size' ) ) { |
|
154 | 154 | return; |
155 | 155 | } |
156 | 156 | |
@@ -158,7 +158,7 @@ discard block |
||
158 | 158 | 'view' => $view, |
159 | 159 | ) ); |
160 | 160 | |
161 | - if ( ! in_array( (int) $page_size, wp_list_pluck( self::get_page_sizes( $context ), 'value' ), true ) ) { |
|
161 | + if ( ! in_array( (int)$page_size, wp_list_pluck( self::get_page_sizes( $context ), 'value' ), true ) ) { |
|
162 | 162 | gravityview()->log->warning( 'The passed page size is not allowed: {page_size}. Not modifying result.', array( 'page_size' => $page_size ) ); |
163 | 163 | return; |
164 | 164 | } |
@@ -108,9 +108,9 @@ discard block |
||
108 | 108 | ) ); |
109 | 109 | |
110 | 110 | // This is just HTML we don't need. |
111 | - unset( $response['message'] ); |
|
111 | + unset( $response[ 'message' ] ); |
|
112 | 112 | |
113 | - switch ( intval( $response['price_id'] ) ) { |
|
113 | + switch ( intval( $response[ 'price_id' ] ) ) { |
|
114 | 114 | default: |
115 | 115 | case 1: |
116 | 116 | $package = 'Core'; |
@@ -128,19 +128,19 @@ discard block |
||
128 | 128 | |
129 | 129 | $data = array( |
130 | 130 | 'email' => gravityview()->plugin->settings->get( 'support-email' ), |
131 | - 'name' => $response['customer_name'], |
|
132 | - 'Valid License?' => ucwords( $response['license'] ), |
|
133 | - 'License Key' => $response['license_key'], |
|
131 | + 'name' => $response[ 'customer_name' ], |
|
132 | + 'Valid License?' => ucwords( $response[ 'license' ] ), |
|
133 | + 'License Key' => $response[ 'license_key' ], |
|
134 | 134 | 'License Level' => $package, |
135 | 135 | 'Site Admin Email' => get_bloginfo( 'admin_email' ), |
136 | 136 | 'Support Email' => gravityview()->plugin->settings->get( 'support-email' ), |
137 | - 'License Limit' => $response['license_limit'], |
|
138 | - 'Site Count' => $response['site_count'], |
|
139 | - 'License Expires' => $response['expires'], |
|
140 | - 'Activations Left' => $response['activations_left'], |
|
141 | - 'Payment ID' => $response['payment_id'], |
|
142 | - 'Payment Name' => $response['customer_name'], |
|
143 | - 'Payment Email' => $response['customer_email'], |
|
137 | + 'License Limit' => $response[ 'license_limit' ], |
|
138 | + 'Site Count' => $response[ 'site_count' ], |
|
139 | + 'License Expires' => $response[ 'expires' ], |
|
140 | + 'Activations Left' => $response[ 'activations_left' ], |
|
141 | + 'Payment ID' => $response[ 'payment_id' ], |
|
142 | + 'Payment Name' => $response[ 'customer_name' ], |
|
143 | + 'Payment Email' => $response[ 'customer_email' ], |
|
144 | 144 | 'WordPress Version' => get_bloginfo( 'version', 'display' ), |
145 | 145 | 'PHP Version' => phpversion(), |
146 | 146 | 'GravityView Version' => \GV\Plugin::$version, |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | |
32 | 32 | $form = $gravityview_view->getForm(); |
33 | 33 | |
34 | - if ( defined( 'DOING_GRAVITYVIEW_TESTS' ) && ! empty( $GLOBALS['GravityView_API_field_label_override'] ) ) { |
|
34 | + if ( defined( 'DOING_GRAVITYVIEW_TESTS' ) && ! empty( $GLOBALS[ 'GravityView_API_field_label_override' ] ) ) { |
|
35 | 35 | /** Allow to fall through for back compatibility testing purposes. */ |
36 | 36 | } else { |
37 | 37 | return \GV\Mocks\GravityView_API_field_label( $form, $field, $entry, $force_show_label ); |
@@ -39,29 +39,29 @@ discard block |
||
39 | 39 | |
40 | 40 | $label = ''; |
41 | 41 | |
42 | - if( !empty( $field['show_label'] ) || $force_show_label ) { |
|
42 | + if ( ! empty( $field[ 'show_label' ] ) || $force_show_label ) { |
|
43 | 43 | |
44 | - $label = $field['label']; |
|
44 | + $label = $field[ 'label' ]; |
|
45 | 45 | |
46 | 46 | // Support Gravity Forms 1.9+ |
47 | - if( class_exists( 'GF_Field' ) ) { |
|
47 | + if ( class_exists( 'GF_Field' ) ) { |
|
48 | 48 | |
49 | - $field_object = RGFormsModel::get_field( $form, $field['id'] ); |
|
49 | + $field_object = RGFormsModel::get_field( $form, $field[ 'id' ] ); |
|
50 | 50 | |
51 | - if( $field_object ) { |
|
51 | + if ( $field_object ) { |
|
52 | 52 | |
53 | - $input = GFFormsModel::get_input( $field_object, $field['id'] ); |
|
53 | + $input = GFFormsModel::get_input( $field_object, $field[ 'id' ] ); |
|
54 | 54 | |
55 | 55 | // This is a complex field, with labels on a per-input basis |
56 | - if( $input ) { |
|
56 | + if ( $input ) { |
|
57 | 57 | |
58 | 58 | // Does the input have a custom label on a per-input basis? Otherwise, default label. |
59 | - $label = ! empty( $input['customLabel'] ) ? $input['customLabel'] : $input['label']; |
|
59 | + $label = ! empty( $input[ 'customLabel' ] ) ? $input[ 'customLabel' ] : $input[ 'label' ]; |
|
60 | 60 | |
61 | 61 | } else { |
62 | 62 | |
63 | 63 | // This is a field with one label |
64 | - $label = $field_object->get_field_label( true, $field['label'] ); |
|
64 | + $label = $field_object->get_field_label( true, $field[ 'label' ] ); |
|
65 | 65 | |
66 | 66 | } |
67 | 67 | |
@@ -70,9 +70,9 @@ discard block |
||
70 | 70 | } |
71 | 71 | |
72 | 72 | // Use Gravity Forms label by default, but if a custom label is defined in GV, use it. |
73 | - if ( !empty( $field['custom_label'] ) ) { |
|
73 | + if ( ! empty( $field[ 'custom_label' ] ) ) { |
|
74 | 74 | |
75 | - $label = self::replace_variables( $field['custom_label'], $form, $entry ); |
|
75 | + $label = self::replace_variables( $field[ 'custom_label' ], $form, $entry ); |
|
76 | 76 | |
77 | 77 | } |
78 | 78 | |
@@ -134,11 +134,11 @@ discard block |
||
134 | 134 | |
135 | 135 | $width = NULL; |
136 | 136 | |
137 | - if( !empty( $field['width'] ) ) { |
|
138 | - $width = absint( $field['width'] ); |
|
137 | + if ( ! empty( $field[ 'width' ] ) ) { |
|
138 | + $width = absint( $field[ 'width' ] ); |
|
139 | 139 | |
140 | 140 | // If using percentages, limit to 100% |
141 | - if( '%d%%' === $format && $width > 100 ) { |
|
141 | + if ( '%d%%' === $format && $width > 100 ) { |
|
142 | 142 | $width = 100; |
143 | 143 | } |
144 | 144 | |
@@ -159,42 +159,42 @@ discard block |
||
159 | 159 | public static function field_class( $field, $form = NULL, $entry = NULL ) { |
160 | 160 | $classes = array(); |
161 | 161 | |
162 | - if( !empty( $field['custom_class'] ) ) { |
|
162 | + if ( ! empty( $field[ 'custom_class' ] ) ) { |
|
163 | 163 | |
164 | - $custom_class = $field['custom_class']; |
|
164 | + $custom_class = $field[ 'custom_class' ]; |
|
165 | 165 | |
166 | - if( !empty( $entry ) ) { |
|
166 | + if ( ! empty( $entry ) ) { |
|
167 | 167 | |
168 | 168 | // We want the merge tag to be formatted as a class. The merge tag may be |
169 | 169 | // replaced by a multiple-word value that should be output as a single class. |
170 | 170 | // "Office Manager" will be formatted as `.OfficeManager`, not `.Office` and `.Manager` |
171 | - add_filter('gform_merge_tag_filter', 'sanitize_html_class'); |
|
171 | + add_filter( 'gform_merge_tag_filter', 'sanitize_html_class' ); |
|
172 | 172 | |
173 | - $custom_class = self::replace_variables( $custom_class, $form, $entry); |
|
173 | + $custom_class = self::replace_variables( $custom_class, $form, $entry ); |
|
174 | 174 | |
175 | 175 | // And then we want life to return to normal |
176 | - remove_filter('gform_merge_tag_filter', 'sanitize_html_class'); |
|
176 | + remove_filter( 'gform_merge_tag_filter', 'sanitize_html_class' ); |
|
177 | 177 | } |
178 | 178 | |
179 | 179 | // And now we want the spaces to be handled nicely. |
180 | - $classes[] = gravityview_sanitize_html_class( $custom_class ); |
|
180 | + $classes[ ] = gravityview_sanitize_html_class( $custom_class ); |
|
181 | 181 | |
182 | 182 | } |
183 | 183 | |
184 | - if(!empty($field['id'])) { |
|
185 | - if( !empty( $form ) && !empty( $form['id'] ) ) { |
|
186 | - $form_id = '-'.$form['id']; |
|
184 | + if ( ! empty( $field[ 'id' ] ) ) { |
|
185 | + if ( ! empty( $form ) && ! empty( $form[ 'id' ] ) ) { |
|
186 | + $form_id = '-' . $form[ 'id' ]; |
|
187 | 187 | } else { |
188 | 188 | // @deprecated path. Form should always be given. |
189 | 189 | gravityview()->log->warning( 'GravityView_View::getInstance() legacy API called' ); |
190 | 190 | $gravityview_view = GravityView_View::getInstance(); |
191 | - $form_id = $gravityview_view->getFormId() ? '-'. $gravityview_view->getFormId() : ''; |
|
191 | + $form_id = $gravityview_view->getFormId() ? '-' . $gravityview_view->getFormId() : ''; |
|
192 | 192 | } |
193 | 193 | |
194 | - $classes[] = 'gv-field'.$form_id.'-'.$field['id']; |
|
194 | + $classes[ ] = 'gv-field' . $form_id . '-' . $field[ 'id' ]; |
|
195 | 195 | } |
196 | 196 | |
197 | - return esc_attr(implode(' ', $classes)); |
|
197 | + return esc_attr( implode( ' ', $classes ) ); |
|
198 | 198 | } |
199 | 199 | |
200 | 200 | /** |
@@ -210,11 +210,11 @@ discard block |
||
210 | 210 | * @return string Sanitized unique HTML `id` attribute for the field |
211 | 211 | */ |
212 | 212 | public static function field_html_attr_id( $field, $form = array(), $entry = array() ) { |
213 | - $id = $field['id']; |
|
213 | + $id = $field[ 'id' ]; |
|
214 | 214 | |
215 | 215 | if ( ! empty( $id ) ) { |
216 | - if ( ! empty( $form ) && ! empty( $form['id'] ) ) { |
|
217 | - $form_id = '-' . $form['id']; |
|
216 | + if ( ! empty( $form ) && ! empty( $form[ 'id' ] ) ) { |
|
217 | + $form_id = '-' . $form[ 'id' ]; |
|
218 | 218 | } else { |
219 | 219 | // @deprecated path. Form should always be given. |
220 | 220 | gravityview()->log->warning( 'GravityView_View::getInstance() legacy API called' ); |
@@ -222,7 +222,7 @@ discard block |
||
222 | 222 | $form_id = $gravityview_view->getFormId() ? '-' . $gravityview_view->getFormId() : ''; |
223 | 223 | } |
224 | 224 | |
225 | - $id = 'gv-field' . $form_id . '-' . $field['id']; |
|
225 | + $id = 'gv-field' . $form_id . '-' . $field[ 'id' ]; |
|
226 | 226 | } |
227 | 227 | |
228 | 228 | return esc_attr( $id ); |
@@ -262,14 +262,14 @@ discard block |
||
262 | 262 | */ |
263 | 263 | public static function entry_link_html( $entry = array(), $anchor_text = '', $passed_tag_atts = array(), $field_settings = array(), $base_id = null ) { |
264 | 264 | |
265 | - if ( empty( $entry ) || ! is_array( $entry ) || ! isset( $entry['id'] ) ) { |
|
265 | + if ( empty( $entry ) || ! is_array( $entry ) || ! isset( $entry[ 'id' ] ) ) { |
|
266 | 266 | gravityview()->log->debug( 'Entry not defined; returning null', array( 'data' => $entry ) ); |
267 | 267 | return NULL; |
268 | 268 | } |
269 | 269 | |
270 | 270 | $href = self::entry_link( $entry, $base_id ); |
271 | 271 | |
272 | - if( '' === $href ) { |
|
272 | + if ( '' === $href ) { |
|
273 | 273 | return NULL; |
274 | 274 | } |
275 | 275 | |
@@ -306,7 +306,7 @@ discard block |
||
306 | 306 | } else { |
307 | 307 | $gravityview_view = GravityView_View::getInstance(); |
308 | 308 | |
309 | - if( $gravityview_view && ( $gravityview_view->curr_start || $gravityview_view->curr_end || $gravityview_view->curr_search ) ) { |
|
309 | + if ( $gravityview_view && ( $gravityview_view->curr_start || $gravityview_view->curr_end || $gravityview_view->curr_search ) ) { |
|
310 | 310 | $is_search = true; |
311 | 311 | } |
312 | 312 | } |
@@ -403,9 +403,9 @@ discard block |
||
403 | 403 | |
404 | 404 | // If we've saved the permalink in memory, use it |
405 | 405 | // @since 1.3 |
406 | - $link = wp_cache_get( 'gv_directory_link_'.$post_id ); |
|
406 | + $link = wp_cache_get( 'gv_directory_link_' . $post_id ); |
|
407 | 407 | |
408 | - if ( (int) $post_id === (int) get_option( 'page_on_front' ) ) { |
|
408 | + if ( (int)$post_id === (int)get_option( 'page_on_front' ) ) { |
|
409 | 409 | $link = home_url(); |
410 | 410 | } |
411 | 411 | |
@@ -414,7 +414,7 @@ discard block |
||
414 | 414 | |
415 | 415 | // If not yet saved, cache the permalink. |
416 | 416 | // @since 1.3 |
417 | - wp_cache_set( 'gv_directory_link_'.$post_id, $link ); |
|
417 | + wp_cache_set( 'gv_directory_link_' . $post_id, $link ); |
|
418 | 418 | } |
419 | 419 | |
420 | 420 | // Deal with returning to proper pagination for embedded views |
@@ -422,13 +422,13 @@ discard block |
||
422 | 422 | |
423 | 423 | $args = array(); |
424 | 424 | |
425 | - if( $pagenum = \GV\Utils::_GET( 'pagenum' ) ) { |
|
426 | - $args['pagenum'] = intval( $pagenum ); |
|
425 | + if ( $pagenum = \GV\Utils::_GET( 'pagenum' ) ) { |
|
426 | + $args[ 'pagenum' ] = intval( $pagenum ); |
|
427 | 427 | } |
428 | 428 | |
429 | - if( $sort = \GV\Utils::_GET( 'sort' ) ) { |
|
430 | - $args['sort'] = $sort; |
|
431 | - $args['dir'] = \GV\Utils::_GET( 'dir' ); |
|
429 | + if ( $sort = \GV\Utils::_GET( 'sort' ) ) { |
|
430 | + $args[ 'sort' ] = $sort; |
|
431 | + $args[ 'dir' ] = \GV\Utils::_GET( 'dir' ); |
|
432 | 432 | } |
433 | 433 | |
434 | 434 | $link = add_query_arg( $args, $link ); |
@@ -465,7 +465,7 @@ discard block |
||
465 | 465 | private static function get_custom_entry_slug( $id, $entry = array() ) { |
466 | 466 | |
467 | 467 | // Generate an unique hash to use as the default value |
468 | - $slug = substr( wp_hash( $id, 'gravityview'.$id ), 0, 8 ); |
|
468 | + $slug = substr( wp_hash( $id, 'gravityview' . $id ), 0, 8 ); |
|
469 | 469 | |
470 | 470 | /** |
471 | 471 | * @filter `gravityview_entry_slug` Modify the unique hash ID generated, if you want to improve usability or change the format. This will allow for custom URLs, such as `{entryid}-{first-name}` or even, if unique, `{first-name}-{last-name}` |
@@ -476,7 +476,7 @@ discard block |
||
476 | 476 | $slug = apply_filters( 'gravityview_entry_slug', $slug, $id, $entry ); |
477 | 477 | |
478 | 478 | // Make sure we have something - use the original ID as backup. |
479 | - if( empty( $slug ) ) { |
|
479 | + if ( empty( $slug ) ) { |
|
480 | 480 | $slug = $id; |
481 | 481 | } |
482 | 482 | |
@@ -570,15 +570,15 @@ discard block |
||
570 | 570 | * @param boolean $custom Should we process the custom entry slug? |
571 | 571 | */ |
572 | 572 | $custom = apply_filters( 'gravityview_custom_entry_slug', false ); |
573 | - if( $custom ) { |
|
573 | + if ( $custom ) { |
|
574 | 574 | // create the gravityview_unique_id and save it |
575 | 575 | |
576 | 576 | // Get the entry hash |
577 | - $hash = self::get_custom_entry_slug( $entry['id'], $entry ); |
|
577 | + $hash = self::get_custom_entry_slug( $entry[ 'id' ], $entry ); |
|
578 | 578 | |
579 | - gravityview()->log->debug( 'Setting hash for entry {entry_id}: {hash}', array( 'entry_id' => $entry['id'], 'hash' => $hash ) ); |
|
579 | + gravityview()->log->debug( 'Setting hash for entry {entry_id}: {hash}', array( 'entry_id' => $entry[ 'id' ], 'hash' => $hash ) ); |
|
580 | 580 | |
581 | - gform_update_meta( $entry['id'], 'gravityview_unique_id', $hash, \GV\Utils::get( $entry, 'form_id' ) ); |
|
581 | + gform_update_meta( $entry[ 'id' ], 'gravityview_unique_id', $hash, \GV\Utils::get( $entry, 'form_id' ) ); |
|
582 | 582 | |
583 | 583 | } |
584 | 584 | } |
@@ -597,7 +597,7 @@ discard block |
||
597 | 597 | |
598 | 598 | if ( ! empty( $entry ) && ! is_array( $entry ) ) { |
599 | 599 | $entry = GVCommon::get_entry( $entry ); |
600 | - } else if( empty( $entry ) ) { |
|
600 | + } else if ( empty( $entry ) ) { |
|
601 | 601 | // @deprecated path |
602 | 602 | $entry = GravityView_frontend::getInstance()->getEntry(); |
603 | 603 | } |
@@ -617,9 +617,9 @@ discard block |
||
617 | 617 | |
618 | 618 | $query_arg_name = \GV\Entry::get_endpoint_name(); |
619 | 619 | |
620 | - $entry_slug = self::get_entry_slug( $entry['id'], $entry ); |
|
620 | + $entry_slug = self::get_entry_slug( $entry[ 'id' ], $entry ); |
|
621 | 621 | |
622 | - if ( get_option('permalink_structure') && !is_preview() ) { |
|
622 | + if ( get_option( 'permalink_structure' ) && ! is_preview() ) { |
|
623 | 623 | |
624 | 624 | $args = array(); |
625 | 625 | |
@@ -629,9 +629,9 @@ discard block |
||
629 | 629 | */ |
630 | 630 | $link_parts = explode( '?', $directory_link ); |
631 | 631 | |
632 | - $query = !empty( $link_parts[1] ) ? '?'.$link_parts[1] : ''; |
|
632 | + $query = ! empty( $link_parts[ 1 ] ) ? '?' . $link_parts[ 1 ] : ''; |
|
633 | 633 | |
634 | - $directory_link = trailingslashit( $link_parts[0] ) . $query_arg_name . '/'. $entry_slug .'/' . $query; |
|
634 | + $directory_link = trailingslashit( $link_parts[ 0 ] ) . $query_arg_name . '/' . $entry_slug . '/' . $query; |
|
635 | 635 | |
636 | 636 | } else { |
637 | 637 | |
@@ -643,22 +643,22 @@ discard block |
||
643 | 643 | */ |
644 | 644 | if ( $add_directory_args ) { |
645 | 645 | |
646 | - if ( ! empty( $_GET['pagenum'] ) ) { |
|
647 | - $args['pagenum'] = intval( $_GET['pagenum'] ); |
|
646 | + if ( ! empty( $_GET[ 'pagenum' ] ) ) { |
|
647 | + $args[ 'pagenum' ] = intval( $_GET[ 'pagenum' ] ); |
|
648 | 648 | } |
649 | 649 | |
650 | 650 | /** |
651 | 651 | * @since 1.7 |
652 | 652 | */ |
653 | 653 | if ( $sort = \GV\Utils::_GET( 'sort' ) ) { |
654 | - $args['sort'] = $sort; |
|
655 | - $args['dir'] = \GV\Utils::_GET( 'dir' ); |
|
654 | + $args[ 'sort' ] = $sort; |
|
655 | + $args[ 'dir' ] = \GV\Utils::_GET( 'dir' ); |
|
656 | 656 | } |
657 | 657 | |
658 | 658 | } |
659 | 659 | |
660 | 660 | if ( class_exists( 'GravityView_View_Data' ) && GravityView_View_Data::getInstance()->has_multiple_views() ) { |
661 | - $args['gvid'] = gravityview_get_view_id(); |
|
661 | + $args[ 'gvid' ] = gravityview_get_view_id(); |
|
662 | 662 | } |
663 | 663 | |
664 | 664 | return add_query_arg( $args, $directory_link ); |
@@ -679,7 +679,7 @@ discard block |
||
679 | 679 | } |
680 | 680 | |
681 | 681 | function gv_class( $field, $form = NULL, $entry = array() ) { |
682 | - return GravityView_API::field_class( $field, $form, $entry ); |
|
682 | + return GravityView_API::field_class( $field, $form, $entry ); |
|
683 | 683 | } |
684 | 684 | |
685 | 685 | /** |
@@ -702,7 +702,7 @@ discard block |
||
702 | 702 | $view_id = 0; |
703 | 703 | if ( $context->view ) { |
704 | 704 | $view_id = $context->view->ID; |
705 | - if( $context->view->settings->get( 'hide_until_searched' ) ) { |
|
705 | + if ( $context->view->settings->get( 'hide_until_searched' ) ) { |
|
706 | 706 | $hide_until_searched = ( empty( $context->entry ) && ! $context->request->is_search() ); |
707 | 707 | } |
708 | 708 | } |
@@ -730,7 +730,7 @@ discard block |
||
730 | 730 | $default_css_class .= ' gv-container-no-results'; |
731 | 731 | } |
732 | 732 | |
733 | - $css_class = trim( $passed_css_class . ' '. $default_css_class ); |
|
733 | + $css_class = trim( $passed_css_class . ' ' . $default_css_class ); |
|
734 | 734 | |
735 | 735 | /** |
736 | 736 | * @filter `gravityview/render/container/class` Modify the CSS class to be added to the wrapper <div> of a View |
@@ -757,7 +757,7 @@ discard block |
||
757 | 757 | |
758 | 758 | $value = GravityView_API::field_value( $entry, $field ); |
759 | 759 | |
760 | - if( $value === '' ) { |
|
760 | + if ( $value === '' ) { |
|
761 | 761 | /** |
762 | 762 | * @filter `gravityview_empty_value` What to display when a field is empty |
763 | 763 | * @param string $value (empty string) |
@@ -870,7 +870,7 @@ discard block |
||
870 | 870 | */ |
871 | 871 | function gravityview_get_field_value( $entry, $field_id, $display_value ) { |
872 | 872 | |
873 | - if( floatval( $field_id ) === floor( floatval( $field_id ) ) ) { |
|
873 | + if ( floatval( $field_id ) === floor( floatval( $field_id ) ) ) { |
|
874 | 874 | |
875 | 875 | // For the complete field value as generated by Gravity Forms |
876 | 876 | return $display_value; |
@@ -904,16 +904,16 @@ discard block |
||
904 | 904 | $terms = explode( ', ', $value ); |
905 | 905 | } |
906 | 906 | |
907 | - foreach ($terms as $term_name ) { |
|
907 | + foreach ( $terms as $term_name ) { |
|
908 | 908 | |
909 | 909 | // If we're processing a category, |
910 | - if( $taxonomy === 'category' ) { |
|
910 | + if ( $taxonomy === 'category' ) { |
|
911 | 911 | |
912 | 912 | // Use rgexplode to prevent errors if : doesn't exist |
913 | 913 | list( $term_name, $term_id ) = rgexplode( ':', $term_name, 2 ); |
914 | 914 | |
915 | 915 | // The explode was succesful; we have the category ID |
916 | - if( !empty( $term_id )) { |
|
916 | + if ( ! empty( $term_id ) ) { |
|
917 | 917 | $term = get_term_by( 'id', $term_id, $taxonomy ); |
918 | 918 | } else { |
919 | 919 | // We have to fall back to the name |
@@ -926,7 +926,7 @@ discard block |
||
926 | 926 | } |
927 | 927 | |
928 | 928 | // There's still a tag/category here. |
929 | - if( $term ) { |
|
929 | + if ( $term ) { |
|
930 | 930 | |
931 | 931 | $term_link = get_term_link( $term, $taxonomy ); |
932 | 932 | |
@@ -935,11 +935,11 @@ discard block |
||
935 | 935 | continue; |
936 | 936 | } |
937 | 937 | |
938 | - $output[] = gravityview_get_link( $term_link, esc_html( $term->name ) ); |
|
938 | + $output[ ] = gravityview_get_link( $term_link, esc_html( $term->name ) ); |
|
939 | 939 | } |
940 | 940 | } |
941 | 941 | |
942 | - return implode(', ', $output ); |
|
942 | + return implode( ', ', $output ); |
|
943 | 943 | } |
944 | 944 | |
945 | 945 | /** |
@@ -953,8 +953,8 @@ discard block |
||
953 | 953 | |
954 | 954 | $output = get_the_term_list( $post_id, $taxonomy, NULL, ', ' ); |
955 | 955 | |
956 | - if( empty( $link ) ) { |
|
957 | - return strip_tags( $output); |
|
956 | + if ( empty( $link ) ) { |
|
957 | + return strip_tags( $output ); |
|
958 | 958 | } |
959 | 959 | |
960 | 960 | return $output; |
@@ -973,7 +973,7 @@ discard block |
||
973 | 973 | $fe = GravityView_frontend::getInstance(); |
974 | 974 | |
975 | 975 | // Solve problem when loading content via admin-ajax.php |
976 | - if( ! $fe->getGvOutputData() ) { |
|
976 | + if ( ! $fe->getGvOutputData() ) { |
|
977 | 977 | |
978 | 978 | gravityview()->log->debug( 'gv_output_data not defined; parsing content.' ); |
979 | 979 | |
@@ -981,7 +981,7 @@ discard block |
||
981 | 981 | } |
982 | 982 | |
983 | 983 | // Make 100% sure that we're dealing with a properly called situation |
984 | - if( !is_a( $fe->getGvOutputData(), 'GravityView_View_Data' ) ) { |
|
984 | + if ( ! is_a( $fe->getGvOutputData(), 'GravityView_View_Data' ) ) { |
|
985 | 985 | |
986 | 986 | gravityview()->log->debug( 'gv_output_data not an object or get_view not callable.', array( 'data' => $fe->getGvOutputData() ) ); |
987 | 987 | |
@@ -1203,12 +1203,12 @@ discard block |
||
1203 | 1203 | function gravityview_get_files_array( $value, $gv_class = '', $context = null ) { |
1204 | 1204 | /** @define "GRAVITYVIEW_DIR" "../" */ |
1205 | 1205 | |
1206 | - if( !class_exists( 'GravityView_Field' ) ) { |
|
1207 | - include_once( GRAVITYVIEW_DIR .'includes/fields/class-gravityview-field.php' ); |
|
1206 | + if ( ! class_exists( 'GravityView_Field' ) ) { |
|
1207 | + include_once( GRAVITYVIEW_DIR . 'includes/fields/class-gravityview-field.php' ); |
|
1208 | 1208 | } |
1209 | 1209 | |
1210 | - if( !class_exists( 'GravityView_Field_FileUpload' ) ) { |
|
1211 | - include_once( GRAVITYVIEW_DIR .'includes/fields/class-gravityview-field-fileupload.php' ); |
|
1210 | + if ( ! class_exists( 'GravityView_Field_FileUpload' ) ) { |
|
1211 | + include_once( GRAVITYVIEW_DIR . 'includes/fields/class-gravityview-field-fileupload.php' ); |
|
1212 | 1212 | } |
1213 | 1213 | |
1214 | 1214 | if ( is_null( $context ) ) { |
@@ -1311,21 +1311,21 @@ discard block |
||
1311 | 1311 | } else { |
1312 | 1312 | // @deprecated path |
1313 | 1313 | // Required fields. |
1314 | - if ( empty( $args['field'] ) || empty( $args['form'] ) ) { |
|
1314 | + if ( empty( $args[ 'field' ] ) || empty( $args[ 'form' ] ) ) { |
|
1315 | 1315 | gravityview()->log->error( 'Field or form are empty.', array( 'data' => $args ) ); |
1316 | 1316 | return ''; |
1317 | 1317 | } |
1318 | 1318 | } |
1319 | 1319 | |
1320 | 1320 | if ( $context instanceof \GV\Template_Context ) { |
1321 | - $entry = $args['entry'] ? : ( $context->entry ? $context->entry->as_entry() : array() ); |
|
1322 | - $field = $args['field'] ? : ( $context->field ? $context->field->as_configuration() : array() ); |
|
1323 | - $form = $args['form'] ? : ( $context->view->form ? $context->view->form->form : array() ); |
|
1321 | + $entry = $args[ 'entry' ] ?: ( $context->entry ? $context->entry->as_entry() : array() ); |
|
1322 | + $field = $args[ 'field' ] ?: ( $context->field ? $context->field->as_configuration() : array() ); |
|
1323 | + $form = $args[ 'form' ] ?: ( $context->view->form ? $context->view->form->form : array() ); |
|
1324 | 1324 | } else { |
1325 | 1325 | // @deprecated path |
1326 | - $entry = empty( $args['entry'] ) ? array() : $args['entry']; |
|
1327 | - $field = $args['field']; |
|
1328 | - $form = $args['form']; |
|
1326 | + $entry = empty( $args[ 'entry' ] ) ? array() : $args[ 'entry' ]; |
|
1327 | + $field = $args[ 'field' ]; |
|
1328 | + $form = $args[ 'form' ]; |
|
1329 | 1329 | } |
1330 | 1330 | |
1331 | 1331 | /** |
@@ -1345,43 +1345,43 @@ discard block |
||
1345 | 1345 | ); |
1346 | 1346 | |
1347 | 1347 | if ( $context instanceof \GV\Template_Context ) { |
1348 | - $placeholders['value'] = \GV\Utils::get( $args, 'value', '' ); |
|
1348 | + $placeholders[ 'value' ] = \GV\Utils::get( $args, 'value', '' ); |
|
1349 | 1349 | } else { |
1350 | 1350 | // @deprecated path |
1351 | - $placeholders['value'] = gv_value( $entry, $field ); |
|
1351 | + $placeholders[ 'value' ] = gv_value( $entry, $field ); |
|
1352 | 1352 | } |
1353 | 1353 | |
1354 | 1354 | // If the value is empty and we're hiding empty, return empty. |
1355 | - if ( $placeholders['value'] === '' && ! empty( $args['hide_empty'] ) ) { |
|
1355 | + if ( $placeholders[ 'value' ] === '' && ! empty( $args[ 'hide_empty' ] ) ) { |
|
1356 | 1356 | return ''; |
1357 | 1357 | } |
1358 | 1358 | |
1359 | - if ( $placeholders['value'] !== '' && ! empty( $args['wpautop'] ) ) { |
|
1360 | - $placeholders['value'] = wpautop( $placeholders['value'] ); |
|
1359 | + if ( $placeholders[ 'value' ] !== '' && ! empty( $args[ 'wpautop' ] ) ) { |
|
1360 | + $placeholders[ 'value' ] = wpautop( $placeholders[ 'value' ] ); |
|
1361 | 1361 | } |
1362 | 1362 | |
1363 | 1363 | // Get width setting, if exists |
1364 | - $placeholders['width'] = GravityView_API::field_width( $field ); |
|
1364 | + $placeholders[ 'width' ] = GravityView_API::field_width( $field ); |
|
1365 | 1365 | |
1366 | 1366 | // If replacing with CSS inline formatting, let's do it. |
1367 | - $placeholders['width:style'] = GravityView_API::field_width( $field, 'width:' . $placeholders['width'] . '%;' ); |
|
1367 | + $placeholders[ 'width:style' ] = GravityView_API::field_width( $field, 'width:' . $placeholders[ 'width' ] . '%;' ); |
|
1368 | 1368 | |
1369 | 1369 | // Grab the Class using `gv_class` |
1370 | - $placeholders['class'] = gv_class( $field, $form, $entry ); |
|
1371 | - $placeholders['field_id'] = GravityView_API::field_html_attr_id( $field, $form, $entry ); |
|
1370 | + $placeholders[ 'class' ] = gv_class( $field, $form, $entry ); |
|
1371 | + $placeholders[ 'field_id' ] = GravityView_API::field_html_attr_id( $field, $form, $entry ); |
|
1372 | 1372 | |
1373 | 1373 | if ( $context instanceof \GV\Template_Context ) { |
1374 | - $placeholders['label_value'] = \GV\Utils::get( $args, 'label' ); |
|
1374 | + $placeholders[ 'label_value' ] = \GV\Utils::get( $args, 'label' ); |
|
1375 | 1375 | } else { |
1376 | 1376 | // Default Label value |
1377 | - $placeholders['label_value'] = gv_label( $field, $entry ); |
|
1377 | + $placeholders[ 'label_value' ] = gv_label( $field, $entry ); |
|
1378 | 1378 | } |
1379 | 1379 | |
1380 | - $placeholders['label_value:data-label'] = trim( esc_attr( strip_tags( str_replace( '> ', '>', $placeholders['label_value'] ) ) ) ); |
|
1381 | - $placeholders['label_value:esc_attr'] = esc_attr( $placeholders['label_value'] ); |
|
1380 | + $placeholders[ 'label_value:data-label' ] = trim( esc_attr( strip_tags( str_replace( '> ', '>', $placeholders[ 'label_value' ] ) ) ) ); |
|
1381 | + $placeholders[ 'label_value:esc_attr' ] = esc_attr( $placeholders[ 'label_value' ] ); |
|
1382 | 1382 | |
1383 | - if ( empty( $placeholders['label'] ) && ! empty( $placeholders['label_value'] ) ){ |
|
1384 | - $placeholders['label'] = '<span class="gv-field-label">{{ label_value }}</span>'; |
|
1383 | + if ( empty( $placeholders[ 'label' ] ) && ! empty( $placeholders[ 'label_value' ] ) ) { |
|
1384 | + $placeholders[ 'label' ] = '<span class="gv-field-label">{{ label_value }}</span>'; |
|
1385 | 1385 | } |
1386 | 1386 | |
1387 | 1387 | /** |
@@ -1392,7 +1392,7 @@ discard block |
||
1392 | 1392 | * @since 2.0 |
1393 | 1393 | * @param \GV\Template_Context $context The context. |
1394 | 1394 | */ |
1395 | - $html = apply_filters( 'gravityview/field_output/pre_html', $args['markup'], $args, $context ); |
|
1395 | + $html = apply_filters( 'gravityview/field_output/pre_html', $args[ 'markup' ], $args, $context ); |
|
1396 | 1396 | |
1397 | 1397 | /** |
1398 | 1398 | * @filter `gravityview/field_output/open_tag` Modify the opening tags for the template content placeholders |
@@ -1419,7 +1419,7 @@ discard block |
||
1419 | 1419 | foreach ( $placeholders as $tag => $value ) { |
1420 | 1420 | |
1421 | 1421 | // If the tag doesn't exist just skip it |
1422 | - if ( false === strpos( $html, $open_tag . $tag . $close_tag ) && false === strpos( $html, $open_tag . ' ' . $tag . ' ' . $close_tag ) ){ |
|
1422 | + if ( false === strpos( $html, $open_tag . $tag . $close_tag ) && false === strpos( $html, $open_tag . ' ' . $tag . ' ' . $close_tag ) ) { |
|
1423 | 1423 | continue; |
1424 | 1424 | } |
1425 | 1425 |
@@ -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,7 +209,7 @@ discard block |
||
209 | 209 | |
210 | 210 | $width = $height * 0.7586206897; |
211 | 211 | |
212 | - if( function_exists('is_rtl') && is_rtl() ) { |
|
212 | + if ( function_exists( 'is_rtl' ) && is_rtl() ) { |
|
213 | 213 | $style = 'margin:10px 10px 10px 0;'; |
214 | 214 | $css_class = is_string( $css_class ) ? $css_class : 'alignright'; |
215 | 215 | } else { |
@@ -217,7 +217,7 @@ discard block |
||
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 |
@@ -24,16 +24,16 @@ discard block |
||
24 | 24 | |
25 | 25 | function field_options( $field_options, $template_id, $field_id, $context, $input_type ) { |
26 | 26 | |
27 | - unset( $field_options['search_filter'] ); |
|
27 | + unset( $field_options[ 'search_filter' ] ); |
|
28 | 28 | |
29 | - if( 'edit' === $context ) { |
|
29 | + if ( 'edit' === $context ) { |
|
30 | 30 | return $field_options; |
31 | 31 | } |
32 | 32 | |
33 | - $add_options['link_to_file'] = array( |
|
33 | + $add_options[ 'link_to_file' ] = array( |
|
34 | 34 | 'type' => 'checkbox', |
35 | 35 | 'label' => __( 'Display as a Link:', 'gravityview' ), |
36 | - 'desc' => __('Display the uploaded files as links, rather than embedded content.', 'gravityview'), |
|
36 | + 'desc' => __( 'Display the uploaded files as links, rather than embedded content.', 'gravityview' ), |
|
37 | 37 | 'value' => false, |
38 | 38 | 'merge_tags' => false, |
39 | 39 | ); |
@@ -119,14 +119,14 @@ discard block |
||
119 | 119 | $base_id = null; |
120 | 120 | |
121 | 121 | $is_single = gravityview_get_context() === 'single'; |
122 | - $lightbox = ! empty( $gravityview_view->atts['lightbox'] ); |
|
122 | + $lightbox = ! empty( $gravityview_view->atts[ 'lightbox' ] ); |
|
123 | 123 | $field_compat = $gravityview_view->getCurrentField(); |
124 | 124 | } |
125 | 125 | |
126 | 126 | $output_arr = array(); |
127 | 127 | |
128 | 128 | // Get an array of file paths for the field. |
129 | - $file_paths = \GV\Utils::get( $field , 'multipleFiles' ) ? json_decode( $value ) : array( $value ); |
|
129 | + $file_paths = \GV\Utils::get( $field, 'multipleFiles' ) ? json_decode( $value ) : array( $value ); |
|
130 | 130 | |
131 | 131 | // The $value JSON was probably truncated; let's check lead_detail_long. |
132 | 132 | if ( ! is_array( $file_paths ) ) { |
@@ -145,7 +145,7 @@ discard block |
||
145 | 145 | $text = $rendered = null; |
146 | 146 | |
147 | 147 | // If the site is HTTPS, use HTTPS |
148 | - if ( function_exists('set_url_scheme') ) { |
|
148 | + if ( function_exists( 'set_url_scheme' ) ) { |
|
149 | 149 | $file_path = set_url_scheme( $file_path ); |
150 | 150 | } |
151 | 151 | |
@@ -156,8 +156,8 @@ discard block |
||
156 | 156 | $file_path_info = pathinfo( $file_path ); |
157 | 157 | |
158 | 158 | // If pathinfo() gave us the extension of the file, run the switch statement using that. |
159 | - $extension = empty( $file_path_info['extension'] ) ? NULL : strtolower( $file_path_info['extension'] ); |
|
160 | - $basename = $file_path_info['basename']; |
|
159 | + $extension = empty( $file_path_info[ 'extension' ] ) ? NULL : strtolower( $file_path_info[ 'extension' ] ); |
|
160 | + $basename = $file_path_info[ 'basename' ]; |
|
161 | 161 | |
162 | 162 | // Get the secure download URL |
163 | 163 | $is_secure = false; |
@@ -194,7 +194,7 @@ discard block |
||
194 | 194 | */ |
195 | 195 | $audio_settings = apply_filters( 'gravityview_audio_settings', array( |
196 | 196 | 'src' => $src, |
197 | - 'class' => 'wp-audio-shortcode gv-audio gv-field-id-'.$field_settings['id'] |
|
197 | + 'class' => 'wp-audio-shortcode gv-audio gv-field-id-' . $field_settings[ 'id' ] |
|
198 | 198 | ), $context ); |
199 | 199 | |
200 | 200 | /** |
@@ -225,7 +225,7 @@ discard block |
||
225 | 225 | */ |
226 | 226 | $video_settings = apply_filters( 'gravityview_video_settings', array( |
227 | 227 | 'src' => $src, |
228 | - 'class' => 'wp-video-shortcode gv-video gv-field-id-'.$field_settings['id'] |
|
228 | + 'class' => 'wp-video-shortcode gv-video gv-field-id-' . $field_settings[ 'id' ] |
|
229 | 229 | ), $context ); |
230 | 230 | |
231 | 231 | /** |
@@ -251,13 +251,13 @@ discard block |
||
251 | 251 | } else if ( in_array( $extension, array( 'jpg', 'jpeg', 'jpe', 'gif', 'png' ) ) ) { |
252 | 252 | $image_atts = array( |
253 | 253 | 'src' => $file_path, |
254 | - 'class' => 'gv-image gv-field-id-'.$field_settings['id'], |
|
255 | - 'alt' => $field_settings['label'], |
|
254 | + 'class' => 'gv-image gv-field-id-' . $field_settings[ 'id' ], |
|
255 | + 'alt' => $field_settings[ 'label' ], |
|
256 | 256 | 'width' => ( $is_single ? NULL : 250 ) |
257 | 257 | ); |
258 | 258 | |
259 | 259 | if ( $is_secure ) { |
260 | - $image_atts['validate_src'] = false; |
|
260 | + $image_atts[ 'validate_src' ] = false; |
|
261 | 261 | } |
262 | 262 | |
263 | 263 | /** |
@@ -270,11 +270,11 @@ discard block |
||
270 | 270 | |
271 | 271 | $image = new GravityView_Image( $image_atts ); |
272 | 272 | |
273 | - $entry_slug = GravityView_API::get_entry_slug( $entry['id'], $entry ); |
|
273 | + $entry_slug = GravityView_API::get_entry_slug( $entry[ 'id' ], $entry ); |
|
274 | 274 | |
275 | 275 | $text = $image->html(); |
276 | 276 | |
277 | - if ( $lightbox && empty( $field_settings['show_as_link'] ) ) { |
|
277 | + if ( $lightbox && empty( $field_settings[ 'show_as_link' ] ) ) { |
|
278 | 278 | $lightbox_link_atts = array( |
279 | 279 | 'rel' => sprintf( "%s-%s", $gv_class, $entry_slug ), |
280 | 280 | 'class' => 'thickbox', |
@@ -298,7 +298,7 @@ discard block |
||
298 | 298 | $disable_wrapped_link = apply_filters( 'gravityview/fields/fileupload/disable_link', false, $field_compat, $context ); |
299 | 299 | |
300 | 300 | // Output textualized content where |
301 | - if ( ! $disable_wrapped_link && ( ! empty( $field_settings['link_to_file'] ) && empty( $field_settings['show_as_link'] ) ) ) { |
|
301 | + if ( ! $disable_wrapped_link && ( ! empty( $field_settings[ 'link_to_file' ] ) && empty( $field_settings[ 'show_as_link' ] ) ) ) { |
|
302 | 302 | $content = empty( $text ) ? $basename : $text; |
303 | 303 | |
304 | 304 | /** |
@@ -327,7 +327,7 @@ discard block |
||
327 | 327 | $content = empty( $rendered ) ? ( empty( $text ) ? $basename : $text ) : $rendered; |
328 | 328 | } |
329 | 329 | |
330 | - $output_arr[] = array( |
|
330 | + $output_arr[ ] = array( |
|
331 | 331 | 'file_path' => $file_path, |
332 | 332 | 'content' => $content |
333 | 333 | ); |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | */ |
54 | 54 | public function register_noconflict( $items ) { |
55 | 55 | |
56 | - $items[] = 'gravityview-admin-installer'; |
|
56 | + $items[ ] = 'gravityview-admin-installer'; |
|
57 | 57 | |
58 | 58 | return $items; |
59 | 59 | } |
@@ -72,17 +72,17 @@ discard block |
||
72 | 72 | return; |
73 | 73 | } |
74 | 74 | |
75 | - add_filter( 'plugins_api', function ( $data, $action, $args ) use ( $downloads_data ) { |
|
75 | + add_filter( 'plugins_api', function( $data, $action, $args ) use ( $downloads_data ) { |
|
76 | 76 | foreach ( $downloads_data as $extension ) { |
77 | - if ( empty( $extension['info'] ) || empty( $args->slug ) || $args->slug !== $extension['info']['slug'] ) { |
|
77 | + if ( empty( $extension[ 'info' ] ) || empty( $args->slug ) || $args->slug !== $extension[ 'info' ][ 'slug' ] ) { |
|
78 | 78 | continue; |
79 | 79 | } |
80 | 80 | |
81 | - return (object) array( |
|
82 | - 'slug' => $extension['info']['slug'], |
|
83 | - 'name' => $extension['info']['title'], |
|
84 | - 'version' => $extension['licensing']['version'], |
|
85 | - 'download_link' => $extension['files'][0]['file'], |
|
81 | + return (object)array( |
|
82 | + 'slug' => $extension[ 'info' ][ 'slug' ], |
|
83 | + 'name' => $extension[ 'info' ][ 'title' ], |
|
84 | + 'version' => $extension[ 'licensing' ][ 'version' ], |
|
85 | + 'download_link' => $extension[ 'files' ][ 0 ][ 'file' ], |
|
86 | 86 | ); |
87 | 87 | } |
88 | 88 | |
@@ -144,13 +144,13 @@ discard block |
||
144 | 144 | |
145 | 145 | foreach ( $all_plugins as $path => $plugin ) { |
146 | 146 | |
147 | - if ( empty( $plugin['TextDomain'] ) ) { |
|
147 | + if ( empty( $plugin[ 'TextDomain' ] ) ) { |
|
148 | 148 | continue; |
149 | 149 | } |
150 | 150 | |
151 | - $wp_plugins[ $plugin['TextDomain'] ] = array( |
|
151 | + $wp_plugins[ $plugin[ 'TextDomain' ] ] = array( |
|
152 | 152 | 'path' => $path, |
153 | - 'version' => $plugin['Version'], |
|
153 | + 'version' => $plugin[ 'Version' ], |
|
154 | 154 | 'activated' => is_plugin_active( $path ) |
155 | 155 | ); |
156 | 156 | } |
@@ -232,13 +232,13 @@ discard block |
||
232 | 232 | |
233 | 233 | $downloads_data = json_decode( wp_remote_retrieve_body( $response ), true ); |
234 | 234 | |
235 | - if ( empty( $downloads_data['products'] ) ) { |
|
235 | + if ( empty( $downloads_data[ 'products' ] ) ) { |
|
236 | 236 | return array(); |
237 | 237 | } |
238 | 238 | |
239 | - $this->set_downloads_data( $downloads_data['products'] ); |
|
239 | + $this->set_downloads_data( $downloads_data[ 'products' ] ); |
|
240 | 240 | |
241 | - return $downloads_data['products']; |
|
241 | + return $downloads_data[ 'products' ]; |
|
242 | 242 | } |
243 | 243 | |
244 | 244 | /** |
@@ -311,7 +311,7 @@ discard block |
||
311 | 311 | |
312 | 312 | foreach ( $downloads_data as $extension ) { |
313 | 313 | |
314 | - if ( empty( $extension['info'] ) ) { |
|
314 | + if ( empty( $extension[ 'info' ] ) ) { |
|
315 | 315 | continue; |
316 | 316 | } |
317 | 317 | |
@@ -340,29 +340,29 @@ discard block |
||
340 | 340 | |
341 | 341 | $details = $this->get_download_display_details( $download, $wp_plugins ); |
342 | 342 | |
343 | - $download_info = $details['download_info']; |
|
343 | + $download_info = $details[ 'download_info' ]; |
|
344 | 344 | |
345 | 345 | ?> |
346 | - <div class="item <?php echo esc_attr( $details['item_class'] ); ?>"> |
|
346 | + <div class="item <?php echo esc_attr( $details[ 'item_class' ] ); ?>"> |
|
347 | 347 | <div class="addon-inner"> |
348 | - <a href="<?php echo esc_url( $download_info['link'] ); ?>" rel="external noreferrer noopener" title="<?php esc_html_e( 'Visit the plugin page', 'gravityview' ); ?>"><img class="thumbnail" src="<?php echo esc_attr( $download_info['thumbnail'] ); ?>" alt="" /></a> |
|
349 | - <h3><?php echo esc_html( \GV\Utils::get( $download_info, 'installer_title', $download_info['title'] ) ); ?></h3> |
|
348 | + <a href="<?php echo esc_url( $download_info[ 'link' ] ); ?>" rel="external noreferrer noopener" title="<?php esc_html_e( 'Visit the plugin page', 'gravityview' ); ?>"><img class="thumbnail" src="<?php echo esc_attr( $download_info[ 'thumbnail' ] ); ?>" alt="" /></a> |
|
349 | + <h3><?php echo esc_html( \GV\Utils::get( $download_info, 'installer_title', $download_info[ 'title' ] ) ); ?></h3> |
|
350 | 350 | <div> |
351 | - <?php if( ! empty( $details['status_label'] ) ) { ?> |
|
352 | - <div class="status <?php echo esc_attr( $details['status'] ); ?>" title="<?php printf( esc_attr__( 'Plugin status: %s', 'gravityview' ), esc_html( $details['status_label'] ) ); ?>"> |
|
353 | - <span class="dashicons dashicons-admin-plugins"></span> <span class="status-label"><?php echo esc_html( $details['status_label'] ); ?></span> |
|
351 | + <?php if ( ! empty( $details[ 'status_label' ] ) ) { ?> |
|
352 | + <div class="status <?php echo esc_attr( $details[ 'status' ] ); ?>" title="<?php printf( esc_attr__( 'Plugin status: %s', 'gravityview' ), esc_html( $details[ 'status_label' ] ) ); ?>"> |
|
353 | + <span class="dashicons dashicons-admin-plugins"></span> <span class="status-label"><?php echo esc_html( $details[ 'status_label' ] ); ?></span> |
|
354 | 354 | </div> |
355 | 355 | <?php } ?> |
356 | 356 | |
357 | - <a data-status="<?php echo esc_attr( $details['status'] ); ?>" data-plugin-path="<?php echo esc_attr( $details['plugin_path'] ); ?>" href="<?php echo esc_url( $details['href'] ); ?>" class="button <?php echo esc_attr( $details['button_class'] ); ?>" title="<?php echo esc_attr( $details['button_title'] ); ?>"> |
|
358 | - <span class="title"><?php echo esc_html( $details['button_label'] ); ?></span> |
|
359 | - <?php if( $details['spinner'] ) { ?><span class="spinner"></span><?php } ?> |
|
357 | + <a data-status="<?php echo esc_attr( $details[ 'status' ] ); ?>" data-plugin-path="<?php echo esc_attr( $details[ 'plugin_path' ] ); ?>" href="<?php echo esc_url( $details[ 'href' ] ); ?>" class="button <?php echo esc_attr( $details[ 'button_class' ] ); ?>" title="<?php echo esc_attr( $details[ 'button_title' ] ); ?>"> |
|
358 | + <span class="title"><?php echo esc_html( $details[ 'button_label' ] ); ?></span> |
|
359 | + <?php if ( $details[ 'spinner' ] ) { ?><span class="spinner"></span><?php } ?> |
|
360 | 360 | </a> |
361 | 361 | </div> |
362 | 362 | |
363 | 363 | <div class="addon-excerpt"><?php |
364 | 364 | |
365 | - $excerpt = \GV\Utils::get( $download_info, 'installer_excerpt', $download_info['excerpt'] ); |
|
365 | + $excerpt = \GV\Utils::get( $download_info, 'installer_excerpt', $download_info[ 'excerpt' ] ); |
|
366 | 366 | |
367 | 367 | // Allow some pure HTML tags, but remove everything else from the excerpt. |
368 | 368 | $tags = array( '<strong>', '</strong>', '<em>', '</em>', '<code>', '</code>' ); |
@@ -402,7 +402,7 @@ discard block |
||
402 | 402 | */ |
403 | 403 | private function get_download_display_details( $download, $wp_plugins ) { |
404 | 404 | |
405 | - $download_info = wp_parse_args( (array) $download['info'], array( |
|
405 | + $download_info = wp_parse_args( (array)$download[ 'info' ], array( |
|
406 | 406 | 'thumbnail' => '', |
407 | 407 | 'title' => '', |
408 | 408 | 'textdomain' => '', |
@@ -414,9 +414,9 @@ discard block |
||
414 | 414 | 'installer_excerpt' => null, // May not be defined |
415 | 415 | ) ); |
416 | 416 | |
417 | - $wp_plugin = \GV\Utils::get( $wp_plugins, $download_info['textdomain'], false ); |
|
417 | + $wp_plugin = \GV\Utils::get( $wp_plugins, $download_info[ 'textdomain' ], false ); |
|
418 | 418 | |
419 | - $has_access = ! empty( $download['files'] ); |
|
419 | + $has_access = ! empty( $download[ 'files' ] ); |
|
420 | 420 | $spinner = true; |
421 | 421 | $href = $plugin_path = '#'; |
422 | 422 | $status = $item_class = $button_title = $button_class = ''; |
@@ -426,7 +426,7 @@ discard block |
||
426 | 426 | $required_license = $galactic_only ? __( 'All Access', 'gravityview' ) : __( 'Core + Extensions', 'gravityview' ); |
427 | 427 | |
428 | 428 | // The license is not active - no matter what level, this should not work |
429 | - if( ! $is_active && empty( $base_price ) ) { |
|
429 | + if ( ! $is_active && empty( $base_price ) ) { |
|
430 | 430 | $spinner = false; |
431 | 431 | $status_label = ''; |
432 | 432 | $button_class = 'disabled disabled-license'; |
@@ -439,7 +439,7 @@ discard block |
||
439 | 439 | $status_label = ''; |
440 | 440 | $button_label = sprintf( __( 'Purchase Now for %s', 'gravityview' ), '$' . $base_price ); |
441 | 441 | $button_class = 'button-primary button-large'; |
442 | - $href = $download_info['link']; |
|
442 | + $href = $download_info[ 'link' ]; |
|
443 | 443 | $item_class = 'featured'; |
444 | 444 | } |
445 | 445 | |
@@ -452,7 +452,7 @@ discard block |
||
452 | 452 | $href = 'https://gravityview.co/pricing/?utm_source=admin-installer&utm_medium=admin&utm_campaign=Admin%20Notice&utm_content=' . $required_license; |
453 | 453 | } |
454 | 454 | |
455 | - elseif ( ! empty( $download_info['coming_soon'] ) ) { |
|
455 | + elseif ( ! empty( $download_info[ 'coming_soon' ] ) ) { |
|
456 | 456 | $spinner = false; |
457 | 457 | $status = 'notinstalled'; |
458 | 458 | $status_label = __( 'Coming Soon', 'gravityview' ); |
@@ -467,8 +467,8 @@ discard block |
||
467 | 467 | $href = add_query_arg( |
468 | 468 | array( |
469 | 469 | 'action' => 'install-plugin', |
470 | - 'plugin' => $download_info['slug'], |
|
471 | - '_wpnonce' => wp_create_nonce( 'install-plugin_' . $download_info['slug'] ), |
|
470 | + 'plugin' => $download_info[ 'slug' ], |
|
471 | + '_wpnonce' => wp_create_nonce( 'install-plugin_' . $download_info[ 'slug' ] ), |
|
472 | 472 | ), |
473 | 473 | self_admin_url( 'update.php' ) |
474 | 474 | ); |
@@ -480,25 +480,25 @@ discard block |
||
480 | 480 | } |
481 | 481 | |
482 | 482 | // Access and the plugin is installed but not active |
483 | - elseif ( false === $wp_plugin['activated'] ) { |
|
483 | + elseif ( false === $wp_plugin[ 'activated' ] ) { |
|
484 | 484 | $status = 'inactive'; |
485 | 485 | $status_label = __( 'Inactive', 'gravityview' ); |
486 | 486 | $button_label = __( 'Activate', 'gravityview' ); |
487 | - $plugin_path = $wp_plugin['path']; |
|
487 | + $plugin_path = $wp_plugin[ 'path' ]; |
|
488 | 488 | |
489 | 489 | } |
490 | 490 | |
491 | 491 | // Access and the plugin is installed and active |
492 | 492 | else { |
493 | 493 | |
494 | - $plugin_path = $wp_plugin['path']; |
|
494 | + $plugin_path = $wp_plugin[ 'path' ]; |
|
495 | 495 | $status = 'active'; |
496 | 496 | $status_label = __( 'Active', 'gravityview' ); |
497 | 497 | $button_label = __( 'Deactivate', 'gravityview' ); |
498 | 498 | |
499 | 499 | } |
500 | 500 | |
501 | - return compact( 'download_info','plugin_path', 'status', 'status_label', 'button_title', 'button_class', 'button_label', 'href', 'spinner', 'item_class', 'required_license', 'is_active' ); |
|
501 | + return compact( 'download_info', 'plugin_path', 'status', 'status_label', 'button_title', 'button_class', 'button_label', 'href', 'spinner', 'item_class', 'required_license', 'is_active' ); |
|
502 | 502 | } |
503 | 503 | |
504 | 504 | /** |
@@ -513,11 +513,11 @@ discard block |
||
513 | 513 | $base_price = \GV\Utils::get( $download, 'pricing/amount', 0 ); |
514 | 514 | $base_price = \GFCommon::to_number( $base_price ); |
515 | 515 | |
516 | - unset( $download['pricing']['amount'] ); |
|
516 | + unset( $download[ 'pricing' ][ 'amount' ] ); |
|
517 | 517 | |
518 | 518 | // Price options array, not single price |
519 | - if ( ! $base_price && ! empty( $download['pricing'] ) ) { |
|
520 | - $base_price = array_shift( $download['pricing'] ); |
|
519 | + if ( ! $base_price && ! empty( $download[ 'pricing' ] ) ) { |
|
520 | + $base_price = array_shift( $download[ 'pricing' ] ); |
|
521 | 521 | } |
522 | 522 | |
523 | 523 | return floatval( $base_price ); |
@@ -531,13 +531,13 @@ discard block |
||
531 | 531 | public function activate_download() { |
532 | 532 | $data = \GV\Utils::_POST( 'data', array() ); |
533 | 533 | |
534 | - if ( empty( $data['path'] ) ) { |
|
534 | + if ( empty( $data[ 'path' ] ) ) { |
|
535 | 535 | return; |
536 | 536 | } |
537 | 537 | |
538 | - $result = activate_plugin( $data['path'] ); |
|
538 | + $result = activate_plugin( $data[ 'path' ] ); |
|
539 | 539 | |
540 | - if ( is_wp_error( $result ) || ! is_plugin_active( $data['path'] ) ) { |
|
540 | + if ( is_wp_error( $result ) || ! is_plugin_active( $data[ 'path' ] ) ) { |
|
541 | 541 | wp_send_json_error( array( |
542 | 542 | 'error' => sprintf( __( 'Plugin activation failed: %s', 'gravityview' ), $result->get_error_message() ) |
543 | 543 | ) ); |
@@ -554,13 +554,13 @@ discard block |
||
554 | 554 | public function deactivate_download() { |
555 | 555 | $data = \GV\Utils::_POST( 'data', array() ); |
556 | 556 | |
557 | - if ( empty( $data['path'] ) ) { |
|
557 | + if ( empty( $data[ 'path' ] ) ) { |
|
558 | 558 | return; |
559 | 559 | } |
560 | 560 | |
561 | - deactivate_plugins( $data['path'] ); |
|
561 | + deactivate_plugins( $data[ 'path' ] ); |
|
562 | 562 | |
563 | - if( is_plugin_active( $data['path'] ) ) { |
|
563 | + if ( is_plugin_active( $data[ 'path' ] ) ) { |
|
564 | 564 | wp_send_json_error( array( |
565 | 565 | 'error' => sprintf( __( 'Plugin deactivation failed.', 'gravityview' ) ) |
566 | 566 | ) ); |
@@ -28,31 +28,31 @@ discard block |
||
28 | 28 | add_filter( 'gravityview_blacklist_field_types', array( $this, 'default_field_blacklist' ), 10, 2 ); |
29 | 29 | |
30 | 30 | // Tooltips |
31 | - add_filter( 'gform_tooltips', array( $this, 'tooltips') ); |
|
31 | + add_filter( 'gform_tooltips', array( $this, 'tooltips' ) ); |
|
32 | 32 | |
33 | 33 | // adding styles and scripts |
34 | - add_action( 'admin_enqueue_scripts', array( 'GravityView_Admin_Views', 'add_scripts_and_styles'), 999 ); |
|
35 | - add_filter( 'gform_noconflict_styles', array( $this, 'register_no_conflict') ); |
|
36 | - add_filter( 'gform_noconflict_scripts', array( $this, 'register_no_conflict') ); |
|
37 | - add_filter( 'gravityview_noconflict_styles', array( $this, 'register_no_conflict') ); |
|
38 | - add_filter( 'gravityview_noconflict_scripts', array( $this, 'register_no_conflict') ); |
|
39 | - |
|
40 | - add_action( 'gravityview_render_directory_active_areas', array( $this, 'render_directory_active_areas'), 10, 4 ); |
|
41 | - add_action( 'gravityview_render_widgets_active_areas', array( $this, 'render_widgets_active_areas'), 10, 3 ); |
|
42 | - add_action( 'gravityview_render_field_pickers', array( $this, 'render_field_pickers') ); |
|
43 | - add_action( 'gravityview_render_available_fields', array( $this, 'render_available_fields'), 10, 2 ); |
|
44 | - add_action( 'gravityview_render_available_widgets', array( $this, 'render_available_widgets') ); |
|
45 | - add_action( 'gravityview_render_active_areas', array( $this, 'render_active_areas'), 10, 5 ); |
|
34 | + add_action( 'admin_enqueue_scripts', array( 'GravityView_Admin_Views', 'add_scripts_and_styles' ), 999 ); |
|
35 | + add_filter( 'gform_noconflict_styles', array( $this, 'register_no_conflict' ) ); |
|
36 | + add_filter( 'gform_noconflict_scripts', array( $this, 'register_no_conflict' ) ); |
|
37 | + add_filter( 'gravityview_noconflict_styles', array( $this, 'register_no_conflict' ) ); |
|
38 | + add_filter( 'gravityview_noconflict_scripts', array( $this, 'register_no_conflict' ) ); |
|
39 | + |
|
40 | + add_action( 'gravityview_render_directory_active_areas', array( $this, 'render_directory_active_areas' ), 10, 4 ); |
|
41 | + add_action( 'gravityview_render_widgets_active_areas', array( $this, 'render_widgets_active_areas' ), 10, 3 ); |
|
42 | + add_action( 'gravityview_render_field_pickers', array( $this, 'render_field_pickers' ) ); |
|
43 | + add_action( 'gravityview_render_available_fields', array( $this, 'render_available_fields' ), 10, 2 ); |
|
44 | + add_action( 'gravityview_render_available_widgets', array( $this, 'render_available_widgets' ) ); |
|
45 | + add_action( 'gravityview_render_active_areas', array( $this, 'render_active_areas' ), 10, 5 ); |
|
46 | 46 | |
47 | 47 | // @todo check if this hook is needed.. |
48 | 48 | //add_action( 'gravityview_render_field_options', array( $this, 'render_field_options'), 10, 9 ); |
49 | 49 | |
50 | 50 | // Add Connected Form column |
51 | - add_filter('manage_gravityview_posts_columns' , array( $this, 'add_post_type_columns' ) ); |
|
51 | + add_filter( 'manage_gravityview_posts_columns', array( $this, 'add_post_type_columns' ) ); |
|
52 | 52 | |
53 | 53 | add_filter( 'gform_toolbar_menu', array( 'GravityView_Admin_Views', 'gform_toolbar_menu' ), 10, 2 ); |
54 | 54 | |
55 | - add_action( 'manage_gravityview_posts_custom_column', array( $this, 'add_custom_column_content'), 10, 2 ); |
|
55 | + add_action( 'manage_gravityview_posts_custom_column', array( $this, 'add_custom_column_content' ), 10, 2 ); |
|
56 | 56 | |
57 | 57 | add_action( 'restrict_manage_posts', array( $this, 'add_view_dropdown' ) ); |
58 | 58 | |
@@ -71,11 +71,11 @@ discard block |
||
71 | 71 | */ |
72 | 72 | function suggest_support_articles( $localization_data = array() ) { |
73 | 73 | |
74 | - if( ! gravityview()->request->is_view() ) { |
|
74 | + if ( ! gravityview()->request->is_view() ) { |
|
75 | 75 | return $localization_data; |
76 | 76 | } |
77 | 77 | |
78 | - $localization_data['suggest'] = array( |
|
78 | + $localization_data[ 'suggest' ] = array( |
|
79 | 79 | '57ef23539033602e61d4a560', |
80 | 80 | '54c67bb9e4b0512429885513', |
81 | 81 | '54c67bb9e4b0512429885512', |
@@ -96,13 +96,13 @@ discard block |
||
96 | 96 | public function filter_pre_get_posts_by_gravityview_form_id( &$query ) { |
97 | 97 | global $pagenow; |
98 | 98 | |
99 | - if ( !is_admin() ) { |
|
99 | + if ( ! is_admin() ) { |
|
100 | 100 | return; |
101 | 101 | } |
102 | 102 | |
103 | - $form_id = isset( $_GET['gravityview_form_id'] ) ? (int) $_GET['gravityview_form_id'] : false; |
|
103 | + $form_id = isset( $_GET[ 'gravityview_form_id' ] ) ? (int)$_GET[ 'gravityview_form_id' ] : false; |
|
104 | 104 | |
105 | - if( 'edit.php' !== $pagenow || ! $form_id || ! isset( $query->query_vars[ 'post_type' ] ) ) { |
|
105 | + if ( 'edit.php' !== $pagenow || ! $form_id || ! isset( $query->query_vars[ 'post_type' ] ) ) { |
|
106 | 106 | return; |
107 | 107 | } |
108 | 108 | |
@@ -119,18 +119,18 @@ discard block |
||
119 | 119 | function add_view_dropdown() { |
120 | 120 | $current_screen = get_current_screen(); |
121 | 121 | |
122 | - if( 'gravityview' !== $current_screen->post_type ) { |
|
122 | + if ( 'gravityview' !== $current_screen->post_type ) { |
|
123 | 123 | return; |
124 | 124 | } |
125 | 125 | |
126 | 126 | $forms = gravityview_get_forms(); |
127 | 127 | $current_form = \GV\Utils::_GET( 'gravityview_form_id' ); |
128 | 128 | // If there are no forms to select, show no forms. |
129 | - if( !empty( $forms ) ) { ?> |
|
129 | + if ( ! empty( $forms ) ) { ?> |
|
130 | 130 | <select name="gravityview_form_id" id="gravityview_form_id"> |
131 | 131 | <option value="" <?php selected( '', $current_form, true ); ?>><?php esc_html_e( 'All forms', 'gravityview' ); ?></option> |
132 | - <?php foreach( $forms as $form ) { ?> |
|
133 | - <option value="<?php echo $form['id']; ?>" <?php selected( $form['id'], $current_form, true ); ?>><?php echo esc_html( $form['title'] ); ?></option> |
|
132 | + <?php foreach ( $forms as $form ) { ?> |
|
133 | + <option value="<?php echo $form[ 'id' ]; ?>" <?php selected( $form[ 'id' ], $current_form, true ); ?>><?php echo esc_html( $form[ 'title' ] ); ?></option> |
|
134 | 134 | <?php } ?> |
135 | 135 | </select> |
136 | 136 | <?php } |
@@ -143,7 +143,7 @@ discard block |
||
143 | 143 | */ |
144 | 144 | public static function render_setting_row( $key = '', $current_settings = array(), $override_input = null, $name = 'template_settings[%s]', $id = 'gravityview_se_%s' ) { |
145 | 145 | _deprecated_function( 'GravityView_Admin_Views::render_setting_row', '1.1.7', 'GravityView_Render_Settings::render_setting_row' ); |
146 | - GravityView_Render_Settings::render_setting_row( $key, $current_settings, $override_input, $name , $id ); |
|
146 | + GravityView_Render_Settings::render_setting_row( $key, $current_settings, $override_input, $name, $id ); |
|
147 | 147 | } |
148 | 148 | |
149 | 149 | /** |
@@ -166,9 +166,9 @@ discard block |
||
166 | 166 | |
167 | 167 | $connected_views = gravityview_get_connected_views( $id, array( 'post_status' => 'any' ) ); |
168 | 168 | |
169 | - if( empty( $connected_views ) ) { |
|
169 | + if ( empty( $connected_views ) ) { |
|
170 | 170 | |
171 | - $menu_items['gravityview'] = array( |
|
171 | + $menu_items[ 'gravityview' ] = array( |
|
172 | 172 | 'label' => esc_attr__( 'Create a View', 'gravityview' ), |
173 | 173 | 'icon' => '<i class="fa fa-lg gv-icon-astronaut-head gv-icon"></i>', |
174 | 174 | 'title' => esc_attr__( 'Create a View using this form as a data source', 'gravityview' ), |
@@ -184,22 +184,22 @@ discard block |
||
184 | 184 | $sub_menu_items = array(); |
185 | 185 | foreach ( (array)$connected_views as $view ) { |
186 | 186 | |
187 | - if( ! GVCommon::has_cap( 'edit_gravityview', $view->ID ) ) { |
|
187 | + if ( ! GVCommon::has_cap( 'edit_gravityview', $view->ID ) ) { |
|
188 | 188 | continue; |
189 | 189 | } |
190 | 190 | |
191 | - $label = empty( $view->post_title ) ? sprintf( __('No Title (View #%d)', 'gravityview' ), $view->ID ) : $view->post_title; |
|
191 | + $label = empty( $view->post_title ) ? sprintf( __( 'No Title (View #%d)', 'gravityview' ), $view->ID ) : $view->post_title; |
|
192 | 192 | |
193 | - $sub_menu_items[] = array( |
|
193 | + $sub_menu_items[ ] = array( |
|
194 | 194 | 'label' => esc_attr( $label ), |
195 | - 'url' => admin_url( 'post.php?action=edit&post='.$view->ID ), |
|
195 | + 'url' => admin_url( 'post.php?action=edit&post=' . $view->ID ), |
|
196 | 196 | ); |
197 | 197 | } |
198 | 198 | |
199 | 199 | // If there were no items added, then let's create the parent menu |
200 | - if( $sub_menu_items ) { |
|
200 | + if ( $sub_menu_items ) { |
|
201 | 201 | |
202 | - $sub_menu_items[] = array( |
|
202 | + $sub_menu_items[ ] = array( |
|
203 | 203 | 'label' => esc_attr__( 'Create a View', 'gravityview' ), |
204 | 204 | 'link_class' => 'gv-create-view', |
205 | 205 | 'title' => esc_attr__( 'Create a View using this form as a data source', 'gravityview' ), |
@@ -208,14 +208,14 @@ discard block |
||
208 | 208 | ); |
209 | 209 | |
210 | 210 | // Make sure Gravity Forms uses the submenu; if there's only one item, it uses a link instead of a dropdown |
211 | - $sub_menu_items[] = array( |
|
211 | + $sub_menu_items[ ] = array( |
|
212 | 212 | 'url' => '#', |
213 | 213 | 'label' => '', |
214 | 214 | 'menu_class' => 'hidden', |
215 | 215 | 'capabilities' => '', |
216 | 216 | ); |
217 | 217 | |
218 | - $menu_items['gravityview'] = array( |
|
218 | + $menu_items[ 'gravityview' ] = array( |
|
219 | 219 | 'label' => __( 'Connected Views', 'gravityview' ), |
220 | 220 | 'icon' => '<i class="fa fa-lg gv-icon-astronaut-head gv-icon"></i>', |
221 | 221 | 'title' => __( 'GravityView Views using this form as a data source', 'gravityview' ), |
@@ -244,8 +244,8 @@ discard block |
||
244 | 244 | $add = array( 'captcha', 'page' ); |
245 | 245 | |
246 | 246 | // Don't allowing editing the following values: |
247 | - if( $context === 'edit' ) { |
|
248 | - $add[] = 'post_id'; |
|
247 | + if ( $context === 'edit' ) { |
|
248 | + $add[ ] = 'post_id'; |
|
249 | 249 | } |
250 | 250 | |
251 | 251 | $return = array_merge( $array, $add ); |
@@ -268,32 +268,32 @@ discard block |
||
268 | 268 | foreach ( $default_args as $key => $arg ) { |
269 | 269 | |
270 | 270 | // If an arg has `tooltip` defined, but it's false, don't display a tooltip |
271 | - if( isset( $arg['tooltip'] ) && empty( $arg['tooltip'] ) ) { continue; } |
|
271 | + if ( isset( $arg[ 'tooltip' ] ) && empty( $arg[ 'tooltip' ] ) ) { continue; } |
|
272 | 272 | |
273 | 273 | // By default, use `tooltip` if defined. |
274 | - $tooltip = empty( $arg['tooltip'] ) ? NULL : $arg['tooltip']; |
|
274 | + $tooltip = empty( $arg[ 'tooltip' ] ) ? NULL : $arg[ 'tooltip' ]; |
|
275 | 275 | |
276 | 276 | // Otherwise, use the description as a tooltip. |
277 | - if( empty( $tooltip ) && !empty( $arg['desc'] ) ) { |
|
278 | - $tooltip = $arg['desc']; |
|
277 | + if ( empty( $tooltip ) && ! empty( $arg[ 'desc' ] ) ) { |
|
278 | + $tooltip = $arg[ 'desc' ]; |
|
279 | 279 | } |
280 | 280 | |
281 | 281 | // If there's no tooltip set, continue |
282 | - if( empty( $tooltip ) ) { |
|
282 | + if ( empty( $tooltip ) ) { |
|
283 | 283 | continue; |
284 | 284 | } |
285 | 285 | |
286 | 286 | // Add the tooltip |
287 | - $gv_tooltips[ 'gv_'.$key ] = array( |
|
288 | - 'title' => $arg['label'], |
|
287 | + $gv_tooltips[ 'gv_' . $key ] = array( |
|
288 | + 'title' => $arg[ 'label' ], |
|
289 | 289 | 'value' => $tooltip, |
290 | 290 | ); |
291 | 291 | |
292 | 292 | } |
293 | 293 | |
294 | - $gv_tooltips['gv_css_merge_tags'] = array( |
|
295 | - 'title' => __('CSS Merge Tags', 'gravityview'), |
|
296 | - 'value' => sprintf( __( 'Developers: The CSS classes will be sanitized using the %ssanitize_title_with_dashes()%s function.', 'gravityview'), '<code>', '</code>' ) |
|
294 | + $gv_tooltips[ 'gv_css_merge_tags' ] = array( |
|
295 | + 'title' => __( 'CSS Merge Tags', 'gravityview' ), |
|
296 | + 'value' => sprintf( __( 'Developers: The CSS classes will be sanitized using the %ssanitize_title_with_dashes()%s function.', 'gravityview' ), '<code>', '</code>' ) |
|
297 | 297 | ); |
298 | 298 | |
299 | 299 | /** |
@@ -311,9 +311,9 @@ discard block |
||
311 | 311 | |
312 | 312 | foreach ( $gv_tooltips as $key => $tooltip ) { |
313 | 313 | |
314 | - $title = empty( $tooltip['title'] ) ? '' : '<h6>'.esc_html( $tooltip['title'] ) .'</h6>'; |
|
314 | + $title = empty( $tooltip[ 'title' ] ) ? '' : '<h6>' . esc_html( $tooltip[ 'title' ] ) . '</h6>'; |
|
315 | 315 | |
316 | - $tooltips[ $key ] = $title . wpautop( esc_html( $tooltip['value'] ) ); |
|
316 | + $tooltips[ $key ] = $title . wpautop( esc_html( $tooltip[ 'value' ] ) ); |
|
317 | 317 | } |
318 | 318 | |
319 | 319 | return $tooltips; |
@@ -327,7 +327,7 @@ discard block |
||
327 | 327 | * |
328 | 328 | * @return void |
329 | 329 | */ |
330 | - public function add_custom_column_content( $column_name = NULL, $post_id ) { |
|
330 | + public function add_custom_column_content( $column_name = NULL, $post_id ) { |
|
331 | 331 | |
332 | 332 | $output = ''; |
333 | 333 | |
@@ -349,7 +349,7 @@ discard block |
||
349 | 349 | // Generate backup if label doesn't exist: `example_name` => `Example Name` |
350 | 350 | $template_id_pretty = ucwords( implode( ' ', explode( '_', $template_id ) ) ); |
351 | 351 | |
352 | - $output = $template ? $template['label'] : $template_id_pretty; |
|
352 | + $output = $template ? $template[ 'label' ] : $template_id_pretty; |
|
353 | 353 | |
354 | 354 | break; |
355 | 355 | |
@@ -390,44 +390,44 @@ discard block |
||
390 | 390 | static public function get_connected_form_links( $form, $include_form_link = true ) { |
391 | 391 | |
392 | 392 | // Either the form is empty or the form ID is 0, not yet set. |
393 | - if( empty( $form ) ) { |
|
393 | + if ( empty( $form ) ) { |
|
394 | 394 | return ''; |
395 | 395 | } |
396 | 396 | |
397 | 397 | // The $form is passed as the form ID |
398 | - if( !is_array( $form ) ) { |
|
398 | + if ( ! is_array( $form ) ) { |
|
399 | 399 | $form = gravityview_get_form( $form ); |
400 | 400 | } |
401 | 401 | |
402 | - $form_id = $form['id']; |
|
402 | + $form_id = $form[ 'id' ]; |
|
403 | 403 | $links = array(); |
404 | 404 | |
405 | - if( GVCommon::has_cap( 'gravityforms_edit_forms' ) ) { |
|
405 | + if ( GVCommon::has_cap( 'gravityforms_edit_forms' ) ) { |
|
406 | 406 | $form_url = admin_url( sprintf( 'admin.php?page=gf_edit_forms&id=%d', $form_id ) ); |
407 | - $form_link = '<strong class="gv-form-title">'.gravityview_get_link( $form_url, $form['title'], 'class=row-title' ).'</strong>'; |
|
408 | - $links[] = '<span>'.gravityview_get_link( $form_url, __('Edit Form', 'gravityview') ).'</span>'; |
|
407 | + $form_link = '<strong class="gv-form-title">' . gravityview_get_link( $form_url, $form[ 'title' ], 'class=row-title' ) . '</strong>'; |
|
408 | + $links[ ] = '<span>' . gravityview_get_link( $form_url, __( 'Edit Form', 'gravityview' ) ) . '</span>'; |
|
409 | 409 | } else { |
410 | - $form_link = '<strong class="gv-form-title">'. esc_html( $form['title'] ). '</strong>'; |
|
410 | + $form_link = '<strong class="gv-form-title">' . esc_html( $form[ 'title' ] ) . '</strong>'; |
|
411 | 411 | } |
412 | 412 | |
413 | - if( GVCommon::has_cap( 'gravityforms_view_entries' ) ) { |
|
413 | + if ( GVCommon::has_cap( 'gravityforms_view_entries' ) ) { |
|
414 | 414 | $entries_url = admin_url( sprintf( 'admin.php?page=gf_entries&id=%d', $form_id ) ); |
415 | - $links[] = '<span>'.gravityview_get_link( $entries_url, __('Entries', 'gravityview') ).'</span>'; |
|
415 | + $links[ ] = '<span>' . gravityview_get_link( $entries_url, __( 'Entries', 'gravityview' ) ) . '</span>'; |
|
416 | 416 | } |
417 | 417 | |
418 | - if( GVCommon::has_cap( array( 'gravityforms_edit_settings', 'gravityview_view_settings' ) ) ) { |
|
418 | + if ( GVCommon::has_cap( array( 'gravityforms_edit_settings', 'gravityview_view_settings' ) ) ) { |
|
419 | 419 | $settings_url = admin_url( sprintf( 'admin.php?page=gf_edit_forms&view=settings&id=%d', $form_id ) ); |
420 | - $links[] = '<span>'.gravityview_get_link( $settings_url, __('Settings', 'gravityview'), 'title='.__('Edit settings for this form', 'gravityview') ).'</span>'; |
|
420 | + $links[ ] = '<span>' . gravityview_get_link( $settings_url, __( 'Settings', 'gravityview' ), 'title=' . __( 'Edit settings for this form', 'gravityview' ) ) . '</span>'; |
|
421 | 421 | } |
422 | 422 | |
423 | - if( GVCommon::has_cap( array("gravityforms_edit_forms", "gravityforms_create_form", "gravityforms_preview_forms") ) ) { |
|
423 | + if ( GVCommon::has_cap( array( "gravityforms_edit_forms", "gravityforms_create_form", "gravityforms_preview_forms" ) ) ) { |
|
424 | 424 | $preview_url = site_url( sprintf( '?gf_page=preview&id=%d', $form_id ) ); |
425 | - $links[] = '<span>'.gravityview_get_link( $preview_url, __('Preview Form', 'gravityview'), 'title='.__('Preview this form', 'gravityview') ).'</span>'; |
|
425 | + $links[ ] = '<span>' . gravityview_get_link( $preview_url, __( 'Preview Form', 'gravityview' ), 'title=' . __( 'Preview this form', 'gravityview' ) ) . '</span>'; |
|
426 | 426 | } |
427 | 427 | |
428 | 428 | $output = ''; |
429 | 429 | |
430 | - if( !empty( $include_form_link ) ) { |
|
430 | + if ( ! empty( $include_form_link ) ) { |
|
431 | 431 | $output .= $form_link; |
432 | 432 | } |
433 | 433 | |
@@ -439,7 +439,7 @@ discard block |
||
439 | 439 | */ |
440 | 440 | $links = apply_filters( 'gravityview_connected_form_links', $links, $form ); |
441 | 441 | |
442 | - $output .= '<div class="row-actions">'. implode( ' | ', $links ) .'</div>'; |
|
442 | + $output .= '<div class="row-actions">' . implode( ' | ', $links ) . '</div>'; |
|
443 | 443 | |
444 | 444 | return $output; |
445 | 445 | } |
@@ -453,8 +453,8 @@ discard block |
||
453 | 453 | // Get the date column and save it for later to add back in. |
454 | 454 | // This adds it after the Data Source column. |
455 | 455 | // This way, we don't need to do array_slice, array_merge, etc. |
456 | - $date = $columns['date']; |
|
457 | - unset( $columns['date'] ); |
|
456 | + $date = $columns[ 'date' ]; |
|
457 | + unset( $columns[ 'date' ] ); |
|
458 | 458 | |
459 | 459 | $data_source_required_caps = array( |
460 | 460 | 'gravityforms_edit_forms', |
@@ -465,14 +465,14 @@ discard block |
||
465 | 465 | 'gravityforms_preview_forms', |
466 | 466 | ); |
467 | 467 | |
468 | - if( GVCommon::has_cap( $data_source_required_caps ) ) { |
|
469 | - $columns['gv_connected_form'] = __( 'Data Source', 'gravityview' ); |
|
468 | + if ( GVCommon::has_cap( $data_source_required_caps ) ) { |
|
469 | + $columns[ 'gv_connected_form' ] = __( 'Data Source', 'gravityview' ); |
|
470 | 470 | } |
471 | 471 | |
472 | - $columns['gv_template'] = _x( 'Template', 'Column title that shows what template is being used for Views', 'gravityview' ); |
|
472 | + $columns[ 'gv_template' ] = _x( 'Template', 'Column title that shows what template is being used for Views', 'gravityview' ); |
|
473 | 473 | |
474 | 474 | // Add the date back in. |
475 | - $columns['date'] = $date; |
|
475 | + $columns[ 'date' ] = $date; |
|
476 | 476 | |
477 | 477 | return $columns; |
478 | 478 | } |
@@ -486,12 +486,12 @@ discard block |
||
486 | 486 | */ |
487 | 487 | function save_postdata( $post_id ) { |
488 | 488 | |
489 | - if( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ){ |
|
489 | + if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) { |
|
490 | 490 | return; |
491 | 491 | } |
492 | 492 | |
493 | 493 | // validate post_type |
494 | - if ( ! isset( $_POST['post_type'] ) || 'gravityview' != $_POST['post_type'] ) { |
|
494 | + if ( ! isset( $_POST[ 'post_type' ] ) || 'gravityview' != $_POST[ 'post_type' ] ) { |
|
495 | 495 | return; |
496 | 496 | } |
497 | 497 | |
@@ -506,65 +506,65 @@ discard block |
||
506 | 506 | $statii = array(); |
507 | 507 | |
508 | 508 | // check if this is a start fresh View |
509 | - if ( isset( $_POST['gravityview_select_form_nonce'] ) && wp_verify_nonce( $_POST['gravityview_select_form_nonce'], 'gravityview_select_form' ) ) { |
|
509 | + if ( isset( $_POST[ 'gravityview_select_form_nonce' ] ) && wp_verify_nonce( $_POST[ 'gravityview_select_form_nonce' ], 'gravityview_select_form' ) ) { |
|
510 | 510 | |
511 | - $form_id = !empty( $_POST['gravityview_form_id'] ) ? $_POST['gravityview_form_id'] : ''; |
|
511 | + $form_id = ! empty( $_POST[ 'gravityview_form_id' ] ) ? $_POST[ 'gravityview_form_id' ] : ''; |
|
512 | 512 | // save form id |
513 | - $statii['form_id'] = update_post_meta( $post_id, '_gravityview_form_id', $form_id ); |
|
513 | + $statii[ 'form_id' ] = update_post_meta( $post_id, '_gravityview_form_id', $form_id ); |
|
514 | 514 | |
515 | 515 | } |
516 | 516 | |
517 | - if( false === GVCommon::has_cap( 'gravityforms_create_form' ) && empty( $statii['form_id'] ) ) { |
|
517 | + if ( false === GVCommon::has_cap( 'gravityforms_create_form' ) && empty( $statii[ 'form_id' ] ) ) { |
|
518 | 518 | gravityview()->log->error( 'Current user does not have the capability to create a new Form.', array( 'data' => wp_get_current_user() ) ); |
519 | 519 | return; |
520 | 520 | } |
521 | 521 | |
522 | 522 | // Was this a start fresh? |
523 | - if ( ! empty( $_POST['gravityview_form_id_start_fresh'] ) ) { |
|
524 | - $statii['start_fresh'] = add_post_meta( $post_id, '_gravityview_start_fresh', 1 ); |
|
523 | + if ( ! empty( $_POST[ 'gravityview_form_id_start_fresh' ] ) ) { |
|
524 | + $statii[ 'start_fresh' ] = add_post_meta( $post_id, '_gravityview_start_fresh', 1 ); |
|
525 | 525 | } else { |
526 | - $statii['start_fresh'] = delete_post_meta( $post_id, '_gravityview_start_fresh' ); |
|
526 | + $statii[ 'start_fresh' ] = delete_post_meta( $post_id, '_gravityview_start_fresh' ); |
|
527 | 527 | } |
528 | 528 | |
529 | 529 | // Check if we have a template id |
530 | - if ( isset( $_POST['gravityview_select_template_nonce'] ) && wp_verify_nonce( $_POST['gravityview_select_template_nonce'], 'gravityview_select_template' ) ) { |
|
530 | + if ( isset( $_POST[ 'gravityview_select_template_nonce' ] ) && wp_verify_nonce( $_POST[ 'gravityview_select_template_nonce' ], 'gravityview_select_template' ) ) { |
|
531 | 531 | |
532 | - $template_id = !empty( $_POST['gravityview_directory_template'] ) ? $_POST['gravityview_directory_template'] : ''; |
|
532 | + $template_id = ! empty( $_POST[ 'gravityview_directory_template' ] ) ? $_POST[ 'gravityview_directory_template' ] : ''; |
|
533 | 533 | |
534 | 534 | // now save template id |
535 | - $statii['directory_template'] = update_post_meta( $post_id, '_gravityview_directory_template', $template_id ); |
|
535 | + $statii[ 'directory_template' ] = update_post_meta( $post_id, '_gravityview_directory_template', $template_id ); |
|
536 | 536 | } |
537 | 537 | |
538 | 538 | |
539 | 539 | // save View Configuration metabox |
540 | - if ( isset( $_POST['gravityview_view_configuration_nonce'] ) && wp_verify_nonce( $_POST['gravityview_view_configuration_nonce'], 'gravityview_view_configuration' ) ) { |
|
540 | + if ( isset( $_POST[ 'gravityview_view_configuration_nonce' ] ) && wp_verify_nonce( $_POST[ 'gravityview_view_configuration_nonce' ], 'gravityview_view_configuration' ) ) { |
|
541 | 541 | |
542 | 542 | // template settings |
543 | - if( empty( $_POST['template_settings'] ) ) { |
|
544 | - $_POST['template_settings'] = array(); |
|
543 | + if ( empty( $_POST[ 'template_settings' ] ) ) { |
|
544 | + $_POST[ 'template_settings' ] = array(); |
|
545 | 545 | } |
546 | - $statii['template_settings'] = update_post_meta( $post_id, '_gravityview_template_settings', $_POST['template_settings'] ); |
|
546 | + $statii[ 'template_settings' ] = update_post_meta( $post_id, '_gravityview_template_settings', $_POST[ 'template_settings' ] ); |
|
547 | 547 | |
548 | 548 | $fields = array(); |
549 | 549 | |
550 | 550 | // Directory&single Visible Fields |
551 | - if( !empty( $preset_fields ) ) { |
|
551 | + if ( ! empty( $preset_fields ) ) { |
|
552 | 552 | |
553 | 553 | $fields = $preset_fields; |
554 | 554 | |
555 | - } elseif( !empty( $_POST['gv_fields'] ) ) { |
|
555 | + } elseif ( ! empty( $_POST[ 'gv_fields' ] ) ) { |
|
556 | 556 | $fields = _gravityview_process_posted_fields(); |
557 | 557 | } |
558 | 558 | |
559 | 559 | $fields = wp_slash( $fields ); |
560 | 560 | |
561 | - $statii['directory_fields'] = update_post_meta( $post_id, '_gravityview_directory_fields', $fields ); |
|
561 | + $statii[ 'directory_fields' ] = update_post_meta( $post_id, '_gravityview_directory_fields', $fields ); |
|
562 | 562 | |
563 | 563 | // Directory Visible Widgets |
564 | - if( empty( $_POST['widgets'] ) ) { |
|
565 | - $_POST['widgets'] = array(); |
|
564 | + if ( empty( $_POST[ 'widgets' ] ) ) { |
|
565 | + $_POST[ 'widgets' ] = array(); |
|
566 | 566 | } |
567 | - $statii['directory_widgets'] = gravityview_set_directory_widgets( $post_id, $_POST['widgets'] ); |
|
567 | + $statii[ 'directory_widgets' ] = gravityview_set_directory_widgets( $post_id, $_POST[ 'widgets' ] ); |
|
568 | 568 | |
569 | 569 | } // end save view configuration |
570 | 570 | |
@@ -574,7 +574,7 @@ discard block |
||
574 | 574 | * @param array $statii Array of statuses of the post meta saving processes. If saving worked, each key should be mapped to a value of the post ID (`directory_widgets` => `124`). If failed (or didn't change), the value will be false. |
575 | 575 | * @since 1.17.2 |
576 | 576 | */ |
577 | - do_action('gravityview_view_saved', $post_id, $statii ); |
|
577 | + do_action( 'gravityview_view_saved', $post_id, $statii ); |
|
578 | 578 | |
579 | 579 | gravityview()->log->debug( '[save_postdata] Update Post Meta Statuses (also returns false if nothing changed)', array( 'data' => array_map( 'intval', $statii ) ) ); |
580 | 580 | } |
@@ -618,20 +618,20 @@ discard block |
||
618 | 618 | |
619 | 619 | $output = ''; |
620 | 620 | |
621 | - if( !empty( $fields ) ) { |
|
621 | + if ( ! empty( $fields ) ) { |
|
622 | 622 | |
623 | - foreach( $fields as $id => $details ) { |
|
623 | + foreach ( $fields as $id => $details ) { |
|
624 | 624 | |
625 | - if( in_array( $details['type'], (array) $blacklist_field_types ) ) { |
|
625 | + if ( in_array( $details[ 'type' ], (array)$blacklist_field_types ) ) { |
|
626 | 626 | continue; |
627 | 627 | } |
628 | 628 | |
629 | 629 | // Edit mode only allows editing the parent fields, not single inputs. |
630 | - if( $context === 'edit' && !empty( $details['parent'] ) ) { |
|
630 | + if ( $context === 'edit' && ! empty( $details[ 'parent' ] ) ) { |
|
631 | 631 | continue; |
632 | 632 | } |
633 | 633 | |
634 | - $output .= new GravityView_Admin_View_Field( $details['label'], $id, $details, $settings = array(), $form ); |
|
634 | + $output .= new GravityView_Admin_View_Field( $details[ 'label' ], $id, $details, $settings = array(), $form ); |
|
635 | 635 | |
636 | 636 | } // End foreach |
637 | 637 | } |
@@ -639,7 +639,7 @@ discard block |
||
639 | 639 | echo $output; |
640 | 640 | |
641 | 641 | // For the EDIT view we only want to allow the form fields. |
642 | - if( $context === 'edit' ) { |
|
642 | + if ( $context === 'edit' ) { |
|
643 | 643 | return; |
644 | 644 | } |
645 | 645 | |
@@ -663,16 +663,16 @@ discard block |
||
663 | 663 | $additional_fields = apply_filters( 'gravityview_additional_fields', array( |
664 | 664 | array( |
665 | 665 | 'label_text' => __( '+ Add All Fields', 'gravityview' ), |
666 | - 'desc' => __('Add all the available fields at once.', 'gravityview'), |
|
666 | + 'desc' => __( 'Add all the available fields at once.', 'gravityview' ), |
|
667 | 667 | 'field_id' => 'all-fields', |
668 | 668 | 'label_type' => 'field', |
669 | 669 | 'input_type' => NULL, |
670 | 670 | 'field_options' => NULL, |
671 | 671 | 'settings_html' => NULL, |
672 | 672 | ) |
673 | - )); |
|
673 | + ) ); |
|
674 | 674 | |
675 | - if( !empty( $additional_fields )) { |
|
675 | + if ( ! empty( $additional_fields ) ) { |
|
676 | 676 | foreach ( (array)$additional_fields as $item ) { |
677 | 677 | |
678 | 678 | // Prevent items from not having index set |
@@ -683,16 +683,16 @@ discard block |
||
683 | 683 | 'input_type' => NULL, |
684 | 684 | 'field_options' => NULL, |
685 | 685 | 'settings_html' => NULL, |
686 | - )); |
|
686 | + ) ); |
|
687 | 687 | |
688 | 688 | // Backward compat. |
689 | - if( !empty( $item['field_options'] ) ) { |
|
689 | + if ( ! empty( $item[ 'field_options' ] ) ) { |
|
690 | 690 | // Use settings_html from now on. |
691 | - $item['settings_html'] = $item['field_options']; |
|
691 | + $item[ 'settings_html' ] = $item[ 'field_options' ]; |
|
692 | 692 | } |
693 | 693 | |
694 | 694 | // Render a label for each of them |
695 | - echo new GravityView_Admin_View_Field( $item['label_text'], $item['field_id'], $item, $settings = array(), $form ); |
|
695 | + echo new GravityView_Admin_View_Field( $item[ 'label_text' ], $item[ 'field_id' ], $item, $settings = array(), $form ); |
|
696 | 696 | |
697 | 697 | } |
698 | 698 | } |
@@ -705,54 +705,54 @@ discard block |
||
705 | 705 | * @param string $zone Either 'single', 'directory', 'header', 'footer' |
706 | 706 | * @return array |
707 | 707 | */ |
708 | - function get_entry_default_fields($form, $zone) { |
|
708 | + function get_entry_default_fields( $form, $zone ) { |
|
709 | 709 | |
710 | 710 | $entry_default_fields = array(); |
711 | 711 | |
712 | - if( in_array( $zone, array( 'directory', 'single' ) ) ) { |
|
712 | + if ( in_array( $zone, array( 'directory', 'single' ) ) ) { |
|
713 | 713 | |
714 | 714 | $entry_default_fields = array( |
715 | 715 | 'id' => array( |
716 | - 'label' => __('Entry ID', 'gravityview'), |
|
716 | + 'label' => __( 'Entry ID', 'gravityview' ), |
|
717 | 717 | 'type' => 'id', |
718 | - 'desc' => __('The unique ID of the entry.', 'gravityview'), |
|
718 | + 'desc' => __( 'The unique ID of the entry.', 'gravityview' ), |
|
719 | 719 | ), |
720 | 720 | 'date_created' => array( |
721 | - 'label' => __('Entry Date', 'gravityview'), |
|
722 | - 'desc' => __('The date the entry was created.', 'gravityview'), |
|
721 | + 'label' => __( 'Entry Date', 'gravityview' ), |
|
722 | + 'desc' => __( 'The date the entry was created.', 'gravityview' ), |
|
723 | 723 | 'type' => 'date_created', |
724 | 724 | ), |
725 | 725 | 'source_url' => array( |
726 | - 'label' => __('Source URL', 'gravityview'), |
|
726 | + 'label' => __( 'Source URL', 'gravityview' ), |
|
727 | 727 | 'type' => 'source_url', |
728 | - 'desc' => __('The URL of the page where the form was submitted.', 'gravityview'), |
|
728 | + 'desc' => __( 'The URL of the page where the form was submitted.', 'gravityview' ), |
|
729 | 729 | ), |
730 | 730 | 'ip' => array( |
731 | - 'label' => __('User IP', 'gravityview'), |
|
731 | + 'label' => __( 'User IP', 'gravityview' ), |
|
732 | 732 | 'type' => 'ip', |
733 | - 'desc' => __('The IP Address of the user who created the entry.', 'gravityview'), |
|
733 | + 'desc' => __( 'The IP Address of the user who created the entry.', 'gravityview' ), |
|
734 | 734 | ), |
735 | 735 | 'created_by' => array( |
736 | - 'label' => __('User', 'gravityview'), |
|
736 | + 'label' => __( 'User', 'gravityview' ), |
|
737 | 737 | 'type' => 'created_by', |
738 | - 'desc' => __('Details of the logged-in user who created the entry (if any).', 'gravityview'), |
|
738 | + 'desc' => __( 'Details of the logged-in user who created the entry (if any).', 'gravityview' ), |
|
739 | 739 | ), |
740 | 740 | |
741 | 741 | /** |
742 | 742 | * @since 1.7.2 |
743 | 743 | */ |
744 | 744 | 'other_entries' => array( |
745 | - 'label' => __('Other Entries', 'gravityview'), |
|
745 | + 'label' => __( 'Other Entries', 'gravityview' ), |
|
746 | 746 | 'type' => 'other_entries', |
747 | - 'desc' => __('Display other entries created by the entry creator.', 'gravityview'), |
|
747 | + 'desc' => __( 'Display other entries created by the entry creator.', 'gravityview' ), |
|
748 | 748 | ), |
749 | 749 | ); |
750 | 750 | |
751 | - if( 'single' !== $zone) { |
|
751 | + if ( 'single' !== $zone ) { |
|
752 | 752 | |
753 | - $entry_default_fields['entry_link'] = array( |
|
754 | - 'label' => __('Link to Entry', 'gravityview'), |
|
755 | - 'desc' => __('A dedicated link to the single entry with customizable text.', 'gravityview'), |
|
753 | + $entry_default_fields[ 'entry_link' ] = array( |
|
754 | + 'label' => __( 'Link to Entry', 'gravityview' ), |
|
755 | + 'desc' => __( 'A dedicated link to the single entry with customizable text.', 'gravityview' ), |
|
756 | 756 | 'type' => 'entry_link', |
757 | 757 | ); |
758 | 758 | } |
@@ -762,10 +762,10 @@ discard block |
||
762 | 762 | /** |
763 | 763 | * @since 1.2 |
764 | 764 | */ |
765 | - $entry_default_fields['custom'] = array( |
|
766 | - 'label' => __('Custom Content', 'gravityview'), |
|
765 | + $entry_default_fields[ 'custom' ] = array( |
|
766 | + 'label' => __( 'Custom Content', 'gravityview' ), |
|
767 | 767 | 'type' => 'custom', |
768 | - 'desc' => __('Insert custom text or HTML.', 'gravityview'), |
|
768 | + 'desc' => __( 'Insert custom text or HTML.', 'gravityview' ), |
|
769 | 769 | ); |
770 | 770 | |
771 | 771 | /** |
@@ -774,7 +774,7 @@ discard block |
||
774 | 774 | * @param string|array $form form_ID or form object |
775 | 775 | * @param string $zone Either 'single', 'directory', 'header', 'footer' |
776 | 776 | */ |
777 | - return apply_filters( 'gravityview_entry_default_fields', $entry_default_fields, $form, $zone); |
|
777 | + return apply_filters( 'gravityview_entry_default_fields', $entry_default_fields, $form, $zone ); |
|
778 | 778 | } |
779 | 779 | |
780 | 780 | /** |
@@ -785,7 +785,7 @@ discard block |
||
785 | 785 | */ |
786 | 786 | function get_available_fields( $form = '', $zone = NULL ) { |
787 | 787 | |
788 | - if( empty( $form ) ) { |
|
788 | + if ( empty( $form ) ) { |
|
789 | 789 | gravityview()->log->error( '$form is empty' ); |
790 | 790 | return array(); |
791 | 791 | } |
@@ -794,7 +794,7 @@ discard block |
||
794 | 794 | $fields = gravityview_get_form_fields( $form, true ); |
795 | 795 | |
796 | 796 | // get meta fields ( only if form was already created ) |
797 | - if( !is_array( $form ) ) { |
|
797 | + if ( ! is_array( $form ) ) { |
|
798 | 798 | $meta_fields = gravityview_get_entry_meta( $form ); |
799 | 799 | } else { |
800 | 800 | $meta_fields = array(); |
@@ -807,7 +807,7 @@ discard block |
||
807 | 807 | $fields = $fields + $meta_fields + $default_fields; |
808 | 808 | |
809 | 809 | // Move Custom Content to top |
810 | - $fields = array( 'custom' => $fields['custom'] ) + $fields; |
|
810 | + $fields = array( 'custom' => $fields[ 'custom' ] ) + $fields; |
|
811 | 811 | |
812 | 812 | return $fields; |
813 | 813 | } |
@@ -821,11 +821,11 @@ discard block |
||
821 | 821 | |
822 | 822 | $widgets = $this->get_registered_widgets(); |
823 | 823 | |
824 | - if( !empty( $widgets ) ) { |
|
824 | + if ( ! empty( $widgets ) ) { |
|
825 | 825 | |
826 | - foreach( $widgets as $id => $details ) { |
|
826 | + foreach ( $widgets as $id => $details ) { |
|
827 | 827 | |
828 | - echo new GravityView_Admin_View_Widget( $details['label'], $id, $details ); |
|
828 | + echo new GravityView_Admin_View_Widget( $details[ 'label' ], $id, $details ); |
|
829 | 829 | |
830 | 830 | } |
831 | 831 | } |
@@ -854,7 +854,7 @@ discard block |
||
854 | 854 | function render_active_areas( $template_id, $type, $zone, $rows, $values ) { |
855 | 855 | global $post; |
856 | 856 | |
857 | - if( $type === 'widget' ) { |
|
857 | + if ( $type === 'widget' ) { |
|
858 | 858 | $button_label = __( 'Add Widget', 'gravityview' ); |
859 | 859 | } else { |
860 | 860 | $button_label = __( 'Add Field', 'gravityview' ); |
@@ -866,10 +866,10 @@ discard block |
||
866 | 866 | $form_id = null; |
867 | 867 | |
868 | 868 | // if saved values, get available fields to label everyone |
869 | - if( !empty( $values ) && ( !empty( $post->ID ) || !empty( $_POST['template_id'] ) ) ) { |
|
869 | + if ( ! empty( $values ) && ( ! empty( $post->ID ) || ! empty( $_POST[ 'template_id' ] ) ) ) { |
|
870 | 870 | |
871 | - if( !empty( $_POST['template_id'] ) ) { |
|
872 | - $form = GravityView_Ajax::pre_get_form_fields( $_POST['template_id'] ); |
|
871 | + if ( ! empty( $_POST[ 'template_id' ] ) ) { |
|
872 | + $form = GravityView_Ajax::pre_get_form_fields( $_POST[ 'template_id' ] ); |
|
873 | 873 | } else { |
874 | 874 | $form_id = $form = gravityview_get_form_id( $post->ID ); |
875 | 875 | } |
@@ -887,44 +887,44 @@ discard block |
||
887 | 887 | } |
888 | 888 | } |
889 | 889 | |
890 | - foreach( $rows as $row ) : |
|
891 | - foreach( $row as $col => $areas ) : |
|
892 | - $column = ($col == '2-2') ? '1-2' : $col; ?> |
|
890 | + foreach ( $rows as $row ) : |
|
891 | + foreach ( $row as $col => $areas ) : |
|
892 | + $column = ( $col == '2-2' ) ? '1-2' : $col; ?> |
|
893 | 893 | |
894 | 894 | <div class="gv-grid-col-<?php echo esc_attr( $column ); ?>"> |
895 | 895 | |
896 | - <?php foreach( $areas as $area ) : ?> |
|
896 | + <?php foreach ( $areas as $area ) : ?> |
|
897 | 897 | |
898 | - <div class="gv-droppable-area" data-areaid="<?php echo esc_attr( $zone .'_'. $area['areaid'] ); ?>" data-context="<?php echo esc_attr( $zone ); ?>"> |
|
899 | - <div class="active-drop active-drop-<?php echo esc_attr( $type ); ?>" data-areaid="<?php echo esc_attr( $zone .'_'. $area['areaid'] ); ?>"> |
|
898 | + <div class="gv-droppable-area" data-areaid="<?php echo esc_attr( $zone . '_' . $area[ 'areaid' ] ); ?>" data-context="<?php echo esc_attr( $zone ); ?>"> |
|
899 | + <div class="active-drop active-drop-<?php echo esc_attr( $type ); ?>" data-areaid="<?php echo esc_attr( $zone . '_' . $area[ 'areaid' ] ); ?>"> |
|
900 | 900 | |
901 | 901 | <?php // render saved fields |
902 | 902 | |
903 | - if( ! empty( $values[ $zone .'_'. $area['areaid'] ] ) ) { |
|
903 | + if ( ! empty( $values[ $zone . '_' . $area[ 'areaid' ] ] ) ) { |
|
904 | 904 | |
905 | - foreach( $values[ $zone .'_'. $area['areaid'] ] as $uniqid => $field ) { |
|
905 | + foreach ( $values[ $zone . '_' . $area[ 'areaid' ] ] as $uniqid => $field ) { |
|
906 | 906 | |
907 | 907 | // Maybe has a form ID |
908 | - $form_id = empty( $field['form_id'] ) ? $form_id : $field['form_id']; |
|
908 | + $form_id = empty( $field[ 'form_id' ] ) ? $form_id : $field[ 'form_id' ]; |
|
909 | 909 | |
910 | 910 | $input_type = NULL; |
911 | 911 | |
912 | 912 | if ( $form_id ) { |
913 | - $original_item = isset( $available_items[ $form_id ] [ $field['id'] ] ) ? $available_items[ $form_id ] [ $field['id'] ] : false ; |
|
913 | + $original_item = isset( $available_items[ $form_id ] [ $field[ 'id' ] ] ) ? $available_items[ $form_id ] [ $field[ 'id' ] ] : false; |
|
914 | 914 | } else { |
915 | - $original_item = isset( $available_items[ $field['id'] ] ) ? $available_items[ $field['id'] ] : false ; |
|
915 | + $original_item = isset( $available_items[ $field[ 'id' ] ] ) ? $available_items[ $field[ 'id' ] ] : false; |
|
916 | 916 | } |
917 | 917 | |
918 | - if ( !$original_item ) { |
|
919 | - gravityview()->log->error( 'An item was not available when rendering the output; maybe it was added by a plugin that is now de-activated.', array(' data' => array('available_items' => $available_items, 'field' => $field ) ) ); |
|
918 | + if ( ! $original_item ) { |
|
919 | + gravityview()->log->error( 'An item was not available when rendering the output; maybe it was added by a plugin that is now de-activated.', array( ' data' => array( 'available_items' => $available_items, 'field' => $field ) ) ); |
|
920 | 920 | |
921 | 921 | $original_item = $field; |
922 | 922 | } else { |
923 | - $input_type = isset( $original_item['type'] ) ? $original_item['type'] : NULL; |
|
923 | + $input_type = isset( $original_item[ 'type' ] ) ? $original_item[ 'type' ] : NULL; |
|
924 | 924 | } |
925 | 925 | |
926 | 926 | // Field options dialog box |
927 | - $field_options = GravityView_Render_Settings::render_field_options( $form_id, $type, $template_id, $field['id'], $original_item['label'], $zone .'_'. $area['areaid'], $input_type, $uniqid, $field, $zone, $original_item ); |
|
927 | + $field_options = GravityView_Render_Settings::render_field_options( $form_id, $type, $template_id, $field[ 'id' ], $original_item[ 'label' ], $zone . '_' . $area[ 'areaid' ], $input_type, $uniqid, $field, $zone, $original_item ); |
|
928 | 928 | |
929 | 929 | $item = array( |
930 | 930 | 'input_type' => $input_type, |
@@ -937,23 +937,23 @@ discard block |
||
937 | 937 | $item = wp_parse_args( $item, $original_item ); |
938 | 938 | } |
939 | 939 | |
940 | - switch( $type ) { |
|
940 | + switch ( $type ) { |
|
941 | 941 | case 'widget': |
942 | - echo new GravityView_Admin_View_Widget( $item['label'], $field['id'], $item, $field ); |
|
942 | + echo new GravityView_Admin_View_Widget( $item[ 'label' ], $field[ 'id' ], $item, $field ); |
|
943 | 943 | break; |
944 | 944 | default: |
945 | - echo new GravityView_Admin_View_Field( $field['label'], $field['id'], $item, $field, $form_id ); |
|
945 | + echo new GravityView_Admin_View_Field( $field[ 'label' ], $field[ 'id' ], $item, $field, $form_id ); |
|
946 | 946 | } |
947 | 947 | } |
948 | 948 | |
949 | 949 | } // End if zone is not empty ?> |
950 | 950 | |
951 | - <span class="drop-message"><?php echo sprintf(esc_attr__('"+ %s" or drag existing %ss here.', 'gravityview'), $button_label, $type ); ?></span> |
|
951 | + <span class="drop-message"><?php echo sprintf( esc_attr__( '"+ %s" or drag existing %ss here.', 'gravityview' ), $button_label, $type ); ?></span> |
|
952 | 952 | </div> |
953 | 953 | <div class="gv-droppable-area-action"> |
954 | - <a href="#" class="gv-add-field button-secondary" title="" data-objecttype="<?php echo esc_attr( $type ); ?>" data-areaid="<?php echo esc_attr( $zone .'_'. $area['areaid'] ); ?>" data-context="<?php echo esc_attr( $zone ); ?>" data-formid="<?php echo $view ? esc_attr( $view->form ? $view->form->ID : '' ) : ''; ?>"><?php echo '+ '.esc_html( $button_label ); ?></a> |
|
954 | + <a href="#" class="gv-add-field button-secondary" title="" data-objecttype="<?php echo esc_attr( $type ); ?>" data-areaid="<?php echo esc_attr( $zone . '_' . $area[ 'areaid' ] ); ?>" data-context="<?php echo esc_attr( $zone ); ?>" data-formid="<?php echo $view ? esc_attr( $view->form ? $view->form->ID : '' ) : ''; ?>"><?php echo '+ ' . esc_html( $button_label ); ?></a> |
|
955 | 955 | |
956 | - <p class="gv-droppable-area-title"><strong><?php echo esc_html( $area['title'] ); ?></strong><?php if( !empty( $area['subtitle'] ) ) { ?><span class="gv-droppable-area-subtitle"> – <?php echo esc_html( $area['subtitle'] ); ?></span><?php } ?></p> |
|
956 | + <p class="gv-droppable-area-title"><strong><?php echo esc_html( $area[ 'title' ] ); ?></strong><?php if ( ! empty( $area[ 'subtitle' ] ) ) { ?><span class="gv-droppable-area-subtitle"> – <?php echo esc_html( $area[ 'subtitle' ] ); ?></span><?php } ?></p> |
|
957 | 957 | </div> |
958 | 958 | </div> |
959 | 959 | |
@@ -975,7 +975,7 @@ discard block |
||
975 | 975 | $default_widget_areas = GravityView_Widget::get_default_widget_areas(); |
976 | 976 | |
977 | 977 | $widgets = array(); |
978 | - if( !empty( $post_id ) ) { |
|
978 | + if ( ! empty( $post_id ) ) { |
|
979 | 979 | $widgets = gravityview_get_directory_widgets( $post_id ); |
980 | 980 | } |
981 | 981 | |
@@ -1008,7 +1008,7 @@ discard block |
||
1008 | 1008 | // list of available fields to be shown in the popup |
1009 | 1009 | $forms = gravityview_get_forms( 'any' ); |
1010 | 1010 | |
1011 | - $form_ids = array_map( function ($form) { return $form['id']; }, $forms); |
|
1011 | + $form_ids = array_map( function( $form ) { return $form[ 'id' ]; }, $forms ); |
|
1012 | 1012 | |
1013 | 1013 | foreach ( $form_ids as $form_id ) { |
1014 | 1014 | $filter_field_id = sprintf( 'gv-field-filter-%s-%d', $context, $form_id ); |
@@ -1021,7 +1021,7 @@ discard block |
||
1021 | 1021 | </div> |
1022 | 1022 | |
1023 | 1023 | <div id="available-fields-<?php echo $filter_field_id; ?>" aria-live="polite" role="listbox"> |
1024 | - <?php do_action('gravityview_render_available_fields', $form_id, $context ); ?> |
|
1024 | + <?php do_action( 'gravityview_render_available_fields', $form_id, $context ); ?> |
|
1025 | 1025 | </div> |
1026 | 1026 | |
1027 | 1027 | <div class="gv-no-results hidden description"><?php esc_html_e( 'No fields were found matching the search.', 'gravityview' ); ?></div> |
@@ -1040,7 +1040,7 @@ discard block |
||
1040 | 1040 | * @return string HTML of the active areas |
1041 | 1041 | */ |
1042 | 1042 | function render_directory_active_areas( $template_id = '', $context = 'single', $post_id = '', $echo = false ) { |
1043 | - if( empty( $template_id ) ) { |
|
1043 | + if ( empty( $template_id ) ) { |
|
1044 | 1044 | gravityview()->log->debug( '[render_directory_active_areas] {template_id} is empty', array( 'template_id' => $template_id ) ); |
1045 | 1045 | return ''; |
1046 | 1046 | } |
@@ -1054,12 +1054,12 @@ discard block |
||
1054 | 1054 | */ |
1055 | 1055 | $template_areas = apply_filters( 'gravityview_template_active_areas', array(), $template_id, $context ); |
1056 | 1056 | |
1057 | - if( empty( $template_areas ) ) { |
|
1057 | + if ( empty( $template_areas ) ) { |
|
1058 | 1058 | |
1059 | 1059 | gravityview()->log->debug( '[render_directory_active_areas] No areas defined. Maybe template {template_id} is disabled.', array( 'data' => $template_id ) ); |
1060 | 1060 | $output = '<div>'; |
1061 | - $output .= '<h2 class="description" style="font-size: 16px; margin:0">'. sprintf( esc_html__( 'This View is configured using the %s View type, which is disabled.', 'gravityview' ), '<em>'.$template_id.'</em>' ) .'</h2>'; |
|
1062 | - $output .= '<p class="description" style="font-size: 14px; margin:0 0 1em 0;padding:0">'.esc_html__('The data is not lost; re-activate the associated plugin and the configuration will re-appear.', 'gravityview').'</p>'; |
|
1061 | + $output .= '<h2 class="description" style="font-size: 16px; margin:0">' . sprintf( esc_html__( 'This View is configured using the %s View type, which is disabled.', 'gravityview' ), '<em>' . $template_id . '</em>' ) . '</h2>'; |
|
1062 | + $output .= '<p class="description" style="font-size: 14px; margin:0 0 1em 0;padding:0">' . esc_html__( 'The data is not lost; re-activate the associated plugin and the configuration will re-appear.', 'gravityview' ) . '</p>'; |
|
1063 | 1063 | $output .= '</div>'; |
1064 | 1064 | } else { |
1065 | 1065 | |
@@ -1074,7 +1074,7 @@ discard block |
||
1074 | 1074 | |
1075 | 1075 | } |
1076 | 1076 | |
1077 | - if( $echo ) { |
|
1077 | + if ( $echo ) { |
|
1078 | 1078 | echo $output; |
1079 | 1079 | } |
1080 | 1080 | |
@@ -1094,26 +1094,26 @@ discard block |
||
1094 | 1094 | $is_widgets_page = ( $pagenow === 'widgets.php' ); |
1095 | 1095 | |
1096 | 1096 | // Add the GV font (with the Astronaut) |
1097 | - wp_enqueue_style( 'gravityview_global', plugins_url('assets/css/admin-global.css', GRAVITYVIEW_FILE), array(), GravityView_Plugin::version ); |
|
1097 | + wp_enqueue_style( 'gravityview_global', plugins_url( 'assets/css/admin-global.css', GRAVITYVIEW_FILE ), array(), GravityView_Plugin::version ); |
|
1098 | 1098 | |
1099 | - wp_register_script( 'gravityview-jquery-cookie', plugins_url('assets/lib/jquery.cookie/jquery.cookie.min.js', GRAVITYVIEW_FILE), array( 'jquery' ), GravityView_Plugin::version, true ); |
|
1099 | + wp_register_script( 'gravityview-jquery-cookie', plugins_url( 'assets/lib/jquery.cookie/jquery.cookie.min.js', GRAVITYVIEW_FILE ), array( 'jquery' ), GravityView_Plugin::version, true ); |
|
1100 | 1100 | |
1101 | 1101 | // Don't process any scripts below here if it's not a GravityView page. |
1102 | - if( ! gravityview()->request->is_admin( $hook, 'single' ) && ! $is_widgets_page ) { |
|
1102 | + if ( ! gravityview()->request->is_admin( $hook, 'single' ) && ! $is_widgets_page ) { |
|
1103 | 1103 | return; |
1104 | 1104 | } |
1105 | 1105 | |
1106 | 1106 | wp_enqueue_script( 'jquery-ui-datepicker' ); |
1107 | - wp_enqueue_style( 'gravityview_views_datepicker', plugins_url('assets/css/admin-datepicker.css', GRAVITYVIEW_FILE), GravityView_Plugin::version ); |
|
1107 | + wp_enqueue_style( 'gravityview_views_datepicker', plugins_url( 'assets/css/admin-datepicker.css', GRAVITYVIEW_FILE ), GravityView_Plugin::version ); |
|
1108 | 1108 | |
1109 | - $script_debug = (defined('SCRIPT_DEBUG') && SCRIPT_DEBUG) ? '' : '.min'; |
|
1109 | + $script_debug = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min'; |
|
1110 | 1110 | |
1111 | 1111 | //enqueue scripts |
1112 | 1112 | wp_enqueue_script( 'gravityview_views_scripts', plugins_url( 'assets/js/admin-views' . $script_debug . '.js', GRAVITYVIEW_FILE ), array( 'jquery-ui-tabs', 'jquery-ui-draggable', 'jquery-ui-droppable', 'jquery-ui-sortable', 'jquery-ui-tooltip', 'jquery-ui-dialog', 'gravityview-jquery-cookie', 'jquery-ui-datepicker', 'underscore' ), GravityView_Plugin::version ); |
1113 | 1113 | |
1114 | - wp_localize_script('gravityview_views_scripts', 'gvGlobals', array( |
|
1114 | + wp_localize_script( 'gravityview_views_scripts', 'gvGlobals', array( |
|
1115 | 1115 | 'cookiepath' => COOKIEPATH, |
1116 | - 'passed_form_id' => (bool) \GV\Utils::_GET( 'form_id' ), |
|
1116 | + 'passed_form_id' => (bool)\GV\Utils::_GET( 'form_id' ), |
|
1117 | 1117 | 'nonce' => wp_create_nonce( 'gravityview_ajaxviews' ), |
1118 | 1118 | 'label_viewname' => __( 'Enter View name here', 'gravityview' ), |
1119 | 1119 | 'label_close' => __( 'Close', 'gravityview' ), |
@@ -1125,9 +1125,9 @@ discard block |
||
1125 | 1125 | 'loading_error' => esc_html__( 'There was an error loading dynamic content.', 'gravityview' ), |
1126 | 1126 | 'field_loaderror' => __( 'Error while adding the field. Please try again or contact GravityView support.', 'gravityview' ), |
1127 | 1127 | 'remove_all_fields' => __( 'Would you like to remove all fields in this zone? (You are seeing this message because you were holding down the ALT key)', 'gravityview' ), |
1128 | - )); |
|
1128 | + ) ); |
|
1129 | 1129 | |
1130 | - wp_enqueue_style( 'gravityview_views_styles', plugins_url( 'assets/css/admin-views.css', GRAVITYVIEW_FILE ), array('dashicons', 'wp-jquery-ui-dialog' ), GravityView_Plugin::version ); |
|
1130 | + wp_enqueue_style( 'gravityview_views_styles', plugins_url( 'assets/css/admin-views.css', GRAVITYVIEW_FILE ), array( 'dashicons', 'wp-jquery-ui-dialog' ), GravityView_Plugin::version ); |
|
1131 | 1131 | |
1132 | 1132 | // Enqueue scripts needed for merge tags |
1133 | 1133 | self::enqueue_gravity_forms_scripts(); |
@@ -1152,7 +1152,7 @@ discard block |
||
1152 | 1152 | ); |
1153 | 1153 | |
1154 | 1154 | if ( wp_is_mobile() ) { |
1155 | - $scripts[] = 'jquery-touch-punch'; |
|
1155 | + $scripts[ ] = 'jquery-touch-punch'; |
|
1156 | 1156 | } |
1157 | 1157 | |
1158 | 1158 | wp_enqueue_script( $scripts ); |
@@ -78,7 +78,7 @@ |
||
78 | 78 | $gv_page = gravityview()->request->is_admin( '', 'single' ); |
79 | 79 | |
80 | 80 | // New View or Edit View page |
81 | - if( $gv_page && $pagenow === 'post-new.php' ) { |
|
81 | + if ( $gv_page && $pagenow === 'post-new.php' ) { |
|
82 | 82 | remove_meta_box( 'woothemes-settings', 'gravityview', 'normal' ); |
83 | 83 | } |
84 | 84 | } |
@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | |
68 | 68 | parent::add_hooks(); |
69 | 69 | |
70 | - if( gravityview()->request->is_admin( '', null ) ) { |
|
70 | + if ( gravityview()->request->is_admin( '', null ) ) { |
|
71 | 71 | |
72 | 72 | // Make Yoast metabox go down to the bottom please. |
73 | 73 | add_filter( 'wpseo_metabox_prio', array( $this, 'return_low' ) ); |
@@ -92,8 +92,8 @@ discard block |
||
92 | 92 | */ |
93 | 93 | public function disable_content_analysis( $options ) { |
94 | 94 | |
95 | - $options['keyword_analysis_active'] = false; |
|
96 | - $options['content_analysis_active'] = false; |
|
95 | + $options[ 'keyword_analysis_active' ] = false; |
|
96 | + $options[ 'content_analysis_active' ] = false; |
|
97 | 97 | |
98 | 98 | return $options; |
99 | 99 | } |
@@ -112,8 +112,8 @@ discard block |
||
112 | 112 | global $pagenow; |
113 | 113 | |
114 | 114 | // New View page |
115 | - if( $pagenow === 'post-new.php' ) { |
|
116 | - $options['hideeditbox-gravityview'] = true; |
|
115 | + if ( $pagenow === 'post-new.php' ) { |
|
116 | + $options[ 'hideeditbox-gravityview' ] = true; |
|
117 | 117 | } |
118 | 118 | |
119 | 119 | return $options; |