@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | |
31 | 31 | $form = $gravityview_view->getForm(); |
32 | 32 | |
33 | - if ( defined( 'DOING_GRAVITYVIEW_TESTS' ) && ! empty( $GLOBALS['GravityView_API_field_label_override'] ) ) { |
|
33 | + if ( defined( 'DOING_GRAVITYVIEW_TESTS' ) && ! empty( $GLOBALS[ 'GravityView_API_field_label_override' ] ) ) { |
|
34 | 34 | /** Allow to fall through for back compatibility testing purposes. */ |
35 | 35 | } else { |
36 | 36 | return \GV\Mocks\GravityView_API_field_label( $form, $field, $entry, $force_show_label ); |
@@ -38,29 +38,29 @@ discard block |
||
38 | 38 | |
39 | 39 | $label = ''; |
40 | 40 | |
41 | - if( !empty( $field['show_label'] ) || $force_show_label ) { |
|
41 | + if ( ! empty( $field[ 'show_label' ] ) || $force_show_label ) { |
|
42 | 42 | |
43 | - $label = $field['label']; |
|
43 | + $label = $field[ 'label' ]; |
|
44 | 44 | |
45 | 45 | // Support Gravity Forms 1.9+ |
46 | - if( class_exists( 'GF_Field' ) ) { |
|
46 | + if ( class_exists( 'GF_Field' ) ) { |
|
47 | 47 | |
48 | - $field_object = RGFormsModel::get_field( $form, $field['id'] ); |
|
48 | + $field_object = RGFormsModel::get_field( $form, $field[ 'id' ] ); |
|
49 | 49 | |
50 | - if( $field_object ) { |
|
50 | + if ( $field_object ) { |
|
51 | 51 | |
52 | - $input = GFFormsModel::get_input( $field_object, $field['id'] ); |
|
52 | + $input = GFFormsModel::get_input( $field_object, $field[ 'id' ] ); |
|
53 | 53 | |
54 | 54 | // This is a complex field, with labels on a per-input basis |
55 | - if( $input ) { |
|
55 | + if ( $input ) { |
|
56 | 56 | |
57 | 57 | // Does the input have a custom label on a per-input basis? Otherwise, default label. |
58 | - $label = ! empty( $input['customLabel'] ) ? $input['customLabel'] : $input['label']; |
|
58 | + $label = ! empty( $input[ 'customLabel' ] ) ? $input[ 'customLabel' ] : $input[ 'label' ]; |
|
59 | 59 | |
60 | 60 | } else { |
61 | 61 | |
62 | 62 | // This is a field with one label |
63 | - $label = $field_object->get_field_label( true, $field['label'] ); |
|
63 | + $label = $field_object->get_field_label( true, $field[ 'label' ] ); |
|
64 | 64 | |
65 | 65 | } |
66 | 66 | |
@@ -69,9 +69,9 @@ discard block |
||
69 | 69 | } |
70 | 70 | |
71 | 71 | // Use Gravity Forms label by default, but if a custom label is defined in GV, use it. |
72 | - if ( !empty( $field['custom_label'] ) ) { |
|
72 | + if ( ! empty( $field[ 'custom_label' ] ) ) { |
|
73 | 73 | |
74 | - $label = self::replace_variables( $field['custom_label'], $form, $entry ); |
|
74 | + $label = self::replace_variables( $field[ 'custom_label' ], $form, $entry ); |
|
75 | 75 | |
76 | 76 | } |
77 | 77 | |
@@ -133,11 +133,11 @@ discard block |
||
133 | 133 | |
134 | 134 | $width = NULL; |
135 | 135 | |
136 | - if( !empty( $field['width'] ) ) { |
|
137 | - $width = absint( $field['width'] ); |
|
136 | + if ( ! empty( $field[ 'width' ] ) ) { |
|
137 | + $width = absint( $field[ 'width' ] ); |
|
138 | 138 | |
139 | 139 | // If using percentages, limit to 100% |
140 | - if( '%d%%' === $format && $width > 100 ) { |
|
140 | + if ( '%d%%' === $format && $width > 100 ) { |
|
141 | 141 | $width = 100; |
142 | 142 | } |
143 | 143 | |
@@ -157,42 +157,42 @@ discard block |
||
157 | 157 | public static function field_class( $field, $form = NULL, $entry = NULL ) { |
158 | 158 | $classes = array(); |
159 | 159 | |
160 | - if( !empty( $field['custom_class'] ) ) { |
|
160 | + if ( ! empty( $field[ 'custom_class' ] ) ) { |
|
161 | 161 | |
162 | - $custom_class = $field['custom_class']; |
|
162 | + $custom_class = $field[ 'custom_class' ]; |
|
163 | 163 | |
164 | - if( !empty( $entry ) ) { |
|
164 | + if ( ! empty( $entry ) ) { |
|
165 | 165 | |
166 | 166 | // We want the merge tag to be formatted as a class. The merge tag may be |
167 | 167 | // replaced by a multiple-word value that should be output as a single class. |
168 | 168 | // "Office Manager" will be formatted as `.OfficeManager`, not `.Office` and `.Manager` |
169 | - add_filter('gform_merge_tag_filter', 'sanitize_html_class'); |
|
169 | + add_filter( 'gform_merge_tag_filter', 'sanitize_html_class' ); |
|
170 | 170 | |
171 | - $custom_class = self::replace_variables( $custom_class, $form, $entry); |
|
171 | + $custom_class = self::replace_variables( $custom_class, $form, $entry ); |
|
172 | 172 | |
173 | 173 | // And then we want life to return to normal |
174 | - remove_filter('gform_merge_tag_filter', 'sanitize_html_class'); |
|
174 | + remove_filter( 'gform_merge_tag_filter', 'sanitize_html_class' ); |
|
175 | 175 | } |
176 | 176 | |
177 | 177 | // And now we want the spaces to be handled nicely. |
178 | - $classes[] = gravityview_sanitize_html_class( $custom_class ); |
|
178 | + $classes[ ] = gravityview_sanitize_html_class( $custom_class ); |
|
179 | 179 | |
180 | 180 | } |
181 | 181 | |
182 | - if(!empty($field['id'])) { |
|
183 | - if( !empty( $form ) && !empty( $form['id'] ) ) { |
|
184 | - $form_id = '-'.$form['id']; |
|
182 | + if ( ! empty( $field[ 'id' ] ) ) { |
|
183 | + if ( ! empty( $form ) && ! empty( $form[ 'id' ] ) ) { |
|
184 | + $form_id = '-' . $form[ 'id' ]; |
|
185 | 185 | } else { |
186 | 186 | // @deprecated path. Form should always be given. |
187 | 187 | gravityview()->log->warning( 'GravityView_View::getInstance() legacy API called' ); |
188 | 188 | $gravityview_view = GravityView_View::getInstance(); |
189 | - $form_id = $gravityview_view->getFormId() ? '-'. $gravityview_view->getFormId() : ''; |
|
189 | + $form_id = $gravityview_view->getFormId() ? '-' . $gravityview_view->getFormId() : ''; |
|
190 | 190 | } |
191 | 191 | |
192 | - $classes[] = 'gv-field'.$form_id.'-'.$field['id']; |
|
192 | + $classes[ ] = 'gv-field' . $form_id . '-' . $field[ 'id' ]; |
|
193 | 193 | } |
194 | 194 | |
195 | - return esc_attr(implode(' ', $classes)); |
|
195 | + return esc_attr( implode( ' ', $classes ) ); |
|
196 | 196 | } |
197 | 197 | |
198 | 198 | /** |
@@ -207,11 +207,11 @@ discard block |
||
207 | 207 | * @return string Sanitized unique HTML `id` attribute for the field |
208 | 208 | */ |
209 | 209 | public static function field_html_attr_id( $field, $form = array(), $entry = array() ) { |
210 | - $id = $field['id']; |
|
210 | + $id = $field[ 'id' ]; |
|
211 | 211 | |
212 | 212 | if ( ! empty( $id ) ) { |
213 | - if ( ! empty( $form ) && ! empty( $form['id'] ) ) { |
|
214 | - $form_id = '-' . $form['id']; |
|
213 | + if ( ! empty( $form ) && ! empty( $form[ 'id' ] ) ) { |
|
214 | + $form_id = '-' . $form[ 'id' ]; |
|
215 | 215 | } else { |
216 | 216 | // @deprecated path. Form should always be given. |
217 | 217 | gravityview()->log->warning( 'GravityView_View::getInstance() legacy API called' ); |
@@ -219,7 +219,7 @@ discard block |
||
219 | 219 | $form_id = $gravityview_view->getFormId() ? '-' . $gravityview_view->getFormId() : ''; |
220 | 220 | } |
221 | 221 | |
222 | - $id = 'gv-field' . $form_id . '-' . $field['id']; |
|
222 | + $id = 'gv-field' . $form_id . '-' . $field[ 'id' ]; |
|
223 | 223 | } |
224 | 224 | |
225 | 225 | return esc_attr( $id ); |
@@ -258,14 +258,14 @@ discard block |
||
258 | 258 | */ |
259 | 259 | public static function entry_link_html( $entry = array(), $anchor_text = '', $passed_tag_atts = array(), $field_settings = array(), $base_id = null ) { |
260 | 260 | |
261 | - if ( empty( $entry ) || ! is_array( $entry ) || ! isset( $entry['id'] ) ) { |
|
261 | + if ( empty( $entry ) || ! is_array( $entry ) || ! isset( $entry[ 'id' ] ) ) { |
|
262 | 262 | gravityview()->log->debug( 'Entry not defined; returning null', array( 'data' => $entry ) ); |
263 | 263 | return NULL; |
264 | 264 | } |
265 | 265 | |
266 | 266 | $href = self::entry_link( $entry, $base_id ); |
267 | 267 | |
268 | - if( '' === $href ) { |
|
268 | + if ( '' === $href ) { |
|
269 | 269 | return NULL; |
270 | 270 | } |
271 | 271 | |
@@ -302,7 +302,7 @@ discard block |
||
302 | 302 | } else { |
303 | 303 | $gravityview_view = GravityView_View::getInstance(); |
304 | 304 | |
305 | - if( $gravityview_view && ( $gravityview_view->curr_start || $gravityview_view->curr_end || $gravityview_view->curr_search ) ) { |
|
305 | + if ( $gravityview_view && ( $gravityview_view->curr_start || $gravityview_view->curr_end || $gravityview_view->curr_search ) ) { |
|
306 | 306 | $is_search = true; |
307 | 307 | } |
308 | 308 | } |
@@ -313,7 +313,7 @@ discard block |
||
313 | 313 | |
314 | 314 | $output = esc_html__( 'This search returned no results.', 'gravityview' ); |
315 | 315 | |
316 | - if( $context ) { |
|
316 | + if ( $context ) { |
|
317 | 317 | $setting = $context->view->settings->get( 'no_search_results_text', $output ); |
318 | 318 | } |
319 | 319 | |
@@ -321,7 +321,7 @@ discard block |
||
321 | 321 | |
322 | 322 | $output = esc_html__( 'No entries match your request.', 'gravityview' ); |
323 | 323 | |
324 | - if( $context ) { |
|
324 | + if ( $context ) { |
|
325 | 325 | $setting = $context->view->settings->get( 'no_results_text', $output ); |
326 | 326 | } |
327 | 327 | } |
@@ -439,9 +439,9 @@ discard block |
||
439 | 439 | |
440 | 440 | // If we've saved the permalink in memory, use it |
441 | 441 | // @since 1.3 |
442 | - $link = wp_cache_get( 'gv_directory_link_'.$post_id ); |
|
442 | + $link = wp_cache_get( 'gv_directory_link_' . $post_id ); |
|
443 | 443 | |
444 | - if ( (int) $post_id === (int) get_option( 'page_on_front' ) ) { |
|
444 | + if ( (int)$post_id === (int)get_option( 'page_on_front' ) ) { |
|
445 | 445 | $link = home_url(); |
446 | 446 | } |
447 | 447 | |
@@ -450,7 +450,7 @@ discard block |
||
450 | 450 | |
451 | 451 | // If not yet saved, cache the permalink. |
452 | 452 | // @since 1.3 |
453 | - wp_cache_set( 'gv_directory_link_'.$post_id, $link ); |
|
453 | + wp_cache_set( 'gv_directory_link_' . $post_id, $link ); |
|
454 | 454 | } |
455 | 455 | |
456 | 456 | // Deal with returning to proper pagination for embedded views |
@@ -458,13 +458,13 @@ discard block |
||
458 | 458 | |
459 | 459 | $args = array(); |
460 | 460 | |
461 | - if( $pagenum = \GV\Utils::_GET( 'pagenum' ) ) { |
|
462 | - $args['pagenum'] = intval( $pagenum ); |
|
461 | + if ( $pagenum = \GV\Utils::_GET( 'pagenum' ) ) { |
|
462 | + $args[ 'pagenum' ] = intval( $pagenum ); |
|
463 | 463 | } |
464 | 464 | |
465 | - if( $sort = \GV\Utils::_GET( 'sort' ) ) { |
|
466 | - $args['sort'] = $sort; |
|
467 | - $args['dir'] = \GV\Utils::_GET( 'dir' ); |
|
465 | + if ( $sort = \GV\Utils::_GET( 'sort' ) ) { |
|
466 | + $args[ 'sort' ] = $sort; |
|
467 | + $args[ 'dir' ] = \GV\Utils::_GET( 'dir' ); |
|
468 | 468 | } |
469 | 469 | |
470 | 470 | $link = add_query_arg( $args, $link ); |
@@ -501,7 +501,7 @@ discard block |
||
501 | 501 | private static function get_custom_entry_slug( $id, $entry = array() ) { |
502 | 502 | |
503 | 503 | // Generate an unique hash to use as the default value |
504 | - $slug = substr( wp_hash( $id, 'gravityview'.$id ), 0, 8 ); |
|
504 | + $slug = substr( wp_hash( $id, 'gravityview' . $id ), 0, 8 ); |
|
505 | 505 | |
506 | 506 | /** |
507 | 507 | * @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}` |
@@ -512,7 +512,7 @@ discard block |
||
512 | 512 | $slug = apply_filters( 'gravityview_entry_slug', $slug, $id, $entry ); |
513 | 513 | |
514 | 514 | // Make sure we have something - use the original ID as backup. |
515 | - if( empty( $slug ) ) { |
|
515 | + if ( empty( $slug ) ) { |
|
516 | 516 | $slug = $id; |
517 | 517 | } |
518 | 518 | |
@@ -606,15 +606,15 @@ discard block |
||
606 | 606 | * @param boolean $custom Should we process the custom entry slug? |
607 | 607 | */ |
608 | 608 | $custom = apply_filters( 'gravityview_custom_entry_slug', false ); |
609 | - if( $custom ) { |
|
609 | + if ( $custom ) { |
|
610 | 610 | // create the gravityview_unique_id and save it |
611 | 611 | |
612 | 612 | // Get the entry hash |
613 | - $hash = self::get_custom_entry_slug( $entry['id'], $entry ); |
|
613 | + $hash = self::get_custom_entry_slug( $entry[ 'id' ], $entry ); |
|
614 | 614 | |
615 | - gravityview()->log->debug( 'Setting hash for entry {entry_id}: {hash}', array( 'entry_id' => $entry['id'], 'hash' => $hash ) ); |
|
615 | + gravityview()->log->debug( 'Setting hash for entry {entry_id}: {hash}', array( 'entry_id' => $entry[ 'id' ], 'hash' => $hash ) ); |
|
616 | 616 | |
617 | - gform_update_meta( $entry['id'], 'gravityview_unique_id', $hash, \GV\Utils::get( $entry, 'form_id' ) ); |
|
617 | + gform_update_meta( $entry[ 'id' ], 'gravityview_unique_id', $hash, \GV\Utils::get( $entry, 'form_id' ) ); |
|
618 | 618 | |
619 | 619 | } |
620 | 620 | } |
@@ -640,7 +640,7 @@ discard block |
||
640 | 640 | |
641 | 641 | if ( ! empty( $entry ) && ! is_array( $entry ) ) { |
642 | 642 | $entry = GVCommon::get_entry( $entry ); |
643 | - } else if( empty( $entry ) ) { |
|
643 | + } else if ( empty( $entry ) ) { |
|
644 | 644 | // @deprecated path |
645 | 645 | $entry = GravityView_frontend::getInstance()->getEntry(); |
646 | 646 | } |
@@ -660,32 +660,32 @@ discard block |
||
660 | 660 | |
661 | 661 | $query_arg_name = \GV\Entry::get_endpoint_name(); |
662 | 662 | |
663 | - if ( ! empty( $entry['_multi'] ) ) { |
|
663 | + if ( ! empty( $entry[ '_multi' ] ) ) { |
|
664 | 664 | $entry_slugs = array(); |
665 | 665 | |
666 | - foreach ( $entry['_multi'] as $_multi ) { |
|
666 | + foreach ( $entry[ '_multi' ] as $_multi ) { |
|
667 | 667 | |
668 | - if( $gv_multi = \GV\GF_Entry::from_entry( $_multi ) ) { |
|
669 | - $entry_slugs[] = $gv_multi->get_slug(); |
|
668 | + if ( $gv_multi = \GV\GF_Entry::from_entry( $_multi ) ) { |
|
669 | + $entry_slugs[ ] = $gv_multi->get_slug(); |
|
670 | 670 | } else { |
671 | 671 | // TODO: This path isn't covered by unit tests |
672 | - $entry_slugs[] = \GravityView_API::get_entry_slug( $_multi['id'], $_multi ); |
|
672 | + $entry_slugs[ ] = \GravityView_API::get_entry_slug( $_multi[ 'id' ], $_multi ); |
|
673 | 673 | } |
674 | 674 | |
675 | 675 | unset( $gv_multi ); |
676 | 676 | |
677 | - $forms[] = $_multi['form_id']; |
|
677 | + $forms[ ] = $_multi[ 'form_id' ]; |
|
678 | 678 | } |
679 | 679 | |
680 | 680 | $entry_slug = implode( ',', $entry_slugs ); |
681 | 681 | } else { |
682 | 682 | |
683 | 683 | // Fallback when |
684 | - if( $gv_entry = \GV\GF_Entry::from_entry( $entry ) ) { |
|
684 | + if ( $gv_entry = \GV\GF_Entry::from_entry( $entry ) ) { |
|
685 | 685 | $entry_slug = $gv_entry->get_slug(); |
686 | 686 | } else { |
687 | 687 | // TODO: This path isn't covered by unit tests |
688 | - $entry_slug = \GravityView_API::get_entry_slug( $entry['id'], $entry ); |
|
688 | + $entry_slug = \GravityView_API::get_entry_slug( $entry[ 'id' ], $entry ); |
|
689 | 689 | } |
690 | 690 | |
691 | 691 | unset( $gv_entry ); |
@@ -704,7 +704,7 @@ discard block |
||
704 | 704 | $args = gv_get_query_args(); |
705 | 705 | } |
706 | 706 | |
707 | - if ( get_option('permalink_structure') && ! is_preview() ) { |
|
707 | + if ( get_option( 'permalink_structure' ) && ! is_preview() ) { |
|
708 | 708 | |
709 | 709 | /** |
710 | 710 | * Make sure the $directory_link doesn't contain any query otherwise it will break when adding the entry slug. |
@@ -712,13 +712,13 @@ discard block |
||
712 | 712 | */ |
713 | 713 | $link_parts = explode( '?', $directory_link ); |
714 | 714 | |
715 | - $query = !empty( $link_parts[1] ) ? '?'.$link_parts[1] : ''; |
|
715 | + $query = ! empty( $link_parts[ 1 ] ) ? '?' . $link_parts[ 1 ] : ''; |
|
716 | 716 | |
717 | - $directory_link = trailingslashit( $link_parts[0] ) . $query_arg_name . '/'. $entry_slug .'/' . $query; |
|
717 | + $directory_link = trailingslashit( $link_parts[ 0 ] ) . $query_arg_name . '/' . $entry_slug . '/' . $query; |
|
718 | 718 | |
719 | 719 | } else { |
720 | 720 | |
721 | - $args[] = array( $query_arg_name => $entry_slug ); |
|
721 | + $args[ ] = array( $query_arg_name => $entry_slug ); |
|
722 | 722 | } |
723 | 723 | |
724 | 724 | /** |
@@ -726,21 +726,21 @@ discard block |
||
726 | 726 | */ |
727 | 727 | if ( $add_directory_args ) { |
728 | 728 | |
729 | - if ( ! empty( $_GET['pagenum'] ) ) { |
|
730 | - $args['pagenum'] = intval( $_GET['pagenum'] ); |
|
729 | + if ( ! empty( $_GET[ 'pagenum' ] ) ) { |
|
730 | + $args[ 'pagenum' ] = intval( $_GET[ 'pagenum' ] ); |
|
731 | 731 | } |
732 | 732 | |
733 | 733 | /** |
734 | 734 | * @since 1.7 |
735 | 735 | */ |
736 | 736 | if ( $sort = \GV\Utils::_GET( 'sort' ) ) { |
737 | - $args['sort'] = $sort; |
|
738 | - $args['dir'] = \GV\Utils::_GET( 'dir' ); |
|
737 | + $args[ 'sort' ] = $sort; |
|
738 | + $args[ 'dir' ] = \GV\Utils::_GET( 'dir' ); |
|
739 | 739 | } |
740 | 740 | |
741 | 741 | } |
742 | 742 | |
743 | - if( $post_id ) { |
|
743 | + if ( $post_id ) { |
|
744 | 744 | $passed_post = get_post( $post_id ); |
745 | 745 | $views = \GV\View_Collection::from_post( $passed_post ); |
746 | 746 | $has_multiple_views = $views->count() > 1; |
@@ -749,7 +749,7 @@ discard block |
||
749 | 749 | } |
750 | 750 | |
751 | 751 | if ( $has_multiple_views ) { |
752 | - $args['gvid'] = $view_id ? $view_id : gravityview_get_view_id(); |
|
752 | + $args[ 'gvid' ] = $view_id ? $view_id : gravityview_get_view_id(); |
|
753 | 753 | } |
754 | 754 | |
755 | 755 | return add_query_arg( $args, $directory_link ); |
@@ -819,7 +819,7 @@ discard block |
||
819 | 819 | } |
820 | 820 | |
821 | 821 | function gv_class( $field, $form = NULL, $entry = array() ) { |
822 | - return GravityView_API::field_class( $field, $form, $entry ); |
|
822 | + return GravityView_API::field_class( $field, $form, $entry ); |
|
823 | 823 | } |
824 | 824 | |
825 | 825 | /** |
@@ -842,7 +842,7 @@ discard block |
||
842 | 842 | $view_id = 0; |
843 | 843 | if ( $context->view ) { |
844 | 844 | $view_id = $context->view->ID; |
845 | - if( $context->view->settings->get( 'hide_until_searched' ) ) { |
|
845 | + if ( $context->view->settings->get( 'hide_until_searched' ) ) { |
|
846 | 846 | $hide_until_searched = ( empty( $context->entry ) && ! $context->request->is_search() ); |
847 | 847 | } |
848 | 848 | } |
@@ -874,7 +874,7 @@ discard block |
||
874 | 874 | $default_css_class .= ' ' . $context->view->settings->get( 'class', '' ); |
875 | 875 | } |
876 | 876 | |
877 | - $css_class = trim( $passed_css_class . ' '. $default_css_class ); |
|
877 | + $css_class = trim( $passed_css_class . ' ' . $default_css_class ); |
|
878 | 878 | |
879 | 879 | /** |
880 | 880 | * @filter `gravityview/render/container/class` Modify the CSS class to be added to the wrapper <div> of a View |
@@ -901,7 +901,7 @@ discard block |
||
901 | 901 | |
902 | 902 | $value = GravityView_API::field_value( $entry, $field ); |
903 | 903 | |
904 | - if( $value === '' ) { |
|
904 | + if ( $value === '' ) { |
|
905 | 905 | /** |
906 | 906 | * @filter `gravityview_empty_value` What to display when a field is empty |
907 | 907 | * @param string $value (empty string) |
@@ -1014,7 +1014,7 @@ discard block |
||
1014 | 1014 | */ |
1015 | 1015 | function gravityview_get_field_value( $entry, $field_id, $display_value ) { |
1016 | 1016 | |
1017 | - if( floatval( $field_id ) === floor( floatval( $field_id ) ) ) { |
|
1017 | + if ( floatval( $field_id ) === floor( floatval( $field_id ) ) ) { |
|
1018 | 1018 | |
1019 | 1019 | // For the complete field value as generated by Gravity Forms |
1020 | 1020 | return $display_value; |
@@ -1048,16 +1048,16 @@ discard block |
||
1048 | 1048 | $terms = explode( ', ', $value ); |
1049 | 1049 | } |
1050 | 1050 | |
1051 | - foreach ($terms as $term_name ) { |
|
1051 | + foreach ( $terms as $term_name ) { |
|
1052 | 1052 | |
1053 | 1053 | // If we're processing a category, |
1054 | - if( $taxonomy === 'category' ) { |
|
1054 | + if ( $taxonomy === 'category' ) { |
|
1055 | 1055 | |
1056 | 1056 | // Use rgexplode to prevent errors if : doesn't exist |
1057 | 1057 | list( $term_name, $term_id ) = rgexplode( ':', $term_name, 2 ); |
1058 | 1058 | |
1059 | 1059 | // The explode was succesful; we have the category ID |
1060 | - if( !empty( $term_id )) { |
|
1060 | + if ( ! empty( $term_id ) ) { |
|
1061 | 1061 | $term = get_term_by( 'id', $term_id, $taxonomy ); |
1062 | 1062 | } else { |
1063 | 1063 | // We have to fall back to the name |
@@ -1070,7 +1070,7 @@ discard block |
||
1070 | 1070 | } |
1071 | 1071 | |
1072 | 1072 | // There's still a tag/category here. |
1073 | - if( $term ) { |
|
1073 | + if ( $term ) { |
|
1074 | 1074 | |
1075 | 1075 | $term_link = get_term_link( $term, $taxonomy ); |
1076 | 1076 | |
@@ -1079,11 +1079,11 @@ discard block |
||
1079 | 1079 | continue; |
1080 | 1080 | } |
1081 | 1081 | |
1082 | - $output[] = gravityview_get_link( $term_link, esc_html( $term->name ) ); |
|
1082 | + $output[ ] = gravityview_get_link( $term_link, esc_html( $term->name ) ); |
|
1083 | 1083 | } |
1084 | 1084 | } |
1085 | 1085 | |
1086 | - return implode(', ', $output ); |
|
1086 | + return implode( ', ', $output ); |
|
1087 | 1087 | } |
1088 | 1088 | |
1089 | 1089 | /** |
@@ -1097,8 +1097,8 @@ discard block |
||
1097 | 1097 | |
1098 | 1098 | $output = get_the_term_list( $post_id, $taxonomy, NULL, ', ' ); |
1099 | 1099 | |
1100 | - if( empty( $link ) ) { |
|
1101 | - return strip_tags( $output); |
|
1100 | + if ( empty( $link ) ) { |
|
1101 | + return strip_tags( $output ); |
|
1102 | 1102 | } |
1103 | 1103 | |
1104 | 1104 | return $output; |
@@ -1117,7 +1117,7 @@ discard block |
||
1117 | 1117 | $fe = GravityView_frontend::getInstance(); |
1118 | 1118 | |
1119 | 1119 | // Solve problem when loading content via admin-ajax.php |
1120 | - if( ! $fe->getGvOutputData() ) { |
|
1120 | + if ( ! $fe->getGvOutputData() ) { |
|
1121 | 1121 | |
1122 | 1122 | gravityview()->log->debug( 'gv_output_data not defined; parsing content.' ); |
1123 | 1123 | |
@@ -1125,7 +1125,7 @@ discard block |
||
1125 | 1125 | } |
1126 | 1126 | |
1127 | 1127 | // Make 100% sure that we're dealing with a properly called situation |
1128 | - if( !is_a( $fe->getGvOutputData(), 'GravityView_View_Data' ) ) { |
|
1128 | + if ( ! is_a( $fe->getGvOutputData(), 'GravityView_View_Data' ) ) { |
|
1129 | 1129 | |
1130 | 1130 | gravityview()->log->debug( 'gv_output_data not an object or get_view not callable.', array( 'data' => $fe->getGvOutputData() ) ); |
1131 | 1131 | |
@@ -1356,12 +1356,12 @@ discard block |
||
1356 | 1356 | function gravityview_get_files_array( $value, $gv_class = '', $context = null ) { |
1357 | 1357 | /** @define "GRAVITYVIEW_DIR" "../" */ |
1358 | 1358 | |
1359 | - if( !class_exists( 'GravityView_Field' ) ) { |
|
1360 | - include_once( GRAVITYVIEW_DIR .'includes/fields/class-gravityview-field.php' ); |
|
1359 | + if ( ! class_exists( 'GravityView_Field' ) ) { |
|
1360 | + include_once( GRAVITYVIEW_DIR . 'includes/fields/class-gravityview-field.php' ); |
|
1361 | 1361 | } |
1362 | 1362 | |
1363 | - if( !class_exists( 'GravityView_Field_FileUpload' ) ) { |
|
1364 | - include_once( GRAVITYVIEW_DIR .'includes/fields/class-gravityview-field-fileupload.php' ); |
|
1363 | + if ( ! class_exists( 'GravityView_Field_FileUpload' ) ) { |
|
1364 | + include_once( GRAVITYVIEW_DIR . 'includes/fields/class-gravityview-field-fileupload.php' ); |
|
1365 | 1365 | } |
1366 | 1366 | |
1367 | 1367 | if ( is_null( $context ) ) { |
@@ -1464,21 +1464,21 @@ discard block |
||
1464 | 1464 | } else { |
1465 | 1465 | // @deprecated path |
1466 | 1466 | // Required fields. |
1467 | - if ( empty( $args['field'] ) || empty( $args['form'] ) ) { |
|
1467 | + if ( empty( $args[ 'field' ] ) || empty( $args[ 'form' ] ) ) { |
|
1468 | 1468 | gravityview()->log->error( 'Field or form are empty.', array( 'data' => $args ) ); |
1469 | 1469 | return ''; |
1470 | 1470 | } |
1471 | 1471 | } |
1472 | 1472 | |
1473 | 1473 | if ( $context instanceof \GV\Template_Context ) { |
1474 | - $entry = $args['entry'] ? : ( $context->entry ? $context->entry->as_entry() : array() ); |
|
1475 | - $field = $args['field'] ? : ( $context->field ? $context->field->as_configuration() : array() ); |
|
1476 | - $form = $args['form'] ? : ( $context->view->form ? $context->view->form->form : array() ); |
|
1474 | + $entry = $args[ 'entry' ] ?: ( $context->entry ? $context->entry->as_entry() : array() ); |
|
1475 | + $field = $args[ 'field' ] ?: ( $context->field ? $context->field->as_configuration() : array() ); |
|
1476 | + $form = $args[ 'form' ] ?: ( $context->view->form ? $context->view->form->form : array() ); |
|
1477 | 1477 | } else { |
1478 | 1478 | // @deprecated path |
1479 | - $entry = empty( $args['entry'] ) ? array() : $args['entry']; |
|
1480 | - $field = $args['field']; |
|
1481 | - $form = $args['form']; |
|
1479 | + $entry = empty( $args[ 'entry' ] ) ? array() : $args[ 'entry' ]; |
|
1480 | + $field = $args[ 'field' ]; |
|
1481 | + $form = $args[ 'form' ]; |
|
1482 | 1482 | } |
1483 | 1483 | |
1484 | 1484 | /** |
@@ -1498,43 +1498,43 @@ discard block |
||
1498 | 1498 | ); |
1499 | 1499 | |
1500 | 1500 | if ( $context instanceof \GV\Template_Context ) { |
1501 | - $placeholders['value'] = \GV\Utils::get( $args, 'value', '' ); |
|
1501 | + $placeholders[ 'value' ] = \GV\Utils::get( $args, 'value', '' ); |
|
1502 | 1502 | } else { |
1503 | 1503 | // @deprecated path |
1504 | - $placeholders['value'] = gv_value( $entry, $field ); |
|
1504 | + $placeholders[ 'value' ] = gv_value( $entry, $field ); |
|
1505 | 1505 | } |
1506 | 1506 | |
1507 | 1507 | // If the value is empty and we're hiding empty, return empty. |
1508 | - if ( $placeholders['value'] === '' && ! empty( $args['hide_empty'] ) ) { |
|
1508 | + if ( $placeholders[ 'value' ] === '' && ! empty( $args[ 'hide_empty' ] ) ) { |
|
1509 | 1509 | return ''; |
1510 | 1510 | } |
1511 | 1511 | |
1512 | - if ( $placeholders['value'] !== '' && ! empty( $args['wpautop'] ) ) { |
|
1513 | - $placeholders['value'] = wpautop( $placeholders['value'] ); |
|
1512 | + if ( $placeholders[ 'value' ] !== '' && ! empty( $args[ 'wpautop' ] ) ) { |
|
1513 | + $placeholders[ 'value' ] = wpautop( $placeholders[ 'value' ] ); |
|
1514 | 1514 | } |
1515 | 1515 | |
1516 | 1516 | // Get width setting, if exists |
1517 | - $placeholders['width'] = GravityView_API::field_width( $field ); |
|
1517 | + $placeholders[ 'width' ] = GravityView_API::field_width( $field ); |
|
1518 | 1518 | |
1519 | 1519 | // If replacing with CSS inline formatting, let's do it. |
1520 | - $placeholders['width:style'] = GravityView_API::field_width( $field, 'width:' . $placeholders['width'] . '%;' ); |
|
1520 | + $placeholders[ 'width:style' ] = GravityView_API::field_width( $field, 'width:' . $placeholders[ 'width' ] . '%;' ); |
|
1521 | 1521 | |
1522 | 1522 | // Grab the Class using `gv_class` |
1523 | - $placeholders['class'] = gv_class( $field, $form, $entry ); |
|
1524 | - $placeholders['field_id'] = GravityView_API::field_html_attr_id( $field, $form, $entry ); |
|
1523 | + $placeholders[ 'class' ] = gv_class( $field, $form, $entry ); |
|
1524 | + $placeholders[ 'field_id' ] = GravityView_API::field_html_attr_id( $field, $form, $entry ); |
|
1525 | 1525 | |
1526 | 1526 | if ( $context instanceof \GV\Template_Context ) { |
1527 | - $placeholders['label_value'] = \GV\Utils::get( $args, 'label' ); |
|
1527 | + $placeholders[ 'label_value' ] = \GV\Utils::get( $args, 'label' ); |
|
1528 | 1528 | } else { |
1529 | 1529 | // Default Label value |
1530 | - $placeholders['label_value'] = gv_label( $field, $entry ); |
|
1530 | + $placeholders[ 'label_value' ] = gv_label( $field, $entry ); |
|
1531 | 1531 | } |
1532 | 1532 | |
1533 | - $placeholders['label_value:data-label'] = trim( esc_attr( strip_tags( str_replace( '> ', '>', $placeholders['label_value'] ) ) ) ); |
|
1534 | - $placeholders['label_value:esc_attr'] = esc_attr( $placeholders['label_value'] ); |
|
1533 | + $placeholders[ 'label_value:data-label' ] = trim( esc_attr( strip_tags( str_replace( '> ', '>', $placeholders[ 'label_value' ] ) ) ) ); |
|
1534 | + $placeholders[ 'label_value:esc_attr' ] = esc_attr( $placeholders[ 'label_value' ] ); |
|
1535 | 1535 | |
1536 | - if ( empty( $placeholders['label'] ) && ! empty( $placeholders['label_value'] ) ){ |
|
1537 | - $placeholders['label'] = '<span class="gv-field-label">{{ label_value }}</span>'; |
|
1536 | + if ( empty( $placeholders[ 'label' ] ) && ! empty( $placeholders[ 'label_value' ] ) ) { |
|
1537 | + $placeholders[ 'label' ] = '<span class="gv-field-label">{{ label_value }}</span>'; |
|
1538 | 1538 | } |
1539 | 1539 | |
1540 | 1540 | /** |
@@ -1545,7 +1545,7 @@ discard block |
||
1545 | 1545 | * @since 2.0 |
1546 | 1546 | * @param \GV\Template_Context $context The context. |
1547 | 1547 | */ |
1548 | - $html = apply_filters( 'gravityview/field_output/pre_html', $args['markup'], $args, $context ); |
|
1548 | + $html = apply_filters( 'gravityview/field_output/pre_html', $args[ 'markup' ], $args, $context ); |
|
1549 | 1549 | |
1550 | 1550 | /** |
1551 | 1551 | * @filter `gravityview/field_output/open_tag` Modify the opening tags for the template content placeholders |
@@ -1572,7 +1572,7 @@ discard block |
||
1572 | 1572 | foreach ( $placeholders as $tag => $value ) { |
1573 | 1573 | |
1574 | 1574 | // If the tag doesn't exist just skip it |
1575 | - if ( false === strpos( $html, $open_tag . $tag . $close_tag ) && false === strpos( $html, $open_tag . ' ' . $tag . ' ' . $close_tag ) ){ |
|
1575 | + if ( false === strpos( $html, $open_tag . $tag . $close_tag ) && false === strpos( $html, $open_tag . ' ' . $tag . ' ' . $close_tag ) ) { |
|
1576 | 1576 | continue; |
1577 | 1577 | } |
1578 | 1578 |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | $this->label = esc_html__( 'Number Sequence', 'gravityview' ); |
42 | 42 | $this->description = esc_html__( 'Display a sequential result number for each entry.', 'gravityview' ); |
43 | 43 | |
44 | - add_filter( 'gravityview/metaboxes/tooltips', array( $this, 'field_tooltips') ); |
|
44 | + add_filter( 'gravityview/metaboxes/tooltips', array( $this, 'field_tooltips' ) ); |
|
45 | 45 | |
46 | 46 | add_filter( 'gravityview_entry_default_fields', array( $this, 'add_default_field' ), 10, 3 ); |
47 | 47 | |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | return $entry_default_fields; |
66 | 66 | } |
67 | 67 | |
68 | - $entry_default_fields['sequence'] = array( |
|
68 | + $entry_default_fields[ 'sequence' ] = array( |
|
69 | 69 | 'label' => __( 'Result Number', 'gravityview' ), |
70 | 70 | 'type' => $this->name, |
71 | 71 | 'desc' => $this->description, |
@@ -84,9 +84,9 @@ discard block |
||
84 | 84 | |
85 | 85 | $return = $tooltips; |
86 | 86 | |
87 | - $return['reverse_sequence'] = array( |
|
88 | - 'title' => __('Reverse the order of the result numbers', 'gravityview'), |
|
89 | - 'value' => __('Output the number sequence in descending order. If enabled, numbers will count down from high to low.', 'gravityview'), |
|
87 | + $return[ 'reverse_sequence' ] = array( |
|
88 | + 'title' => __( 'Reverse the order of the result numbers', 'gravityview' ), |
|
89 | + 'value' => __( 'Output the number sequence in descending order. If enabled, numbers will count down from high to low.', 'gravityview' ), |
|
90 | 90 | ); |
91 | 91 | |
92 | 92 | return $return; |
@@ -94,13 +94,13 @@ discard block |
||
94 | 94 | |
95 | 95 | public function field_options( $field_options, $template_id, $field_id, $context, $input_type, $form_id ) { |
96 | 96 | |
97 | - unset ( $field_options['search_filter'] ); |
|
97 | + unset ( $field_options[ 'search_filter' ] ); |
|
98 | 98 | |
99 | 99 | $new_fields = array( |
100 | 100 | 'start' => array( |
101 | 101 | 'type' => 'number', |
102 | 102 | 'label' => __( 'First Number in the Sequence', 'gravityview' ), |
103 | - 'desc' => __('For each entry, the displayed number will increase by one. When displaying ten entries, the first entry will display "1", and the last entry will show "10".', 'gravityview'), |
|
103 | + 'desc' => __( 'For each entry, the displayed number will increase by one. When displaying ten entries, the first entry will display "1", and the last entry will show "10".', 'gravityview' ), |
|
104 | 104 | 'value' => '1', |
105 | 105 | 'merge_tags' => false, |
106 | 106 | ), |
@@ -156,17 +156,17 @@ discard block |
||
156 | 156 | $return = $text; |
157 | 157 | |
158 | 158 | $context = new \GV\Template_Context(); |
159 | - $context->view = \GV\View::by_id( $view_data['view_id'] ); |
|
159 | + $context->view = \GV\View::by_id( $view_data[ 'view_id' ] ); |
|
160 | 160 | $context->entry = \GV\GF_Entry::from_entry( $entry ); |
161 | 161 | |
162 | 162 | $gv_field = \GV\Internal_Field::by_id( 'sequence' ); |
163 | 163 | $merge_tag_context = \GV\Utils::get( $legacy_field, 'UID' ); |
164 | - $merge_tag_context = $entry['id'] . "/{$merge_tag_context}"; |
|
164 | + $merge_tag_context = $entry[ 'id' ] . "/{$merge_tag_context}"; |
|
165 | 165 | |
166 | 166 | foreach ( $matches as $match ) { |
167 | 167 | |
168 | - $full_tag = $match[0]; |
|
169 | - $property = $match[1]; |
|
168 | + $full_tag = $match[ 0 ]; |
|
169 | + $property = $match[ 1 ]; |
|
170 | 170 | |
171 | 171 | $gv_field->reverse = false; |
172 | 172 | $gv_field->start = 1; |
@@ -185,12 +185,12 @@ discard block |
||
185 | 185 | |
186 | 186 | // If there is a field with the ID of the start number, the merge tag won't work. |
187 | 187 | // In that case, you can use "=" instead: `{sequence start=10}` |
188 | - if( 1 === sizeof( $maybe_start ) ) { |
|
188 | + if ( 1 === sizeof( $maybe_start ) ) { |
|
189 | 189 | $maybe_start = explode( '=', $modifier ); |
190 | 190 | } |
191 | 191 | |
192 | 192 | if ( 'start' === rgar( $maybe_start, 0 ) && is_numeric( rgar( $maybe_start, 1 ) ) ) { |
193 | - $gv_field->start = (int) rgar( $maybe_start, 1 ); |
|
193 | + $gv_field->start = (int)rgar( $maybe_start, 1 ); |
|
194 | 194 | } |
195 | 195 | } |
196 | 196 | |
@@ -201,7 +201,7 @@ discard block |
||
201 | 201 | $merge_tag_context_modifiers = $merge_tag_context . '/' . var_export( $gv_field->reverse, true ) . '/' . $gv_field->start; |
202 | 202 | |
203 | 203 | if ( ! isset( $merge_tag_sequences[ $merge_tag_context_modifiers ] ) ) { |
204 | - $gv_field->UID = $legacy_field['UID'] . '/' . var_export( $gv_field->reverse, true ) . '/' . $gv_field->start; |
|
204 | + $gv_field->UID = $legacy_field[ 'UID' ] . '/' . var_export( $gv_field->reverse, true ) . '/' . $gv_field->start; |
|
205 | 205 | $context->field = $gv_field; |
206 | 206 | $sequence = $merge_tag_sequences[ $merge_tag_context_modifiers ] = $this->get_sequence( $context ); |
207 | 207 | } else { |
@@ -246,7 +246,7 @@ discard block |
||
246 | 246 | $total = $context->view->get_entries()->total(); |
247 | 247 | remove_filter( 'gform_gf_query_sql', $callback ); |
248 | 248 | |
249 | - unset( $sql_query['paginate'] ); |
|
249 | + unset( $sql_query[ 'paginate' ] ); |
|
250 | 250 | |
251 | 251 | global $wpdb; |
252 | 252 |
@@ -97,13 +97,13 @@ |
||
97 | 97 | // Set the $_field_id var |
98 | 98 | $field_options = parent::field_options( $field_options, $template_id, $field_id, $context, $input_type, $form_id ); |
99 | 99 | |
100 | - if( floor( $field_id ) !== floatval( $field_id ) ) { |
|
100 | + if ( floor( $field_id ) !== floatval( $field_id ) ) { |
|
101 | 101 | $default = 'tick'; |
102 | 102 | } else { |
103 | 103 | $default = 'both'; |
104 | 104 | } |
105 | 105 | |
106 | - $field_options['choice_display'] = array( |
|
106 | + $field_options[ 'choice_display' ] = array( |
|
107 | 107 | 'type' => 'radio', |
108 | 108 | 'class' => 'vertical', |
109 | 109 | 'label' => __( 'What should be displayed:', 'gravityview' ), |
@@ -14,42 +14,42 @@ |
||
14 | 14 | |
15 | 15 | $field_info_items = array(); |
16 | 16 | |
17 | - if( !empty( $this->item['adminLabel'] ) ) { |
|
18 | - $field_info_items[] = array( |
|
19 | - 'value' => sprintf( __('Admin Label: %s', 'gravityview' ), $this->item['adminLabel'] ), |
|
17 | + if ( ! empty( $this->item[ 'adminLabel' ] ) ) { |
|
18 | + $field_info_items[ ] = array( |
|
19 | + 'value' => sprintf( __( 'Admin Label: %s', 'gravityview' ), $this->item[ 'adminLabel' ] ), |
|
20 | 20 | 'class' => 'gv-sublabel' |
21 | 21 | ); |
22 | 22 | } |
23 | 23 | |
24 | 24 | // Fields with IDs, not like Source URL or Entry ID |
25 | - if( is_numeric( $this->id ) ) { |
|
25 | + if ( is_numeric( $this->id ) ) { |
|
26 | 26 | |
27 | - $field_type_title = GFCommon::get_field_type_title( $this->item['input_type'] ); |
|
27 | + $field_type_title = GFCommon::get_field_type_title( $this->item[ 'input_type' ] ); |
|
28 | 28 | |
29 | - if ( ! empty( $this->item['parent'] ) ) { |
|
30 | - $field_info_items[] = array( |
|
31 | - 'value' => sprintf( esc_html__( 'Parent: %s', 'gravityview' ), esc_attr( $this->item['parent']['label'] ) ), |
|
29 | + if ( ! empty( $this->item[ 'parent' ] ) ) { |
|
30 | + $field_info_items[ ] = array( |
|
31 | + 'value' => sprintf( esc_html__( 'Parent: %s', 'gravityview' ), esc_attr( $this->item[ 'parent' ][ 'label' ] ) ), |
|
32 | 32 | ); |
33 | 33 | } |
34 | 34 | |
35 | - $field_info_items[] = array( |
|
36 | - 'value' => sprintf( __('Type: %s', 'gravityview'), $field_type_title ), |
|
37 | - 'hide_in_picker' => ! empty( $this->item['parent'] ), |
|
35 | + $field_info_items[ ] = array( |
|
36 | + 'value' => sprintf( __( 'Type: %s', 'gravityview' ), $field_type_title ), |
|
37 | + 'hide_in_picker' => ! empty( $this->item[ 'parent' ] ), |
|
38 | 38 | ); |
39 | 39 | |
40 | - $field_info_items[] = array( |
|
41 | - 'value' => sprintf( __('Field ID: %s', 'gravityview'), $this->id ), |
|
40 | + $field_info_items[ ] = array( |
|
41 | + 'value' => sprintf( __( 'Field ID: %s', 'gravityview' ), $this->id ), |
|
42 | 42 | ); |
43 | 43 | } |
44 | 44 | |
45 | - if( !empty( $this->item['desc'] ) ) { |
|
46 | - $field_info_items[] = array( |
|
47 | - 'value' => $this->item['desc'] |
|
45 | + if ( ! empty( $this->item[ 'desc' ] ) ) { |
|
46 | + $field_info_items[ ] = array( |
|
47 | + 'value' => $this->item[ 'desc' ] |
|
48 | 48 | ); |
49 | 49 | } |
50 | 50 | |
51 | - $field_info_items[] = array( |
|
52 | - 'value' => sprintf( __('Form ID: %s', 'gravityview' ), $this->form_id ), |
|
51 | + $field_info_items[ ] = array( |
|
52 | + 'value' => sprintf( __( 'Form ID: %s', 'gravityview' ), $this->form_id ), |
|
53 | 53 | 'hide_in_picker' => true, |
54 | 54 | ); |
55 | 55 |
@@ -29,24 +29,24 @@ |
||
29 | 29 | public function field_options( $field_options, $template_id, $field_id, $context, $input_type, $form_id ) { |
30 | 30 | |
31 | 31 | // Don't link to entry; doesn't make sense. |
32 | - unset( $field_options['show_as_link'] ); |
|
32 | + unset( $field_options[ 'show_as_link' ] ); |
|
33 | 33 | |
34 | - if( 'edit' === $context ) { |
|
34 | + if ( 'edit' === $context ) { |
|
35 | 35 | return $field_options; |
36 | 36 | } |
37 | 37 | |
38 | 38 | $add_options = array(); |
39 | - $add_options['link_to_source'] = array( |
|
39 | + $add_options[ 'link_to_source' ] = array( |
|
40 | 40 | 'type' => 'checkbox', |
41 | 41 | 'label' => __( 'Link to URL:', 'gravityview' ), |
42 | - 'desc' => __('Display as a link to the Source URL', 'gravityview'), |
|
42 | + 'desc' => __( 'Display as a link to the Source URL', 'gravityview' ), |
|
43 | 43 | 'value' => false, |
44 | 44 | 'merge_tags' => false, |
45 | 45 | ); |
46 | - $add_options['source_link_text'] = array( |
|
46 | + $add_options[ 'source_link_text' ] = array( |
|
47 | 47 | 'type' => 'text', |
48 | 48 | 'label' => __( 'Link Text:', 'gravityview' ), |
49 | - 'desc' => __('Customize the link text. If empty, the link text will be the URL.', 'gravityview'), |
|
49 | + 'desc' => __( 'Customize the link text. If empty, the link text will be the URL.', 'gravityview' ), |
|
50 | 50 | 'value' => NULL, |
51 | 51 | 'merge_tags' => true, |
52 | 52 | 'requires' => 'link_to_source', |
@@ -118,7 +118,7 @@ discard block |
||
118 | 118 | $setting_tabs = parent::get_app_settings_tabs(); |
119 | 119 | |
120 | 120 | foreach ( $setting_tabs as &$tab ) { |
121 | - if ( 'uninstall' !== $tab['name'] ) { |
|
121 | + if ( 'uninstall' !== $tab[ 'name' ] ) { |
|
122 | 122 | continue; |
123 | 123 | } |
124 | 124 | |
@@ -129,7 +129,7 @@ discard block |
||
129 | 129 | } |
130 | 130 | |
131 | 131 | // Add trash can icon to resemble the look and feel of the GF Settings page |
132 | - $tab['icon'] = 'dashicons-trash'; |
|
132 | + $tab[ 'icon' ] = 'dashicons-trash'; |
|
133 | 133 | } |
134 | 134 | |
135 | 135 | return array_filter( $setting_tabs ); |
@@ -144,8 +144,8 @@ discard block |
||
144 | 144 | */ |
145 | 145 | public function register_no_conflict( $items ) { |
146 | 146 | |
147 | - $items[] = 'gform_settings'; |
|
148 | - $items[] = 'gv-admin-edd-license'; |
|
147 | + $items[ ] = 'gform_settings'; |
|
148 | + $items[ ] = 'gv-admin-edd-license'; |
|
149 | 149 | |
150 | 150 | return $items; |
151 | 151 | } |
@@ -196,7 +196,7 @@ discard block |
||
196 | 196 | |
197 | 197 | $href = add_query_arg( array( 'post_type' => 'gravityview', 'page' => 'gravityview_settings', 'view' => 'uninstall' ), admin_url( 'edit.php' ) ); |
198 | 198 | |
199 | - $uninstall_button = '<a href="' . esc_url( $href ) . '" class="' . gravityview_sanitize_html_class( $html_class ). '">' . esc_html__( 'Uninstall GravityView', 'gravityview' ) . '</a>'; |
|
199 | + $uninstall_button = '<a href="' . esc_url( $href ) . '" class="' . gravityview_sanitize_html_class( $html_class ) . '">' . esc_html__( 'Uninstall GravityView', 'gravityview' ) . '</a>'; |
|
200 | 200 | |
201 | 201 | $html .= $uninstall_button; |
202 | 202 | |
@@ -215,10 +215,10 @@ discard block |
||
215 | 215 | */ |
216 | 216 | public function settings_save( $field, $echo = true ) { |
217 | 217 | |
218 | - $field['type'] = 'submit'; |
|
219 | - $field['name'] = 'gform-settings-save'; |
|
220 | - $field['class'] = 'button button-primary primary button-hero'; |
|
221 | - $field['value'] = Utils::get( $field, 'value', __( 'Update Settings', 'gravityview' ) ); |
|
218 | + $field[ 'type' ] = 'submit'; |
|
219 | + $field[ 'name' ] = 'gform-settings-save'; |
|
220 | + $field[ 'class' ] = 'button button-primary primary button-hero'; |
|
221 | + $field[ 'value' ] = Utils::get( $field, 'value', __( 'Update Settings', 'gravityview' ) ); |
|
222 | 222 | |
223 | 223 | $html = $this->as_html( $field, false ); |
224 | 224 | |
@@ -240,8 +240,8 @@ discard block |
||
240 | 240 | */ |
241 | 241 | public function modify_app_settings_menu_title( $setting_tabs ) { |
242 | 242 | |
243 | - $setting_tabs[0]['label'] = __( 'GravityView Settings', 'gravityview' ); |
|
244 | - $setting_tabs[0]['icon'] = 'dashicons-admin-settings'; |
|
243 | + $setting_tabs[ 0 ][ 'label' ] = __( 'GravityView Settings', 'gravityview' ); |
|
244 | + $setting_tabs[ 0 ][ 'icon' ] = 'dashicons-admin-settings'; |
|
245 | 245 | |
246 | 246 | return $setting_tabs; |
247 | 247 | } |
@@ -489,7 +489,7 @@ discard block |
||
489 | 489 | $i = 0; |
490 | 490 | while ( $i < 11 ) { |
491 | 491 | echo '<li class="inline number-scale"><label><input name="likely_to_refer" id="likely_to_refer_' . $i . '" value="' . $i . '" type="radio"> ' . $i . '</label></li>'; |
492 | - $i ++; |
|
492 | + $i++; |
|
493 | 493 | } |
494 | 494 | ?> |
495 | 495 | </ul> |
@@ -694,14 +694,14 @@ discard block |
||
694 | 694 | */ |
695 | 695 | public function as_html( $field, $echo = true ) { |
696 | 696 | |
697 | - $field['type'] = ( isset( $field['type'] ) && in_array( $field['type'], array( 'submit', 'reset', 'button' ) ) ) ? $field['type'] : 'submit'; |
|
697 | + $field[ 'type' ] = ( isset( $field[ 'type' ] ) && in_array( $field[ 'type' ], array( 'submit', 'reset', 'button' ) ) ) ? $field[ 'type' ] : 'submit'; |
|
698 | 698 | |
699 | 699 | $attributes = $this->get_field_attributes( $field ); |
700 | 700 | $default_value = Utils::get( $field, 'value', Utils::get( $field, 'default_value' ) ); |
701 | - $value = $this->get( $field['name'], $default_value ); |
|
701 | + $value = $this->get( $field[ 'name' ], $default_value ); |
|
702 | 702 | |
703 | - $attributes['class'] = isset( $attributes['class'] ) ? esc_attr( $attributes['class'] ) : 'button-primary primary gfbutton'; |
|
704 | - $name = ( $field['name'] === 'gform-settings-save' ) ? $field['name'] : '_gaddon_setting_' . $field['name']; |
|
703 | + $attributes[ 'class' ] = isset( $attributes[ 'class' ] ) ? esc_attr( $attributes[ 'class' ] ) : 'button-primary primary gfbutton'; |
|
704 | + $name = ( $field[ 'name' ] === 'gform-settings-save' ) ? $field[ 'name' ] : '_gaddon_setting_' . $field[ 'name' ]; |
|
705 | 705 | |
706 | 706 | if ( empty( $value ) ) { |
707 | 707 | $value = __( 'Update Settings', 'gravityview' ); |
@@ -710,7 +710,7 @@ discard block |
||
710 | 710 | $attributes = $this->get_field_attributes( $field ); |
711 | 711 | |
712 | 712 | $html = '<input |
713 | - type="' . $field['type'] . '" |
|
713 | + type="' . $field[ 'type' ] . '" |
|
714 | 714 | name="' . esc_attr( $name ) . '" |
715 | 715 | value="' . $value . '" ' . |
716 | 716 | implode( ' ', $attributes ) . |
@@ -744,7 +744,7 @@ discard block |
||
744 | 744 | */ |
745 | 745 | public function is_save_postback() { |
746 | 746 | |
747 | - return isset( $_POST['gform-settings-save'] ) && isset( $_POST['_gravityview_save_settings_nonce'] ); |
|
747 | + return isset( $_POST[ 'gform-settings-save' ] ) && isset( $_POST[ '_gravityview_save_settings_nonce' ] ); |
|
748 | 748 | } |
749 | 749 | |
750 | 750 | /** |
@@ -856,7 +856,7 @@ discard block |
||
856 | 856 | |
857 | 857 | $scripts = parent::scripts(); |
858 | 858 | |
859 | - $scripts[] = array( |
|
859 | + $scripts[ ] = array( |
|
860 | 860 | 'handle' => 'gform_tooltip_init', |
861 | 861 | 'enqueue' => array( |
862 | 862 | array( |
@@ -884,11 +884,11 @@ discard block |
||
884 | 884 | ); |
885 | 885 | |
886 | 886 | // This file was removed from 2.5 |
887 | - if( ! gravityview()->plugin->is_GF_25() ) { |
|
888 | - $deps[] = 'gform_tooltip'; |
|
887 | + if ( ! gravityview()->plugin->is_GF_25() ) { |
|
888 | + $deps[ ] = 'gform_tooltip'; |
|
889 | 889 | } |
890 | 890 | |
891 | - $styles[] = array( |
|
891 | + $styles[ ] = array( |
|
892 | 892 | 'handle' => 'gravityview_settings', |
893 | 893 | 'src' => plugins_url( 'assets/css/admin-settings.css', GRAVITYVIEW_FILE ), |
894 | 894 | 'version' => Plugin::$version, |
@@ -975,7 +975,7 @@ discard block |
||
975 | 975 | 'name' => 'support-email', |
976 | 976 | 'type' => 'text', |
977 | 977 | 'validate' => 'email', |
978 | - 'default_value' => $default_settings['support-email'], |
|
978 | + 'default_value' => $default_settings[ 'support-email' ], |
|
979 | 979 | 'label' => __( 'Support Email', 'gravityview' ), |
980 | 980 | 'description' => __( 'In order to provide responses to your support requests, please provide your email address.', 'gravityview' ), |
981 | 981 | 'class' => 'code regular-text', |
@@ -987,7 +987,7 @@ discard block |
||
987 | 987 | 'name' => 'support_port', |
988 | 988 | 'type' => 'radio', |
989 | 989 | 'label' => __( 'Show Support Port?', 'gravityview' ), |
990 | - 'default_value' => $default_settings['support_port'], |
|
990 | + 'default_value' => $default_settings[ 'support_port' ], |
|
991 | 991 | 'horizontal' => 1, |
992 | 992 | 'choices' => array( |
993 | 993 | array( |
@@ -1006,7 +1006,7 @@ discard block |
||
1006 | 1006 | 'name' => 'no-conflict-mode', |
1007 | 1007 | 'type' => 'radio', |
1008 | 1008 | 'label' => __( 'No-Conflict Mode', 'gravityview' ), |
1009 | - 'default_value' => $default_settings['no-conflict-mode'], |
|
1009 | + 'default_value' => $default_settings[ 'no-conflict-mode' ], |
|
1010 | 1010 | 'horizontal' => 1, |
1011 | 1011 | 'choices' => array( |
1012 | 1012 | array( |
@@ -1028,7 +1028,7 @@ discard block |
||
1028 | 1028 | 'name' => 'rest_api', |
1029 | 1029 | 'type' => 'radio', |
1030 | 1030 | 'label' => __( 'REST API', 'gravityview' ), |
1031 | - 'default_value' => $default_settings['rest_api'], |
|
1031 | + 'default_value' => $default_settings[ 'rest_api' ], |
|
1032 | 1032 | 'horizontal' => 1, |
1033 | 1033 | 'choices' => array( |
1034 | 1034 | array( |
@@ -1047,7 +1047,7 @@ discard block |
||
1047 | 1047 | 'name' => 'powered_by', |
1048 | 1048 | 'type' => 'checkbox', |
1049 | 1049 | 'label' => __( 'Display "Powered By" Link', 'gravityview' ), |
1050 | - 'default_value' => $default_settings['powered_by'], |
|
1050 | + 'default_value' => $default_settings[ 'powered_by' ], |
|
1051 | 1051 | 'choices' => array( |
1052 | 1052 | array( |
1053 | 1053 | 'label' => esc_html__( 'Display a "Powered by GravityView" link', 'gravityview' ), |
@@ -1072,7 +1072,7 @@ discard block |
||
1072 | 1072 | 'name' => 'beta', |
1073 | 1073 | 'type' => 'checkbox', |
1074 | 1074 | 'label' => __( 'Become a Beta Tester', 'gravityview' ), |
1075 | - 'default_value' => $default_settings['beta'], |
|
1075 | + 'default_value' => $default_settings[ 'beta' ], |
|
1076 | 1076 | 'horizontal' => 1, |
1077 | 1077 | 'choices' => array( |
1078 | 1078 | array( |
@@ -1106,17 +1106,17 @@ discard block |
||
1106 | 1106 | * @since 1.7.4 |
1107 | 1107 | */ |
1108 | 1108 | foreach ( $fields as &$field ) { |
1109 | - $field['name'] = isset( $field['name'] ) ? $field['name'] : Utils::get( $field, 'id' ); |
|
1110 | - $field['label'] = isset( $field['label'] ) ? $field['label'] : Utils::get( $field, 'title' ); |
|
1111 | - $field['default_value'] = isset( $field['default_value'] ) ? $field['default_value'] : Utils::get( $field, 'default' ); |
|
1112 | - $field['description'] = isset( $field['description'] ) ? $field['description'] : Utils::get( $field, 'subtitle' ); |
|
1109 | + $field[ 'name' ] = isset( $field[ 'name' ] ) ? $field[ 'name' ] : Utils::get( $field, 'id' ); |
|
1110 | + $field[ 'label' ] = isset( $field[ 'label' ] ) ? $field[ 'label' ] : Utils::get( $field, 'title' ); |
|
1111 | + $field[ 'default_value' ] = isset( $field[ 'default_value' ] ) ? $field[ 'default_value' ] : Utils::get( $field, 'default' ); |
|
1112 | + $field[ 'description' ] = isset( $field[ 'description' ] ) ? $field[ 'description' ] : Utils::get( $field, 'subtitle' ); |
|
1113 | 1113 | |
1114 | 1114 | if ( $disabled_attribute ) { |
1115 | - $field['disabled'] = $disabled_attribute; |
|
1115 | + $field[ 'disabled' ] = $disabled_attribute; |
|
1116 | 1116 | } |
1117 | 1117 | |
1118 | - if ( empty( $field['disabled'] ) ) { |
|
1119 | - unset( $field['disabled'] ); |
|
1118 | + if ( empty( $field[ 'disabled' ] ) ) { |
|
1119 | + unset( $field[ 'disabled' ] ); |
|
1120 | 1120 | } |
1121 | 1121 | } |
1122 | 1122 | |
@@ -1128,23 +1128,23 @@ discard block |
||
1128 | 1128 | 'description' => __( 'Enter the license key that was sent to you on purchase. This enables plugin updates & support.', 'gravityview' ), |
1129 | 1129 | 'type' => 'edd_license', |
1130 | 1130 | 'data-pending-text' => __( 'Verifying license…', 'gravityview' ), |
1131 | - 'default_value' => $default_settings['license_key'], |
|
1131 | + 'default_value' => $default_settings[ 'license_key' ], |
|
1132 | 1132 | 'class' => ( '' == $this->get( 'license_key' ) ) ? 'activate code regular-text edd-license-key' : 'deactivate code regular-text edd-license-key', |
1133 | 1133 | ), |
1134 | 1134 | array( |
1135 | 1135 | 'name' => 'license_key_response', |
1136 | - 'default_value' => $default_settings['license_key_response'], |
|
1136 | + 'default_value' => $default_settings[ 'license_key_response' ], |
|
1137 | 1137 | 'type' => 'hidden', |
1138 | 1138 | ), |
1139 | 1139 | array( |
1140 | 1140 | 'name' => 'license_key_status', |
1141 | - 'default_value' => $default_settings['license_key_status'], |
|
1141 | + 'default_value' => $default_settings[ 'license_key_status' ], |
|
1142 | 1142 | 'type' => 'hidden', |
1143 | 1143 | ), |
1144 | 1144 | ); |
1145 | 1145 | |
1146 | 1146 | if ( defined( 'GRAVITYVIEW_LICENSE_KEY' ) && GRAVITYVIEW_LICENSE_KEY ) { |
1147 | - $license_fields[0] = array_merge( $license_fields[0], array( |
|
1147 | + $license_fields[ 0 ] = array_merge( $license_fields[ 0 ], array( |
|
1148 | 1148 | 'disabled' => true, |
1149 | 1149 | 'title' => __( 'The license key is defined by your site\'s configuration file.', 'gravityview' ), |
1150 | 1150 | ) ); |
@@ -1155,7 +1155,7 @@ discard block |
||
1155 | 1155 | |
1156 | 1156 | if ( \gravityview()->plugin->is_GF_25() ) { |
1157 | 1157 | |
1158 | - $sections[] = array( |
|
1158 | + $sections[ ] = array( |
|
1159 | 1159 | 'title' => __( 'GravityView License', 'gravityview' ), |
1160 | 1160 | 'class' => 'gform-settings-panel--full gv-settings-panel--license', |
1161 | 1161 | 'description' => $version_info, |
@@ -1173,7 +1173,7 @@ discard block |
||
1173 | 1173 | ) ); |
1174 | 1174 | } |
1175 | 1175 | |
1176 | - $sections[] = array( |
|
1176 | + $sections[ ] = array( |
|
1177 | 1177 | 'title' => ( gravityview()->plugin->is_GF_25() ? __( 'GravityView Settings', 'gravityview' ) : null ), |
1178 | 1178 | 'class' => 'gform-settings-panel--full gv-settings-panel--core', |
1179 | 1179 | 'fields' => $fields, |
@@ -1197,8 +1197,8 @@ discard block |
||
1197 | 1197 | |
1198 | 1198 | if ( $disabled_attribute ) { |
1199 | 1199 | foreach ( $extension_sections as &$section ) { |
1200 | - foreach ( $section['fields'] as &$field ) { |
|
1201 | - $field['disabled'] = $disabled_attribute; |
|
1200 | + foreach ( $section[ 'fields' ] as &$field ) { |
|
1201 | + $field[ 'disabled' ] = $disabled_attribute; |
|
1202 | 1202 | } |
1203 | 1203 | } |
1204 | 1204 | } |
@@ -1264,7 +1264,7 @@ discard block |
||
1264 | 1264 | public function settings_edd_license( $field, $echo = true ) { |
1265 | 1265 | |
1266 | 1266 | if ( defined( 'GRAVITYVIEW_LICENSE_KEY' ) && GRAVITYVIEW_LICENSE_KEY ) { |
1267 | - $field['input_type'] = 'password'; |
|
1267 | + $field[ 'input_type' ] = 'password'; |
|
1268 | 1268 | } |
1269 | 1269 | |
1270 | 1270 | $text = $this->settings_text( $field, false ); |
@@ -1316,7 +1316,7 @@ discard block |
||
1316 | 1316 | |
1317 | 1317 | ?> |
1318 | 1318 | |
1319 | - <tr id="gaddon-setting-row-<?php echo esc_attr( $field['name'] ); ?>"> |
|
1319 | + <tr id="gaddon-setting-row-<?php echo esc_attr( $field[ 'name' ] ); ?>"> |
|
1320 | 1320 | <td colspan="2"> |
1321 | 1321 | <?php $this->single_setting( $field ); ?> |
1322 | 1322 | </td> |
@@ -1342,8 +1342,8 @@ discard block |
||
1342 | 1342 | */ |
1343 | 1343 | public function single_setting_row( $field ) { |
1344 | 1344 | |
1345 | - $field['gv_description'] = Utils::get( $field, 'description' ); |
|
1346 | - $field['description'] = Utils::get( $field, 'subtitle' ); |
|
1345 | + $field[ 'gv_description' ] = Utils::get( $field, 'description' ); |
|
1346 | + $field[ 'description' ] = Utils::get( $field, 'subtitle' ); |
|
1347 | 1347 | parent::single_setting_row( $field ); |
1348 | 1348 | } |
1349 | 1349 | |
@@ -1404,8 +1404,8 @@ discard block |
||
1404 | 1404 | // then we assume it's changed. If it's changed, unset the status and the previous response. |
1405 | 1405 | if ( ! $added_message && ( $local_key !== $response_key ) ) { |
1406 | 1406 | |
1407 | - unset( $posted_settings['license_key_response'] ); |
|
1408 | - unset( $posted_settings['license_key_status'] ); |
|
1407 | + unset( $posted_settings[ 'license_key_response' ] ); |
|
1408 | + unset( $posted_settings[ 'license_key_status' ] ); |
|
1409 | 1409 | |
1410 | 1410 | \GFCommon::add_error_message( __( 'The license key you entered has been saved, but not activated. Please activate the license.', 'gravityview' ) ); |
1411 | 1411 |
@@ -15,25 +15,25 @@ discard block |
||
15 | 15 | |
16 | 16 | <div id="directory-fields" class="gv-section"> |
17 | 17 | |
18 | - <h4><?php esc_html_e( 'Top Widgets', 'gravityview'); ?> <span><?php esc_html_e( 'These widgets will be shown above entries.', 'gravityview'); ?></span></h4> |
|
18 | + <h4><?php esc_html_e( 'Top Widgets', 'gravityview' ); ?> <span><?php esc_html_e( 'These widgets will be shown above entries.', 'gravityview' ); ?></span></h4> |
|
19 | 19 | |
20 | - <?php do_action('gravityview_render_widgets_active_areas', $curr_template, 'header', $post->ID ); ?> |
|
20 | + <?php do_action( 'gravityview_render_widgets_active_areas', $curr_template, 'header', $post->ID ); ?> |
|
21 | 21 | |
22 | - <h4><?php esc_html_e( 'Entries Fields', 'gravityview'); ?> <span><?php esc_html_e( 'These fields will be shown for each entry.', 'gravityview'); ?></span></h4> |
|
22 | + <h4><?php esc_html_e( 'Entries Fields', 'gravityview' ); ?> <span><?php esc_html_e( 'These fields will be shown for each entry.', 'gravityview' ); ?></span></h4> |
|
23 | 23 | |
24 | 24 | <div id="directory-active-fields" class="gv-grid"> |
25 | - <?php if(!empty( $curr_template ) ) { |
|
26 | - do_action('gravityview_render_directory_active_areas', $curr_template, 'directory', $post->ID, true ); |
|
25 | + <?php if ( ! empty( $curr_template ) ) { |
|
26 | + do_action( 'gravityview_render_directory_active_areas', $curr_template, 'directory', $post->ID, true ); |
|
27 | 27 | } ?> |
28 | 28 | </div> |
29 | 29 | |
30 | - <h4><?php esc_html_e( 'Bottom Widgets', 'gravityview'); ?> <i class="gf_tooltip gv_tooltip" title="<?php esc_attr_e( 'These widgets will be shown below entries.', 'gravityview'); ?>"></i></h4> |
|
30 | + <h4><?php esc_html_e( 'Bottom Widgets', 'gravityview' ); ?> <i class="gf_tooltip gv_tooltip" title="<?php esc_attr_e( 'These widgets will be shown below entries.', 'gravityview' ); ?>"></i></h4> |
|
31 | 31 | |
32 | 32 | <?php |
33 | 33 | |
34 | - do_action('gravityview_render_widgets_active_areas', $curr_template, 'footer', $post->ID ); |
|
34 | + do_action( 'gravityview_render_widgets_active_areas', $curr_template, 'footer', $post->ID ); |
|
35 | 35 | |
36 | - do_action('gravityview_render_field_pickers', 'directory' ); |
|
36 | + do_action( 'gravityview_render_field_pickers', 'directory' ); |
|
37 | 37 | |
38 | 38 | ?> |
39 | 39 | |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | <div id="directory-available-widgets" class="hide-if-js gv-tooltip"> |
42 | 42 | <div aria-live="polite" role="listbox" class="gv-items-picker-container gv-widget-picker-container" data-layout="grid" data-cols="2"> |
43 | 43 | <button class="close" role="button" aria-label="<?php esc_html_e( 'Close', 'gravityview' ); ?>"><i class="dashicons dashicons-dismiss"></i></button> |
44 | - <?php do_action('gravityview_render_available_widgets' ); ?> |
|
44 | + <?php do_action( 'gravityview_render_available_widgets' ); ?> |
|
45 | 45 | </div> |
46 | 46 | </div> |
47 | 47 | |
@@ -59,21 +59,21 @@ discard block |
||
59 | 59 | <div id="single-fields" class="gv-section"> |
60 | 60 | |
61 | 61 | <div class="notice notice-warning inline is-dismissible"> |
62 | - <h3><?php printf( esc_html__( 'Note: %s', 'gravityview' ), sprintf( esc_html__( 'No fields link to the %s layout.', 'gravityview'), esc_html__( 'Single Entry', 'gravityview' ) ) ); ?></h3> |
|
62 | + <h3><?php printf( esc_html__( 'Note: %s', 'gravityview' ), sprintf( esc_html__( 'No fields link to the %s layout.', 'gravityview' ), esc_html__( 'Single Entry', 'gravityview' ) ) ); ?></h3> |
|
63 | 63 | <p><a data-beacon-article-modal="54c67bbae4b0512429885516" href="https://docs.gravityview.co/article/70-linking-to-a-single-entry"><?php printf( esc_html__( 'Learn how to link to %s', 'gravityview' ), esc_html__( 'Single Entry', 'gravityview' ) ); ?></a></p> |
64 | 64 | </div> |
65 | 65 | |
66 | - <h4><?php esc_html_e( 'These fields will be shown in Single Entry layout.', 'gravityview'); ?></h4> |
|
66 | + <h4><?php esc_html_e( 'These fields will be shown in Single Entry layout.', 'gravityview' ); ?></h4> |
|
67 | 67 | |
68 | 68 | <div id="single-active-fields" class="gv-grid"> |
69 | 69 | <?php |
70 | - if(!empty( $curr_template ) ) { |
|
71 | - do_action('gravityview_render_directory_active_areas', $curr_template, 'single', $post->ID, true ); |
|
70 | + if ( ! empty( $curr_template ) ) { |
|
71 | + do_action( 'gravityview_render_directory_active_areas', $curr_template, 'single', $post->ID, true ); |
|
72 | 72 | } |
73 | 73 | ?> |
74 | 74 | </div> |
75 | 75 | <?php |
76 | - do_action('gravityview_render_field_pickers', 'single' ); |
|
76 | + do_action( 'gravityview_render_field_pickers', 'single' ); |
|
77 | 77 | ?> |
78 | 78 | </div> |
79 | 79 | |
@@ -84,20 +84,20 @@ discard block |
||
84 | 84 | <div id="edit-fields" class="gv-section"> |
85 | 85 | |
86 | 86 | <div class="notice notice-warning inline is-dismissible"> |
87 | - <h3><?php printf( esc_html__( 'Note: %s', 'gravityview' ), sprintf( esc_html__( 'No fields link to the %s layout.', 'gravityview'), esc_html__( 'Edit Entry', 'gravityview' ) ) ); ?></h3> |
|
87 | + <h3><?php printf( esc_html__( 'Note: %s', 'gravityview' ), sprintf( esc_html__( 'No fields link to the %s layout.', 'gravityview' ), esc_html__( 'Edit Entry', 'gravityview' ) ) ); ?></h3> |
|
88 | 88 | <p><a data-beacon-article-modal="54c67bb9e4b0512429885513" href="https://docs.gravityview.co/article/67-configuring-the-edit-entry-screen"><?php printf( esc_html__( 'Learn how to link to %s', 'gravityview' ), esc_html__( 'Edit Entry', 'gravityview' ) ); ?></a></p> |
89 | 89 | </div> |
90 | 90 | |
91 | - <h4><?php esc_html_e( 'Fields shown when editing an entry.', 'gravityview'); ?> <span><?php esc_html_e('If not configured, all form fields will be displayed.', 'gravityview'); ?></span></h4> |
|
91 | + <h4><?php esc_html_e( 'Fields shown when editing an entry.', 'gravityview' ); ?> <span><?php esc_html_e( 'If not configured, all form fields will be displayed.', 'gravityview' ); ?></span></h4> |
|
92 | 92 | |
93 | 93 | <div id="edit-active-fields" class="gv-grid"> |
94 | 94 | <?php |
95 | - do_action('gravityview_render_directory_active_areas', apply_filters( 'gravityview/template/edit', 'default_table_edit' ), 'edit', $post->ID, true ); |
|
95 | + do_action( 'gravityview_render_directory_active_areas', apply_filters( 'gravityview/template/edit', 'default_table_edit' ), 'edit', $post->ID, true ); |
|
96 | 96 | ?> |
97 | 97 | </div> |
98 | 98 | |
99 | 99 | <?php |
100 | - do_action('gravityview_render_field_pickers', 'edit' ); |
|
100 | + do_action( 'gravityview_render_field_pickers', 'edit' ); |
|
101 | 101 | ?> |
102 | 102 | |
103 | 103 | </div> |
@@ -74,7 +74,7 @@ discard block |
||
74 | 74 | static public function get_email( $field_settings, $entry ) { |
75 | 75 | |
76 | 76 | // There was no logged in user. |
77 | - switch ( $field_settings['email_field'] ) { |
|
77 | + switch ( $field_settings[ 'email_field' ] ) { |
|
78 | 78 | case 'created_by_email': |
79 | 79 | |
80 | 80 | $created_by = \GV\Utils::get( $entry, 'created_by', null ); |
@@ -105,9 +105,9 @@ discard block |
||
105 | 105 | return $field_options; |
106 | 106 | } |
107 | 107 | |
108 | - unset( $field_options['new_window'] ); |
|
108 | + unset( $field_options[ 'new_window' ] ); |
|
109 | 109 | |
110 | - $field_options['email_field'] = array( |
|
110 | + $field_options[ 'email_field' ] = array( |
|
111 | 111 | 'type' => 'select', |
112 | 112 | 'label' => __( 'Email to Use', 'gravityview' ), |
113 | 113 | 'value' => 'created_by_email', |
@@ -116,7 +116,7 @@ discard block |
||
116 | 116 | 'group' => 'display', |
117 | 117 | ); |
118 | 118 | |
119 | - $field_options['default'] = array( |
|
119 | + $field_options[ 'default' ] = array( |
|
120 | 120 | 'type' => 'select', |
121 | 121 | 'label' => __( 'Default Image', 'gravityview' ), |
122 | 122 | 'desc' => __( 'Choose the default image to be shown when an email has no Gravatar.', 'gravityview' ) . ' <a href="https://en.gravatar.com/site/implement/images/">' . esc_html( sprintf( __( 'Read more about %s', 'gravityview' ), __( 'Default Image', 'gravityview' ) ) ) . '</a>', |
@@ -133,7 +133,7 @@ discard block |
||
133 | 133 | 'group' => 'display', |
134 | 134 | ); |
135 | 135 | |
136 | - $field_options['size'] = array( |
|
136 | + $field_options[ 'size' ] = array( |
|
137 | 137 | 'type' => 'number', |
138 | 138 | 'label' => __( 'Size in Pixels', 'gravityview' ), |
139 | 139 | 'value' => 80, |
@@ -168,7 +168,7 @@ discard block |
||
168 | 168 | $email_fields = GFAPI::get_fields_by_type( $form, array( 'email' ) ); |
169 | 169 | |
170 | 170 | foreach ( $email_fields as $email_field ) { |
171 | - $email_field_id = $email_field['id']; |
|
171 | + $email_field_id = $email_field[ 'id' ]; |
|
172 | 172 | $email_field_label = GVCommon::get_field_label( $form, $email_field_id ); |
173 | 173 | $email_field_label = sprintf( __( 'Field: %s', 'gravityview' ), $email_field_label ); |
174 | 174 | $field_choices[ $email_field_id ] = esc_html( $email_field_label ); |
@@ -11,7 +11,7 @@ discard block |
||
11 | 11 | |
12 | 12 | var $is_searchable = true; |
13 | 13 | |
14 | - var $search_operators = array( 'is', 'in', 'not in', 'isnot', 'contains'); |
|
14 | + var $search_operators = array( 'is', 'in', 'not in', 'isnot', 'contains' ); |
|
15 | 15 | |
16 | 16 | var $_gf_field_class_name = 'GF_Field_Post_Category'; |
17 | 17 | |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | $entry = GFAPI::get_entry( $entry_id ); |
47 | 47 | $post_id = \GV\Utils::get( $entry, 'post_id' ); |
48 | 48 | |
49 | - if( empty( $post_id ) ) { |
|
49 | + if ( empty( $post_id ) ) { |
|
50 | 50 | return false; |
51 | 51 | } |
52 | 52 | |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | |
55 | 55 | $post_category_fields = GFAPI::get_fields_by_type( $form, 'post_category' ); |
56 | 56 | |
57 | - if( $post_category_fields ) { |
|
57 | + if ( $post_category_fields ) { |
|
58 | 58 | |
59 | 59 | $updated_categories = array(); |
60 | 60 | |
@@ -121,18 +121,18 @@ discard block |
||
121 | 121 | * |
122 | 122 | * @return mixed |
123 | 123 | */ |
124 | - function edit_entry_post_category_choices( $choices, $field, $form_id ) { |
|
124 | + function edit_entry_post_category_choices( $choices, $field, $form_id ) { |
|
125 | 125 | |
126 | - $entry = GravityView_Edit_Entry::getInstance()->instances['render']->get_entry(); |
|
126 | + $entry = GravityView_Edit_Entry::getInstance()->instances[ 'render' ]->get_entry(); |
|
127 | 127 | |
128 | 128 | // $entry['post_id'] should always be set, but we check to make sure. |
129 | - if( $entry && isset( $entry['post_id'] ) && $post_id = $entry['post_id'] ) { |
|
129 | + if ( $entry && isset( $entry[ 'post_id' ] ) && $post_id = $entry[ 'post_id' ] ) { |
|
130 | 130 | |
131 | 131 | $post_categories = wp_get_post_categories( $post_id, array( 'fields' => 'ids' ) ); |
132 | 132 | |
133 | 133 | // Always use the live value |
134 | 134 | foreach ( $choices as &$choice ) { |
135 | - $choice['isSelected'] = in_array( $choice['value'], array_values( $post_categories ) ); |
|
135 | + $choice[ 'isSelected' ] = in_array( $choice[ 'value' ], array_values( $post_categories ) ); |
|
136 | 136 | } |
137 | 137 | } |
138 | 138 | |
@@ -141,15 +141,15 @@ discard block |
||
141 | 141 | |
142 | 142 | public function field_options( $field_options, $template_id, $field_id, $context, $input_type, $form_id ) { |
143 | 143 | |
144 | - if( 'edit' === $context ) { |
|
144 | + if ( 'edit' === $context ) { |
|
145 | 145 | return $field_options; |
146 | 146 | } |
147 | 147 | |
148 | - $this->add_field_support('dynamic_data', $field_options ); |
|
149 | - $this->add_field_support('link_to_term', $field_options ); |
|
150 | - $this->add_field_support('new_window', $field_options ); |
|
148 | + $this->add_field_support( 'dynamic_data', $field_options ); |
|
149 | + $this->add_field_support( 'link_to_term', $field_options ); |
|
150 | + $this->add_field_support( 'new_window', $field_options ); |
|
151 | 151 | |
152 | - $field_options['new_window']['requires'] = 'link_to_term'; |
|
152 | + $field_options[ 'new_window' ][ 'requires' ] = 'link_to_term'; |
|
153 | 153 | |
154 | 154 | return $field_options; |
155 | 155 | } |