@@ -16,7 +16,7 @@ discard block |
||
16 | 16 | die; |
17 | 17 | } |
18 | 18 | |
19 | -if( ! class_exists( '\GV\Gamajo_Template_Loader' ) ) { |
|
19 | +if ( ! class_exists( '\GV\Gamajo_Template_Loader' ) ) { |
|
20 | 20 | require( GRAVITYVIEW_DIR . 'future/lib/class-gamajo-template-loader.php' ); |
21 | 21 | } |
22 | 22 | |
@@ -157,8 +157,8 @@ discard block |
||
157 | 157 | 'atts' => NULL, |
158 | 158 | ) ); |
159 | 159 | |
160 | - foreach ($atts as $key => $value) { |
|
161 | - if( is_null( $value ) ) { |
|
160 | + foreach ( $atts as $key => $value ) { |
|
161 | + if ( is_null( $value ) ) { |
|
162 | 162 | continue; |
163 | 163 | } |
164 | 164 | $this->{$key} = $value; |
@@ -188,7 +188,7 @@ discard block |
||
188 | 188 | */ |
189 | 189 | static function getInstance( $passed_post = NULL ) { |
190 | 190 | |
191 | - if( empty( self::$instance ) ) { |
|
191 | + if ( empty( self::$instance ) ) { |
|
192 | 192 | self::$instance = new self( $passed_post ); |
193 | 193 | } |
194 | 194 | |
@@ -201,8 +201,8 @@ discard block |
||
201 | 201 | */ |
202 | 202 | public function getCurrentField( $key = NULL ) { |
203 | 203 | |
204 | - if( !empty( $key ) ) { |
|
205 | - if( isset( $this->_current_field[ $key ] ) ) { |
|
204 | + if ( ! empty( $key ) ) { |
|
205 | + if ( isset( $this->_current_field[ $key ] ) ) { |
|
206 | 206 | return $this->_current_field[ $key ]; |
207 | 207 | } |
208 | 208 | return NULL; |
@@ -213,16 +213,16 @@ discard block |
||
213 | 213 | |
214 | 214 | public function setCurrentFieldSetting( $key, $value ) { |
215 | 215 | |
216 | - if( !empty( $this->_current_field ) ) { |
|
217 | - $this->_current_field['field_settings'][ $key ] = $value; |
|
216 | + if ( ! empty( $this->_current_field ) ) { |
|
217 | + $this->_current_field[ 'field_settings' ][ $key ] = $value; |
|
218 | 218 | } |
219 | 219 | |
220 | 220 | } |
221 | 221 | |
222 | 222 | public function getCurrentFieldSetting( $key ) { |
223 | - $settings = $this->getCurrentField('field_settings'); |
|
223 | + $settings = $this->getCurrentField( 'field_settings' ); |
|
224 | 224 | |
225 | - if( $settings && !empty( $settings[ $key ] ) ) { |
|
225 | + if ( $settings && ! empty( $settings[ $key ] ) ) { |
|
226 | 226 | return $settings[ $key ]; |
227 | 227 | } |
228 | 228 | |
@@ -253,8 +253,8 @@ discard block |
||
253 | 253 | */ |
254 | 254 | public function getAtts( $key = NULL ) { |
255 | 255 | |
256 | - if( !empty( $key ) ) { |
|
257 | - if( isset( $this->atts[ $key ] ) ) { |
|
256 | + if ( ! empty( $key ) ) { |
|
257 | + if ( isset( $this->atts[ $key ] ) ) { |
|
258 | 258 | return $this->atts[ $key ]; |
259 | 259 | } |
260 | 260 | return NULL; |
@@ -320,7 +320,7 @@ discard block |
||
320 | 320 | |
321 | 321 | $fields = empty( $this->fields ) ? NULL : $this->fields; |
322 | 322 | |
323 | - if( $fields && !empty( $key ) ) { |
|
323 | + if ( $fields && ! empty( $key ) ) { |
|
324 | 324 | $fields = isset( $fields[ $key ] ) ? $fields[ $key ] : NULL; |
325 | 325 | } |
326 | 326 | |
@@ -338,18 +338,18 @@ discard block |
||
338 | 338 | */ |
339 | 339 | public function getContextFields( $context = '' ) { |
340 | 340 | |
341 | - if( '' === $context ) { |
|
341 | + if ( '' === $context ) { |
|
342 | 342 | $context = $this->getContext(); |
343 | 343 | } |
344 | 344 | |
345 | 345 | $fields = $this->getFields(); |
346 | 346 | |
347 | - foreach ( (array) $fields as $key => $context_fields ) { |
|
347 | + foreach ( (array)$fields as $key => $context_fields ) { |
|
348 | 348 | |
349 | 349 | // Formatted as `{context}_{template id}-{zone name}`, so we want just the $context to match against |
350 | 350 | $matches = explode( '_', $key ); |
351 | 351 | |
352 | - if( isset( $matches[0] ) && $matches[0] === $context ) { |
|
352 | + if ( isset( $matches[ 0 ] ) && $matches[ 0 ] === $context ) { |
|
353 | 353 | return $context_fields; |
354 | 354 | } |
355 | 355 | } |
@@ -370,8 +370,8 @@ discard block |
||
370 | 370 | */ |
371 | 371 | public function getField( $key ) { |
372 | 372 | |
373 | - if( !empty( $key ) ) { |
|
374 | - if( isset( $this->fields[ $key ] ) ) { |
|
373 | + if ( ! empty( $key ) ) { |
|
374 | + if ( isset( $this->fields[ $key ] ) ) { |
|
375 | 375 | return $this->fields[ $key ]; |
376 | 376 | } |
377 | 377 | } |
@@ -477,8 +477,8 @@ discard block |
||
477 | 477 | public function getPaginationCounts() { |
478 | 478 | |
479 | 479 | $paging = $this->getPaging(); |
480 | - $offset = $paging['offset']; |
|
481 | - $page_size = $paging['page_size']; |
|
480 | + $offset = $paging[ 'offset' ]; |
|
481 | + $page_size = $paging[ 'page_size' ]; |
|
482 | 482 | $total = $this->getTotalEntries(); |
483 | 483 | |
484 | 484 | if ( empty( $total ) ) { |
@@ -499,7 +499,7 @@ discard block |
||
499 | 499 | */ |
500 | 500 | list( $first, $last, $total ) = apply_filters( 'gravityview_pagination_counts', array( $first, $last, $total ) ); |
501 | 501 | |
502 | - return array( 'first' => (int) $first, 'last' => (int) $last, 'total' => (int) $total ); |
|
502 | + return array( 'first' => (int)$first, 'last' => (int)$last, 'total' => (int)$total ); |
|
503 | 503 | } |
504 | 504 | |
505 | 505 | /** |
@@ -595,16 +595,16 @@ discard block |
||
595 | 595 | */ |
596 | 596 | public function getCurrentEntry() { |
597 | 597 | |
598 | - if( in_array( $this->getContext(), array( 'edit', 'single') ) ) { |
|
598 | + if ( in_array( $this->getContext(), array( 'edit', 'single' ) ) ) { |
|
599 | 599 | $entries = $this->getEntries(); |
600 | - $entry = $entries[0]; |
|
600 | + $entry = $entries[ 0 ]; |
|
601 | 601 | } else { |
602 | 602 | $entry = $this->_current_entry; |
603 | 603 | } |
604 | 604 | |
605 | 605 | /** @since 1.16 Fixes DataTables empty entry issue */ |
606 | - if ( empty( $entry ) && ! empty( $this->_current_field['entry'] ) ) { |
|
607 | - $entry = $this->_current_field['entry']; |
|
606 | + if ( empty( $entry ) && ! empty( $this->_current_field[ 'entry' ] ) ) { |
|
607 | + $entry = $this->_current_field[ 'entry' ]; |
|
608 | 608 | } |
609 | 609 | |
610 | 610 | return $entry; |
@@ -644,7 +644,7 @@ discard block |
||
644 | 644 | public function renderZone( $zone = '', $atts = array(), $echo = true ) { |
645 | 645 | |
646 | 646 | if ( empty( $zone ) ) { |
647 | - gravityview()->log->error( 'No zone defined.'); |
|
647 | + gravityview()->log->error( 'No zone defined.' ); |
|
648 | 648 | return NULL; |
649 | 649 | } |
650 | 650 | |
@@ -653,16 +653,16 @@ discard block |
||
653 | 653 | 'context' => $this->getContext(), |
654 | 654 | 'entry' => $this->getCurrentEntry(), |
655 | 655 | 'form' => $this->getForm(), |
656 | - 'hide_empty' => $this->getAtts('hide_empty'), |
|
656 | + 'hide_empty' => $this->getAtts( 'hide_empty' ), |
|
657 | 657 | ); |
658 | 658 | |
659 | 659 | $final_atts = wp_parse_args( $atts, $defaults ); |
660 | 660 | |
661 | 661 | $output = ''; |
662 | 662 | |
663 | - $final_atts['zone_id'] = "{$final_atts['context']}_{$final_atts['slug']}-{$zone}"; |
|
663 | + $final_atts[ 'zone_id' ] = "{$final_atts[ 'context' ]}_{$final_atts[ 'slug' ]}-{$zone}"; |
|
664 | 664 | |
665 | - $fields = $this->getField( $final_atts['zone_id'] ); |
|
665 | + $fields = $this->getField( $final_atts[ 'zone_id' ] ); |
|
666 | 666 | |
667 | 667 | // Backward compatibility |
668 | 668 | if ( 'table' === $this->getTemplatePartSlug() ) { |
@@ -672,19 +672,19 @@ discard block |
||
672 | 672 | * @param \GravityView_View $this |
673 | 673 | * @deprecated Use `gravityview/template/table/fields` |
674 | 674 | */ |
675 | - $fields = apply_filters("gravityview_table_cells", $fields, $this ); |
|
675 | + $fields = apply_filters( "gravityview_table_cells", $fields, $this ); |
|
676 | 676 | } |
677 | 677 | |
678 | 678 | if ( empty( $fields ) ) { |
679 | 679 | |
680 | - gravityview()->log->error( 'Empty zone configuration for {zone_id}.', array( 'zone_id' => $final_atts['zone_id'] ) ); |
|
680 | + gravityview()->log->error( 'Empty zone configuration for {zone_id}.', array( 'zone_id' => $final_atts[ 'zone_id' ] ) ); |
|
681 | 681 | |
682 | 682 | return NULL; |
683 | 683 | } |
684 | 684 | |
685 | 685 | $field_output = ''; |
686 | 686 | foreach ( $fields as $field ) { |
687 | - $final_atts['field'] = $field; |
|
687 | + $final_atts[ 'field' ] = $field; |
|
688 | 688 | |
689 | 689 | $field_output .= gravityview_field_output( $final_atts ); |
690 | 690 | } |
@@ -701,17 +701,17 @@ discard block |
||
701 | 701 | return NULL; |
702 | 702 | } |
703 | 703 | |
704 | - if( !empty( $final_atts['wrapper_class'] ) ) { |
|
705 | - $output .= '<div class="'.gravityview_sanitize_html_class( $final_atts['wrapper_class'] ).'">'; |
|
704 | + if ( ! empty( $final_atts[ 'wrapper_class' ] ) ) { |
|
705 | + $output .= '<div class="' . gravityview_sanitize_html_class( $final_atts[ 'wrapper_class' ] ) . '">'; |
|
706 | 706 | } |
707 | 707 | |
708 | 708 | $output .= $field_output; |
709 | 709 | |
710 | - if( !empty( $final_atts['wrapper_class'] ) ) { |
|
710 | + if ( ! empty( $final_atts[ 'wrapper_class' ] ) ) { |
|
711 | 711 | $output .= '</div>'; |
712 | 712 | } |
713 | 713 | |
714 | - if( $echo ) { |
|
714 | + if ( $echo ) { |
|
715 | 715 | echo $output; |
716 | 716 | } |
717 | 717 | |
@@ -729,7 +729,7 @@ discard block |
||
729 | 729 | */ |
730 | 730 | function locate_template( $template_names, $load = false, $require_once = true ) { |
731 | 731 | |
732 | - if( is_string( $template_names ) && isset( $this->located_templates[ $template_names ] ) ) { |
|
732 | + if ( is_string( $template_names ) && isset( $this->located_templates[ $template_names ] ) ) { |
|
733 | 733 | |
734 | 734 | $located = $this->located_templates[ $template_names ]; |
735 | 735 | |
@@ -738,7 +738,7 @@ discard block |
||
738 | 738 | // Set $load to always false so we handle it here. |
739 | 739 | $located = parent::locate_template( $template_names, false, $require_once ); |
740 | 740 | |
741 | - if( is_string( $template_names ) ) { |
|
741 | + if ( is_string( $template_names ) ) { |
|
742 | 742 | $this->located_templates[ $template_names ] = $located; |
743 | 743 | } |
744 | 744 | } |
@@ -756,7 +756,7 @@ discard block |
||
756 | 756 | * @return mixed|null The stored data. |
757 | 757 | */ |
758 | 758 | public function __get( $name ) { |
759 | - if( isset( $this->{$name} ) ) { |
|
759 | + if ( isset( $this->{$name} ) ) { |
|
760 | 760 | return $this->{$name}; |
761 | 761 | } else { |
762 | 762 | return NULL; |
@@ -785,17 +785,17 @@ discard block |
||
785 | 785 | $additional = array(); |
786 | 786 | |
787 | 787 | // form-19-table-body.php |
788 | - $additional[] = sprintf( 'form-%d-%s-%s.php', $this->getFormId(), $slug, $name ); |
|
788 | + $additional[ ] = sprintf( 'form-%d-%s-%s.php', $this->getFormId(), $slug, $name ); |
|
789 | 789 | |
790 | - if( $view_id = $this->getViewId() ) { |
|
790 | + if ( $view_id = $this->getViewId() ) { |
|
791 | 791 | // view-3-table-body.php |
792 | - $additional[] = sprintf( 'view-%d-%s-%s.php', $view_id, $slug, $name ); |
|
792 | + $additional[ ] = sprintf( 'view-%d-%s-%s.php', $view_id, $slug, $name ); |
|
793 | 793 | } |
794 | 794 | |
795 | - if( $this->getPostId() ) { |
|
795 | + if ( $this->getPostId() ) { |
|
796 | 796 | |
797 | 797 | // page-19-table-body.php |
798 | - $additional[] = sprintf( 'page-%d-%s-%s.php', $this->getPostId(), $slug, $name ); |
|
798 | + $additional[ ] = sprintf( 'page-%d-%s-%s.php', $this->getPostId(), $slug, $name ); |
|
799 | 799 | } |
800 | 800 | |
801 | 801 | // Combine with existing table-body.php and table.php |
@@ -817,7 +817,7 @@ discard block |
||
817 | 817 | |
818 | 818 | gravityview()->log->debug( 'Rendering Template File: {path}', array( 'path' => $template_file ) ); |
819 | 819 | |
820 | - if( !empty( $template_file) ) { |
|
820 | + if ( ! empty( $template_file ) ) { |
|
821 | 821 | |
822 | 822 | if ( $require_once ) { |
823 | 823 | require_once( $template_file ); |
@@ -892,7 +892,7 @@ discard block |
||
892 | 892 | |
893 | 893 | // Prevent being called twice |
894 | 894 | if ( did_action( "gravityview/widgets/$zone/{$view->ID}/rendered" ) ) { |
895 | - gravityview()->log->debug( 'Not rendering {zone}; already rendered', array( 'zone' => $zone.'_'.$view->ID.'_widgets' ) ); |
|
895 | + gravityview()->log->debug( 'Not rendering {zone}; already rendered', array( 'zone' => $zone . '_' . $view->ID . '_widgets' ) ); |
|
896 | 896 | return; |
897 | 897 | } |
898 | 898 | |
@@ -914,7 +914,7 @@ discard block |
||
914 | 914 | * @param string $zone Current widget zone, either `header` or `footer` |
915 | 915 | * @param array $widgets Array of widget configurations for the current zone, as set by `gravityview_get_current_view_data()['widgets']` |
916 | 916 | */ |
917 | - $css_class = apply_filters('gravityview/widgets/wrapper_css_class', $default_css_class, $zone, $widgets->as_configuration() ); |
|
917 | + $css_class = apply_filters( 'gravityview/widgets/wrapper_css_class', $default_css_class, $zone, $widgets->as_configuration() ); |
|
918 | 918 | |
919 | 919 | $css_class = gravityview_sanitize_html_class( $css_class ); |
920 | 920 | |
@@ -922,15 +922,15 @@ discard block |
||
922 | 922 | ?> |
923 | 923 | <div class="<?php echo $css_class; ?>"> |
924 | 924 | <?php |
925 | - foreach( $rows as $row ) { |
|
926 | - foreach( $row as $col => $areas ) { |
|
925 | + foreach ( $rows as $row ) { |
|
926 | + foreach ( $row as $col => $areas ) { |
|
927 | 927 | $column = ( $col == '2-2' ) ? '1-2 gv-right' : "$col gv-left"; |
928 | 928 | ?> |
929 | 929 | <div class="gv-grid-col-<?php echo esc_attr( $column ); ?>"> |
930 | 930 | <?php |
931 | 931 | if ( ! empty( $areas ) ) { |
932 | 932 | foreach ( $areas as $area ) { |
933 | - foreach ( $widgets->by_position( $zone . '_' . $area['areaid'] )->all() as $widget ) { |
|
933 | + foreach ( $widgets->by_position( $zone . '_' . $area[ 'areaid' ] )->all() as $widget ) { |
|
934 | 934 | do_action( sprintf( 'gravityview/widgets/%s/render', $widget->get_widget_id() ), $widget->configuration->all(), null, $view_id_or_context ); |
935 | 935 | } |
936 | 936 | } |
@@ -28,18 +28,18 @@ |
||
28 | 28 | |
29 | 29 | $sort_fields_input = '<select name="template_settings[sort_field][]" class="gravityview_sort_field" id="gravityview_sort_field_%d">%s</select>'; |
30 | 30 | |
31 | - if ( is_array( $current_settings['sort_field'] ) ) { |
|
32 | - $primary_sort_fields = gravityview_get_sortable_fields( $curr_form, $current_settings['sort_field'][0] ); |
|
33 | - $secondary_sort_fields = gravityview_get_sortable_fields( $curr_form, $current_settings['sort_field'][1] ); |
|
31 | + if ( is_array( $current_settings[ 'sort_field' ] ) ) { |
|
32 | + $primary_sort_fields = gravityview_get_sortable_fields( $curr_form, $current_settings[ 'sort_field' ][ 0 ] ); |
|
33 | + $secondary_sort_fields = gravityview_get_sortable_fields( $curr_form, $current_settings[ 'sort_field' ][ 1 ] ); |
|
34 | 34 | } else { |
35 | - $primary_sort_fields = $secondary_sort_fields = gravityview_get_sortable_fields( $curr_form, $current_settings['sort_field'] ); |
|
35 | + $primary_sort_fields = $secondary_sort_fields = gravityview_get_sortable_fields( $curr_form, $current_settings[ 'sort_field' ] ); |
|
36 | 36 | } |
37 | 37 | |
38 | 38 | // Splice the sort direction |
39 | 39 | $_directions = array(); |
40 | 40 | foreach ( (array)\GV\Utils::get( $current_settings, 'sort_direction', array() ) as $i => $direction ) { |
41 | 41 | if ( ! $i ) { |
42 | - $_directions['sort_direction'] = $direction; |
|
42 | + $_directions[ 'sort_direction' ] = $direction; |
|
43 | 43 | } else { |
44 | 44 | $_directions[ sprintf( 'sort_direction_%d', $i + 1 ) ] = $direction; |
45 | 45 | } |
@@ -94,7 +94,7 @@ discard block |
||
94 | 94 | */ |
95 | 95 | public static function get_instance() { |
96 | 96 | |
97 | - if( empty( self::$instance ) ) { |
|
97 | + if ( empty( self::$instance ) ) { |
|
98 | 98 | self::$instance = new self; |
99 | 99 | } |
100 | 100 | |
@@ -128,9 +128,9 @@ discard block |
||
128 | 128 | |
129 | 129 | $operators = array_merge( self::$SUPPORTED_ARRAY_OPERATORS, self::$SUPPORTED_NUMERIC_OPERATORS, self::$SUPPORTED_SCALAR_OPERATORS, self::$SUPPORTED_CUSTOM_OPERATORS ); |
130 | 130 | |
131 | - if( $with_values ) { |
|
131 | + if ( $with_values ) { |
|
132 | 132 | $operators_with_values = array(); |
133 | - foreach( $operators as $key ) { |
|
133 | + foreach ( $operators as $key ) { |
|
134 | 134 | $operators_with_values[ $key ] = ''; |
135 | 135 | } |
136 | 136 | return $operators_with_values; |
@@ -149,7 +149,7 @@ discard block |
||
149 | 149 | |
150 | 150 | $operators = $this->get_operators( false ); |
151 | 151 | |
152 | - if( !in_array( $operation, $operators ) ) { |
|
152 | + if ( ! in_array( $operation, $operators ) ) { |
|
153 | 153 | gravityview()->log->debug( ' Attempted to add invalid operation type. {operation}', array( 'operation' => $operation ) ); |
154 | 154 | return false; |
155 | 155 | } |
@@ -201,7 +201,7 @@ discard block |
||
201 | 201 | return null; |
202 | 202 | } |
203 | 203 | |
204 | - if( empty( $atts ) ) { |
|
204 | + if ( empty( $atts ) ) { |
|
205 | 205 | gravityview()->log->error( '$atts are empty.', array( 'data' => $atts ) ); |
206 | 206 | return null; |
207 | 207 | } |
@@ -225,7 +225,7 @@ discard block |
||
225 | 225 | $setup = $this->setup_operation_and_comparison(); |
226 | 226 | |
227 | 227 | // We need an operation and comparison value |
228 | - if( ! $setup ) { |
|
228 | + if ( ! $setup ) { |
|
229 | 229 | gravityview()->log->error( 'No valid operators were passed.', array( 'data' => $this->atts ) ); |
230 | 230 | return null; |
231 | 231 | } |
@@ -277,7 +277,7 @@ discard block |
||
277 | 277 | $logged_in_match = ! $this->logged_in ^ is_user_logged_in(); // XNOR |
278 | 278 | |
279 | 279 | // Only logged-in match |
280 | - if( 1 === sizeof( $this->passed_atts ) ) { |
|
280 | + if ( 1 === sizeof( $this->passed_atts ) ) { |
|
281 | 281 | $this->is_match = $logged_in_match; |
282 | 282 | } else { |
283 | 283 | $this->is_match = $logged_in_match && $comparison_match; |
@@ -291,7 +291,7 @@ discard block |
||
291 | 291 | */ |
292 | 292 | private function get_output() { |
293 | 293 | |
294 | - if( $this->is_match ) { |
|
294 | + if ( $this->is_match ) { |
|
295 | 295 | $output = $this->content; |
296 | 296 | } else { |
297 | 297 | $output = $this->else_content; |
@@ -309,7 +309,7 @@ discard block |
||
309 | 309 | * @param string $output HTML/text output |
310 | 310 | * @param GVLogic_Shortcode $this This class |
311 | 311 | */ |
312 | - $output = apply_filters('gravityview/gvlogic/output', $output, $this ); |
|
312 | + $output = apply_filters( 'gravityview/gvlogic/output', $output, $this ); |
|
313 | 313 | |
314 | 314 | gravityview()->log->debug( 'Output: ', array( 'data' => $output ) ); |
315 | 315 | |
@@ -329,14 +329,14 @@ discard block |
||
329 | 329 | list( $before_else, $after_else ) = array_pad( explode( '[else]', $passed_content ), 2, NULL ); |
330 | 330 | list( $before_else_if, $after_else_if ) = array_pad( explode( '[else', $passed_content ), 2, NULL ); |
331 | 331 | |
332 | - $else_attr = isset( $this->atts['else'] ) ? $this->atts['else'] : NULL; |
|
332 | + $else_attr = isset( $this->atts[ 'else' ] ) ? $this->atts[ 'else' ] : NULL; |
|
333 | 333 | $else_content = isset( $after_else ) ? $after_else : $else_attr; |
334 | 334 | |
335 | 335 | // The content is everything OTHER than the [else] |
336 | 336 | $this->content = $before_else_if; |
337 | 337 | |
338 | 338 | if ( ! $this->is_match ) { |
339 | - if( $elseif_content = $this->process_elseif( $before_else ) ) { |
|
339 | + if ( $elseif_content = $this->process_elseif( $before_else ) ) { |
|
340 | 340 | $this->else_content = $elseif_content; |
341 | 341 | } else { |
342 | 342 | $this->else_content = $else_content; |
@@ -364,16 +364,16 @@ discard block |
||
364 | 364 | foreach ( $else_if_matches as $key => $else_if_match ) { |
365 | 365 | |
366 | 366 | // If $else_if_match[5] exists and has content, check for more shortcodes |
367 | - preg_match_all( '/' . $regex . '/', $else_if_match[5] . '[/else]', $recursive_matches, PREG_SET_ORDER ); |
|
367 | + preg_match_all( '/' . $regex . '/', $else_if_match[ 5 ] . '[/else]', $recursive_matches, PREG_SET_ORDER ); |
|
368 | 368 | |
369 | 369 | // If the logic passes, this is the value that should be used for $this->else_content |
370 | - $else_if_value = $else_if_match[5]; |
|
371 | - $check_elseif_match = $else_if_match[0]; |
|
370 | + $else_if_value = $else_if_match[ 5 ]; |
|
371 | + $check_elseif_match = $else_if_match[ 0 ]; |
|
372 | 372 | |
373 | 373 | // Retrieve the value of the match that is currently being checked, without any other [else] tags |
374 | - if( ! empty( $recursive_matches[0][0] ) ) { |
|
375 | - $else_if_value = str_replace( $recursive_matches[0][0], '', $else_if_value ); |
|
376 | - $check_elseif_match = str_replace( $recursive_matches[0][0], '', $check_elseif_match ); |
|
374 | + if ( ! empty( $recursive_matches[ 0 ][ 0 ] ) ) { |
|
375 | + $else_if_value = str_replace( $recursive_matches[ 0 ][ 0 ], '', $else_if_value ); |
|
376 | + $check_elseif_match = str_replace( $recursive_matches[ 0 ][ 0 ], '', $check_elseif_match ); |
|
377 | 377 | } |
378 | 378 | |
379 | 379 | $check_elseif_match = str_replace( '[else', '[gvlogicelse', $check_elseif_match ); |
@@ -390,7 +390,7 @@ discard block |
||
390 | 390 | } |
391 | 391 | |
392 | 392 | // Process any remaining [else] tags |
393 | - return $this->process_elseif( $else_if_match[5] ); |
|
393 | + return $this->process_elseif( $else_if_match[ 5 ] ); |
|
394 | 394 | } |
395 | 395 | |
396 | 396 | return false; |
@@ -417,11 +417,11 @@ discard block |
||
417 | 417 | $this->atts = array_intersect_key( $this->passed_atts, $this->atts ); |
418 | 418 | |
419 | 419 | // Strip whitespace if it's not default false |
420 | - $this->if = ( isset( $this->atts['if'] ) && is_string( $this->atts['if'] ) ) ? trim( $this->atts['if'] ) : false; |
|
420 | + $this->if = ( isset( $this->atts[ 'if' ] ) && is_string( $this->atts[ 'if' ] ) ) ? trim( $this->atts[ 'if' ] ) : false; |
|
421 | 421 | |
422 | - if ( isset( $this->atts['logged_in'] ) ) { |
|
422 | + if ( isset( $this->atts[ 'logged_in' ] ) ) { |
|
423 | 423 | // Truthy |
424 | - if ( in_array( strtolower( $this->atts['logged_in'] ), array( '0', 'false', 'no' ) ) ) { |
|
424 | + if ( in_array( strtolower( $this->atts[ 'logged_in' ] ), array( '0', 'false', 'no' ) ) ) { |
|
425 | 425 | $this->logged_in = false; |
426 | 426 | } else { |
427 | 427 | $this->logged_in = true; |
@@ -437,7 +437,7 @@ discard block |
||
437 | 437 | do_action( 'gravityview/gvlogic/parse_atts/after', $this ); |
438 | 438 | |
439 | 439 | // Make sure the "if" isn't processed in self::setup_operation_and_comparison() |
440 | - unset( $this->atts['if'] ); |
|
440 | + unset( $this->atts[ 'if' ] ); |
|
441 | 441 | } |
442 | 442 | } |
443 | 443 |
@@ -69,22 +69,22 @@ discard block |
||
69 | 69 | if ( is_array( $sorts ) ) { |
70 | 70 | foreach ( (array)$sorts as $key => $direction ) { |
71 | 71 | if ( $key == $context->field->ID ) { |
72 | - $sorting['key'] = $context->field->ID; |
|
73 | - $sorting['direction'] = strtolower( $direction ); |
|
72 | + $sorting[ 'key' ] = $context->field->ID; |
|
73 | + $sorting[ 'direction' ] = strtolower( $direction ); |
|
74 | 74 | break; |
75 | 75 | } |
76 | 76 | } |
77 | 77 | } else { |
78 | 78 | if ( $sorts == $context->field->ID ) { |
79 | - $sorting['key'] = $context->field->ID; |
|
80 | - $sorting['direction'] = strtolower( Utils::_GET( 'dir', '' ) ); |
|
79 | + $sorting[ 'key' ] = $context->field->ID; |
|
80 | + $sorting[ 'direction' ] = strtolower( Utils::_GET( 'dir', '' ) ); |
|
81 | 81 | } |
82 | 82 | } |
83 | 83 | } else { |
84 | 84 | foreach ( (array)$context->view->settings->get( 'sort_field', array() ) as $i => $sort_field ) { |
85 | 85 | if ( $sort_field == $context->field->ID ) { |
86 | - $sorting['key'] = $sort_field; |
|
87 | - $sorting['direction'] = strtolower( Utils::get( $directions, $i, '' ) ); |
|
86 | + $sorting[ 'key' ] = $sort_field; |
|
87 | + $sorting[ 'direction' ] = strtolower( Utils::get( $directions, $i, '' ) ); |
|
88 | 88 | break; // Only get the first sort |
89 | 89 | } |
90 | 90 | } |
@@ -100,21 +100,21 @@ discard block |
||
100 | 100 | ); |
101 | 101 | |
102 | 102 | // If we are already sorting by the current field... |
103 | - if ( ! empty( $sorting['key'] ) && (string) $sort_field_id === (string) $sorting['key'] ) { |
|
103 | + if ( ! empty( $sorting[ 'key' ] ) && (string)$sort_field_id === (string)$sorting[ 'key' ] ) { |
|
104 | 104 | |
105 | - switch( $sorting['direction'] ) { |
|
105 | + switch ( $sorting[ 'direction' ] ) { |
|
106 | 106 | // No sort |
107 | 107 | case '': |
108 | - $sort_args[1] = 'asc'; |
|
108 | + $sort_args[ 1 ] = 'asc'; |
|
109 | 109 | $class .= ' gv-icon-caret-up-down'; |
110 | 110 | break; |
111 | 111 | case 'desc': |
112 | - $sort_args[1] = ''; |
|
112 | + $sort_args[ 1 ] = ''; |
|
113 | 113 | $class .= ' gv-icon-sort-asc'; |
114 | 114 | break; |
115 | 115 | case 'asc': |
116 | 116 | default: |
117 | - $sort_args[1] = 'desc'; |
|
117 | + $sort_args[ 1 ] = 'desc'; |
|
118 | 118 | $class .= ' gv-icon-sort-desc'; |
119 | 119 | break; |
120 | 120 | } |
@@ -127,15 +127,15 @@ discard block |
||
127 | 127 | $url = remove_query_arg( 'sort', $url ); |
128 | 128 | $multisort_url = self::_get_multisort_url( $url, $sort_args, $context->field->ID ); |
129 | 129 | |
130 | - $url = add_query_arg( $sort_args[0], $sort_args[1], $url ); |
|
130 | + $url = add_query_arg( $sort_args[ 0 ], $sort_args[ 1 ], $url ); |
|
131 | 131 | |
132 | - $return = '<a href="'. esc_url_raw( $url ) .'"'; |
|
132 | + $return = '<a href="' . esc_url_raw( $url ) . '"'; |
|
133 | 133 | |
134 | 134 | if ( ! empty( $multisort_url ) ) { |
135 | - $return .= ' data-multisort-href="'. esc_url_raw( $multisort_url ) . '"'; |
|
135 | + $return .= ' data-multisort-href="' . esc_url_raw( $multisort_url ) . '"'; |
|
136 | 136 | } |
137 | 137 | |
138 | - $return .= ' class="'. $class .'" ></a> '. $column_label; |
|
138 | + $return .= ' class="' . $class . '" ></a> ' . $column_label; |
|
139 | 139 | |
140 | 140 | return $return; |
141 | 141 | } |
@@ -168,19 +168,19 @@ discard block |
||
168 | 168 | if ( ! in_array( $field_id, $keys = array_keys( $sorts ) ) ) { |
169 | 169 | if ( count( $keys ) ) { |
170 | 170 | $multisort_url = add_query_arg( sprintf( 'sort[%s]', end( $keys ) ), $sorts[ end( $keys ) ], $multisort_url ); |
171 | - $multisort_url = add_query_arg( $sort_args[0], $sort_args[1], $multisort_url ); |
|
171 | + $multisort_url = add_query_arg( $sort_args[ 0 ], $sort_args[ 1 ], $multisort_url ); |
|
172 | 172 | } else { |
173 | - $multisort_url = add_query_arg( $sort_args[0], $sort_args[1], $multisort_url ); |
|
173 | + $multisort_url = add_query_arg( $sort_args[ 0 ], $sort_args[ 1 ], $multisort_url ); |
|
174 | 174 | } |
175 | 175 | } |
176 | 176 | // Otherwise, we are just updating the sort order |
177 | 177 | else { |
178 | 178 | |
179 | 179 | // Pass empty value to unset |
180 | - if( '' === $sort_args[1] ) { |
|
180 | + if ( '' === $sort_args[ 1 ] ) { |
|
181 | 181 | unset( $sorts[ $field_id ] ); |
182 | 182 | } else { |
183 | - $sorts[ $field_id ] = $sort_args[1]; |
|
183 | + $sorts[ $field_id ] = $sort_args[ 1 ]; |
|
184 | 184 | } |
185 | 185 | |
186 | 186 | $multisort_url = add_query_arg( array( 'sort' => $sorts ), $multisort_url ); |
@@ -318,9 +318,9 @@ discard block |
||
318 | 318 | do_action( 'gravityview_table_cells_before', \GravityView_View::getInstance() ); |
319 | 319 | |
320 | 320 | foreach ( $fields->all() as $field ) { |
321 | - if ( isset( $this->view->unions[ $entry['form_id'] ] ) ) { |
|
322 | - if ( isset( $this->view->unions[ $entry['form_id'] ][ $field->ID ] ) ) { |
|
323 | - $field = $this->view->unions[ $entry['form_id'] ][ $field->ID ]; |
|
321 | + if ( isset( $this->view->unions[ $entry[ 'form_id' ] ] ) ) { |
|
322 | + if ( isset( $this->view->unions[ $entry[ 'form_id' ] ][ $field->ID ] ) ) { |
|
323 | + $field = $this->view->unions[ $entry[ 'form_id' ] ][ $field->ID ]; |
|
324 | 324 | } else { |
325 | 325 | if ( ! $field instanceof Internal_Field ) { |
326 | 326 | $field = Internal_Field::from_configuration( array( 'id' => 'custom' ) ); |
@@ -60,8 +60,8 @@ discard block |
||
60 | 60 | |
61 | 61 | if ( 'address' === \GV\Utils::get( $search_field, 'type' ) ) { |
62 | 62 | |
63 | - $field_id = intval( floor( $search_field['key'] ) ); |
|
64 | - $input_id = gravityview_get_input_id_from_id( $search_field['key'] ); |
|
63 | + $field_id = intval( floor( $search_field[ 'key' ] ) ); |
|
64 | + $input_id = gravityview_get_input_id_from_id( $search_field[ 'key' ] ); |
|
65 | 65 | $form = GravityView_View::getInstance()->getForm(); |
66 | 66 | |
67 | 67 | /** @var GF_Field_Address $address_field */ |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | $choices = array(); |
71 | 71 | |
72 | 72 | $method_name = 'get_choices_' . self::get_input_type_from_input_id( $input_id ); |
73 | - if( method_exists( $this, $method_name ) ) { |
|
73 | + if ( method_exists( $this, $method_name ) ) { |
|
74 | 74 | /** |
75 | 75 | * @uses GravityView_Field_Address::get_choices_country() |
76 | 76 | * @uses GravityView_Field_Address::get_choices_state() |
@@ -78,12 +78,12 @@ discard block |
||
78 | 78 | $choices = $this->{$method_name}( $address_field, $form ); |
79 | 79 | } |
80 | 80 | |
81 | - if( ! empty( $choices ) ) { |
|
82 | - $search_field['choices'] = $choices; |
|
83 | - $search_field['type'] = \GV\Utils::get( $search_field, 'input'); |
|
81 | + if ( ! empty( $choices ) ) { |
|
82 | + $search_field[ 'choices' ] = $choices; |
|
83 | + $search_field[ 'type' ] = \GV\Utils::get( $search_field, 'input' ); |
|
84 | 84 | } else { |
85 | - $search_field['type'] = 'text'; |
|
86 | - $search_field['input'] = 'input_text'; |
|
85 | + $search_field[ 'type' ] = 'text'; |
|
86 | + $search_field[ 'input' ] = 'input_text'; |
|
87 | 87 | } |
88 | 88 | } |
89 | 89 | } |
@@ -109,7 +109,7 @@ discard block |
||
109 | 109 | $country_choices = array(); |
110 | 110 | |
111 | 111 | foreach ( $countries as $key => $country ) { |
112 | - $country_choices[] = array( |
|
112 | + $country_choices[ ] = array( |
|
113 | 113 | 'value' => $country, |
114 | 114 | 'text' => $country, |
115 | 115 | ); |
@@ -134,7 +134,7 @@ discard block |
||
134 | 134 | */ |
135 | 135 | private function get_choices_state( $address_field, $form ) { |
136 | 136 | |
137 | - $address_type = empty( $address_field->addressType ) ? $address_field->get_default_address_type( $form['id'] ) : $address_field->addressType; |
|
137 | + $address_type = empty( $address_field->addressType ) ? $address_field->get_default_address_type( $form[ 'id' ] ) : $address_field->addressType; |
|
138 | 138 | |
139 | 139 | $state_choices = array(); |
140 | 140 | |
@@ -146,8 +146,8 @@ discard block |
||
146 | 146 | $states = GFCommon::get_canadian_provinces(); |
147 | 147 | break; |
148 | 148 | default: |
149 | - $address_types = $address_field->get_address_types( $form['id'] ); |
|
150 | - $states = empty( $address_types[ $address_type ]['states'] ) ? array() : $address_types[ $address_type ]['states']; |
|
149 | + $address_types = $address_field->get_address_types( $form[ 'id' ] ); |
|
150 | + $states = empty( $address_types[ $address_type ][ 'states' ] ) ? array() : $address_types[ $address_type ][ 'states' ]; |
|
151 | 151 | break; |
152 | 152 | } |
153 | 153 | |
@@ -156,19 +156,19 @@ discard block |
||
156 | 156 | $state_subchoices = array(); |
157 | 157 | |
158 | 158 | foreach ( $state as $key => $substate ) { |
159 | - $state_subchoices[] = array( |
|
159 | + $state_subchoices[ ] = array( |
|
160 | 160 | 'value' => is_numeric( $key ) ? $substate : $key, |
161 | 161 | 'text' => $substate, |
162 | 162 | ); |
163 | 163 | } |
164 | 164 | |
165 | - $state_choices[] = array( |
|
165 | + $state_choices[ ] = array( |
|
166 | 166 | 'text' => $key, |
167 | 167 | 'value' => $state_subchoices, |
168 | 168 | ); |
169 | 169 | |
170 | 170 | } else { |
171 | - $state_choices[] = array( |
|
171 | + $state_choices[ ] = array( |
|
172 | 172 | 'value' => is_numeric( $key ) ? $state : $key, |
173 | 173 | 'text' => $state, |
174 | 174 | ); |
@@ -192,13 +192,13 @@ discard block |
||
192 | 192 | // Use the same inputs as the "text" input type allows |
193 | 193 | $text_inputs = \GV\Utils::get( $input_types, 'text' ); |
194 | 194 | |
195 | - $input_types['street'] = $text_inputs; |
|
196 | - $input_types['street2'] = $text_inputs; |
|
197 | - $input_types['city'] = $text_inputs; |
|
195 | + $input_types[ 'street' ] = $text_inputs; |
|
196 | + $input_types[ 'street2' ] = $text_inputs; |
|
197 | + $input_types[ 'city' ] = $text_inputs; |
|
198 | 198 | |
199 | - $input_types['state'] = array( 'select', 'radio', 'link' ) + $text_inputs; |
|
200 | - $input_types['zip'] = array( 'input_text' ); |
|
201 | - $input_types['country'] = array( 'select', 'radio', 'link' ) + $text_inputs; |
|
199 | + $input_types[ 'state' ] = array( 'select', 'radio', 'link' ) + $text_inputs; |
|
200 | + $input_types[ 'zip' ] = array( 'input_text' ); |
|
201 | + $input_types[ 'country' ] = array( 'select', 'radio', 'link' ) + $text_inputs; |
|
202 | 202 | |
203 | 203 | return $input_types; |
204 | 204 | } |
@@ -219,10 +219,10 @@ discard block |
||
219 | 219 | // Is this search field for an input (eg: 4.2) or the whole address field (eg: 4)? |
220 | 220 | $input_id = gravityview_get_input_id_from_id( $field_id ); |
221 | 221 | |
222 | - if( 'address' === $field_type && $input_id ) { |
|
222 | + if ( 'address' === $field_type && $input_id ) { |
|
223 | 223 | |
224 | 224 | // If the input ID matches an expected address input, set to that. Otherwise, keep existing input type. |
225 | - if( $address_field_name = self::get_input_type_from_input_id( $input_id ) ) { |
|
225 | + if ( $address_field_name = self::get_input_type_from_input_id( $input_id ) ) { |
|
226 | 226 | $input_type = $address_field_name; |
227 | 227 | } |
228 | 228 | } |
@@ -271,20 +271,20 @@ discard block |
||
271 | 271 | function field_options( $field_options, $template_id = '', $field_id = '', $context = '', $input_type = '' ) { |
272 | 272 | |
273 | 273 | // If this is NOT the full address field, return default options. |
274 | - if( floor( $field_id ) !== floatval( $field_id ) ) { |
|
274 | + if ( floor( $field_id ) !== floatval( $field_id ) ) { |
|
275 | 275 | return $field_options; |
276 | 276 | } |
277 | 277 | |
278 | - if( 'edit' === $context ) { |
|
278 | + if ( 'edit' === $context ) { |
|
279 | 279 | return $field_options; |
280 | 280 | } |
281 | 281 | |
282 | 282 | $add_options = array(); |
283 | 283 | |
284 | - $add_options['show_map_link'] = array( |
|
284 | + $add_options[ 'show_map_link' ] = array( |
|
285 | 285 | 'type' => 'checkbox', |
286 | 286 | 'label' => __( 'Show Map Link:', 'gravityview' ), |
287 | - 'desc' => __('Display a "Map It" link below the address', 'gravityview'), |
|
287 | + 'desc' => __( 'Display a "Map It" link below the address', 'gravityview' ), |
|
288 | 288 | 'value' => true, |
289 | 289 | 'merge_tags' => false, |
290 | 290 | ); |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | /** gf_entries page - entries table screen */ |
45 | 45 | |
46 | 46 | // capture bulk actions |
47 | - add_action( 'gform_loaded', array( $this, 'process_bulk_action') ); |
|
47 | + add_action( 'gform_loaded', array( $this, 'process_bulk_action' ) ); |
|
48 | 48 | |
49 | 49 | // add hidden field with approve status |
50 | 50 | add_action( 'gform_entries_first_column_actions', array( $this, 'add_entry_approved_hidden_input' ), 1, 5 ); |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | add_filter( 'gravityview/metaboxes/tooltips', array( $this, 'tooltips' ) ); |
53 | 53 | |
54 | 54 | // adding styles and scripts |
55 | - add_action( 'admin_enqueue_scripts', array( $this, 'add_scripts_and_styles') ); |
|
55 | + add_action( 'admin_enqueue_scripts', array( $this, 'add_scripts_and_styles' ) ); |
|
56 | 56 | // bypass Gravity Forms no-conflict mode |
57 | 57 | add_filter( 'gform_noconflict_scripts', array( $this, 'register_gform_noconflict_script' ) ); |
58 | 58 | add_filter( 'gform_noconflict_styles', array( $this, 'register_gform_noconflict_style' ) ); |
@@ -81,7 +81,7 @@ discard block |
||
81 | 81 | * @param bool $show_filter_links True: show the "approved"/"disapproved" filter links. False: hide them. |
82 | 82 | * @param array $form GF Form object of current form |
83 | 83 | */ |
84 | - if( false === apply_filters( 'gravityview/approve_entries/show_filter_links_entry_list', true, $form ) ) { |
|
84 | + if ( false === apply_filters( 'gravityview/approve_entries/show_filter_links_entry_list', true, $form ) ) { |
|
85 | 85 | return $filter_links; |
86 | 86 | } |
87 | 87 | |
@@ -109,27 +109,27 @@ discard block |
||
109 | 109 | $approved_count = $disapproved_count = $unapproved_count = 0; |
110 | 110 | |
111 | 111 | // Only count if necessary |
112 | - if( $include_counts ) { |
|
113 | - $approved_count = count( gravityview_get_entry_ids( $form['id'], array( 'status' => 'active', 'field_filters' => $field_filters_approved ) ) ); |
|
114 | - $disapproved_count = count( gravityview_get_entry_ids( $form['id'], array( 'status' => 'active', 'field_filters' => $field_filters_disapproved ) ) ); |
|
115 | - $unapproved_count = count( gravityview_get_entry_ids( $form['id'], array( 'status' => 'active', 'field_filters' => $field_filters_unapproved ) ) ); |
|
112 | + if ( $include_counts ) { |
|
113 | + $approved_count = count( gravityview_get_entry_ids( $form[ 'id' ], array( 'status' => 'active', 'field_filters' => $field_filters_approved ) ) ); |
|
114 | + $disapproved_count = count( gravityview_get_entry_ids( $form[ 'id' ], array( 'status' => 'active', 'field_filters' => $field_filters_disapproved ) ) ); |
|
115 | + $unapproved_count = count( gravityview_get_entry_ids( $form[ 'id' ], array( 'status' => 'active', 'field_filters' => $field_filters_unapproved ) ) ); |
|
116 | 116 | } |
117 | 117 | |
118 | - $filter_links[] = array( |
|
118 | + $filter_links[ ] = array( |
|
119 | 119 | 'id' => 'gv_approved', |
120 | 120 | 'field_filters' => $field_filters_approved, |
121 | 121 | 'count' => $approved_count, |
122 | 122 | 'label' => GravityView_Entry_Approval_Status::get_label( GravityView_Entry_Approval_Status::APPROVED ), |
123 | 123 | ); |
124 | 124 | |
125 | - $filter_links[] = array( |
|
125 | + $filter_links[ ] = array( |
|
126 | 126 | 'id' => 'gv_disapproved', |
127 | 127 | 'field_filters' => $field_filters_disapproved, |
128 | 128 | 'count' => $disapproved_count, |
129 | 129 | 'label' => GravityView_Entry_Approval_Status::get_label( GravityView_Entry_Approval_Status::DISAPPROVED ), |
130 | 130 | ); |
131 | 131 | |
132 | - $filter_links[] = array( |
|
132 | + $filter_links[ ] = array( |
|
133 | 133 | 'id' => 'gv_unapproved', |
134 | 134 | 'field_filters' => $field_filters_unapproved, |
135 | 135 | 'count' => $unapproved_count, |
@@ -148,9 +148,9 @@ discard block |
||
148 | 148 | */ |
149 | 149 | function tooltips( $tooltips ) { |
150 | 150 | |
151 | - $tooltips['form_gravityview_fields'] = array( |
|
152 | - 'title' => __('GravityView Fields', 'gravityview'), |
|
153 | - 'value' => __( 'Allow administrators to approve or reject entries and users to opt-in or opt-out of their entries being displayed.', 'gravityview'), |
|
151 | + $tooltips[ 'form_gravityview_fields' ] = array( |
|
152 | + 'title' => __( 'GravityView Fields', 'gravityview' ), |
|
153 | + 'value' => __( 'Allow administrators to approve or reject entries and users to opt-in or opt-out of their entries being displayed.', 'gravityview' ), |
|
154 | 154 | ); |
155 | 155 | |
156 | 156 | return $tooltips; |
@@ -261,7 +261,7 @@ discard block |
||
261 | 261 | |
262 | 262 | $gv_bulk_action = false; |
263 | 263 | |
264 | - if( version_compare( GFForms::$version, '2.0', '>=' ) ) { |
|
264 | + if ( version_compare( GFForms::$version, '2.0', '>=' ) ) { |
|
265 | 265 | $bulk_action = ( '-1' !== \GV\Utils::_POST( 'action' ) ) ? \GV\Utils::_POST( 'action' ) : \GV\Utils::_POST( 'action2' ); |
266 | 266 | } else { |
267 | 267 | // GF 1.9.x - Bulk action 2 is the bottom bulk action select form. |
@@ -269,7 +269,7 @@ discard block |
||
269 | 269 | } |
270 | 270 | |
271 | 271 | // Check the $bulk_action value against GV actions, see if they're the same. I hate strpos(). |
272 | - if( ! empty( $bulk_action ) && preg_match( '/^('. implode( '|', $this->bulk_action_prefixes ) .')/ism', $bulk_action ) ) { |
|
272 | + if ( ! empty( $bulk_action ) && preg_match( '/^(' . implode( '|', $this->bulk_action_prefixes ) . ')/ism', $bulk_action ) ) { |
|
273 | 273 | $gv_bulk_action = $bulk_action; |
274 | 274 | } |
275 | 275 | |
@@ -294,7 +294,7 @@ discard block |
||
294 | 294 | |
295 | 295 | // gforms_entry_list is the nonce that confirms we're on the right page |
296 | 296 | // gforms_update_note is sent when bulk editing entry notes. We don't want to process then. |
297 | - if ( $bulk_action && \GV\Utils::_POST( 'gforms_entry_list' ) && empty( $_POST['gforms_update_note'] ) ) { |
|
297 | + if ( $bulk_action && \GV\Utils::_POST( 'gforms_entry_list' ) && empty( $_POST[ 'gforms_update_note' ] ) ) { |
|
298 | 298 | |
299 | 299 | check_admin_referer( 'gforms_entry_list', 'gforms_entry_list' ); |
300 | 300 | |
@@ -312,13 +312,13 @@ discard block |
||
312 | 312 | } |
313 | 313 | |
314 | 314 | // All entries are set to be updated, not just the visible ones |
315 | - if ( ! empty( $_POST['all_entries'] ) ) { |
|
315 | + if ( ! empty( $_POST[ 'all_entries' ] ) ) { |
|
316 | 316 | |
317 | 317 | // Convert the current entry search into GF-formatted search criteria |
318 | 318 | $search = array( |
319 | - 'search_field' => isset( $_POST['f'] ) ? $_POST['f'][0] : 0, |
|
320 | - 'search_value' => isset( $_POST['v'][0] ) ? $_POST['v'][0] : '', |
|
321 | - 'search_operator' => isset( $_POST['o'][0] ) ? $_POST['o'][0] : 'contains', |
|
319 | + 'search_field' => isset( $_POST[ 'f' ] ) ? $_POST[ 'f' ][ 0 ] : 0, |
|
320 | + 'search_value' => isset( $_POST[ 'v' ][ 0 ] ) ? $_POST[ 'v' ][ 0 ] : '', |
|
321 | + 'search_operator' => isset( $_POST[ 'o' ][ 0 ] ) ? $_POST[ 'o' ][ 0 ] : 'contains', |
|
322 | 322 | ); |
323 | 323 | |
324 | 324 | $search_criteria = GravityView_frontend::get_search_criteria( $search, $form_id ); |
@@ -329,7 +329,7 @@ discard block |
||
329 | 329 | } else { |
330 | 330 | |
331 | 331 | // Changed from 'lead' to 'entry' in 2.0 |
332 | - $entries = isset( $_POST['lead'] ) ? $_POST['lead'] : $_POST['entry']; |
|
332 | + $entries = isset( $_POST[ 'lead' ] ) ? $_POST[ 'lead' ] : $_POST[ 'entry' ]; |
|
333 | 333 | |
334 | 334 | } |
335 | 335 | |
@@ -341,15 +341,15 @@ discard block |
||
341 | 341 | $entry_count = count( $entries ) > 1 ? sprintf( __( '%d entries', 'gravityview' ), count( $entries ) ) : __( '1 entry', 'gravityview' ); |
342 | 342 | |
343 | 343 | switch ( $approved_status ) { |
344 | - case $this->bulk_action_prefixes['approve']: |
|
344 | + case $this->bulk_action_prefixes[ 'approve' ]: |
|
345 | 345 | GravityView_Entry_Approval::update_bulk( $entries, GravityView_Entry_Approval_Status::APPROVED, $form_id ); |
346 | 346 | $this->bulk_update_message = sprintf( __( '%s approved.', 'gravityview' ), $entry_count ); |
347 | 347 | break; |
348 | - case $this->bulk_action_prefixes['unapprove']: |
|
348 | + case $this->bulk_action_prefixes[ 'unapprove' ]: |
|
349 | 349 | GravityView_Entry_Approval::update_bulk( $entries, GravityView_Entry_Approval_Status::UNAPPROVED, $form_id ); |
350 | 350 | $this->bulk_update_message = sprintf( __( '%s unapproved.', 'gravityview' ), $entry_count ); |
351 | 351 | break; |
352 | - case $this->bulk_action_prefixes['disapprove']: |
|
352 | + case $this->bulk_action_prefixes[ 'disapprove' ]: |
|
353 | 353 | GravityView_Entry_Approval::update_bulk( $entries, GravityView_Entry_Approval_Status::DISAPPROVED, $form_id ); |
354 | 354 | $this->bulk_update_message = sprintf( __( '%s disapproved.', 'gravityview' ), $entry_count ); |
355 | 355 | break; |
@@ -371,7 +371,7 @@ discard block |
||
371 | 371 | * |
372 | 372 | * @return boolean True: It worked; False: it failed |
373 | 373 | */ |
374 | - public static function update_approved( $entry_id = 0, $approved = 0, $form_id = 0, $approvedcolumn = 0) { |
|
374 | + public static function update_approved( $entry_id = 0, $approved = 0, $form_id = 0, $approvedcolumn = 0 ) { |
|
375 | 375 | return GravityView_Entry_Approval::update_approved( $entry_id, $approved, $form_id, $approvedcolumn ); |
376 | 376 | } |
377 | 377 | |
@@ -401,20 +401,20 @@ discard block |
||
401 | 401 | * |
402 | 402 | * @return void |
403 | 403 | */ |
404 | - static public function add_entry_approved_hidden_input( $form_id, $field_id, $value, $entry, $query_string ) { |
|
404 | + static public function add_entry_approved_hidden_input( $form_id, $field_id, $value, $entry, $query_string ) { |
|
405 | 405 | |
406 | - if( ! GVCommon::has_cap( 'gravityview_moderate_entries', $entry['id'] ) ) { |
|
406 | + if ( ! GVCommon::has_cap( 'gravityview_moderate_entries', $entry[ 'id' ] ) ) { |
|
407 | 407 | return; |
408 | 408 | } |
409 | 409 | |
410 | - if( empty( $entry['id'] ) ) { |
|
410 | + if ( empty( $entry[ 'id' ] ) ) { |
|
411 | 411 | return; |
412 | 412 | } |
413 | 413 | |
414 | 414 | $status_value = GravityView_Entry_Approval::get_entry_status( $entry, 'value' ); |
415 | 415 | |
416 | - if( $status_value ) { |
|
417 | - echo '<input type="hidden" class="entry_approval" id="entry_approved_'. $entry['id'] .'" value="' . esc_attr( $status_value ) . '" />'; |
|
416 | + if ( $status_value ) { |
|
417 | + echo '<input type="hidden" class="entry_approval" id="entry_approved_' . $entry[ 'id' ] . '" value="' . esc_attr( $status_value ) . '" />'; |
|
418 | 418 | } |
419 | 419 | } |
420 | 420 | |
@@ -427,10 +427,10 @@ discard block |
||
427 | 427 | */ |
428 | 428 | private function get_form_id() { |
429 | 429 | |
430 | - $form_id = GFForms::get('id'); |
|
430 | + $form_id = GFForms::get( 'id' ); |
|
431 | 431 | |
432 | 432 | // If there are no forms identified, use the first form. That's how GF does it. |
433 | - if( empty( $form_id ) && class_exists('RGFormsModel') ) { |
|
433 | + if ( empty( $form_id ) && class_exists( 'RGFormsModel' ) ) { |
|
434 | 434 | $form_id = $this->get_first_form_id(); |
435 | 435 | } |
436 | 436 | |
@@ -450,14 +450,14 @@ discard block |
||
450 | 450 | |
451 | 451 | $forms = RGFormsModel::get_forms( null, 'title' ); |
452 | 452 | |
453 | - if( ! isset( $forms[0] ) ) { |
|
453 | + if ( ! isset( $forms[ 0 ] ) ) { |
|
454 | 454 | gravityview()->log->error( 'No forms were found' ); |
455 | 455 | return 0; |
456 | 456 | } |
457 | 457 | |
458 | - $first_form = $forms[0]; |
|
458 | + $first_form = $forms[ 0 ]; |
|
459 | 459 | |
460 | - $form_id = is_object( $forms[0] ) ? $first_form->id : $first_form['id']; |
|
460 | + $form_id = is_object( $forms[ 0 ] ) ? $first_form->id : $first_form[ 'id' ]; |
|
461 | 461 | |
462 | 462 | return intval( $form_id ); |
463 | 463 | } |
@@ -465,37 +465,37 @@ discard block |
||
465 | 465 | |
466 | 466 | function add_scripts_and_styles( $hook ) { |
467 | 467 | |
468 | - if( ! class_exists( 'GFForms' ) ) { |
|
468 | + if ( ! class_exists( 'GFForms' ) ) { |
|
469 | 469 | gravityview()->log->error( 'GFForms does not exist.' ); |
470 | 470 | return; |
471 | 471 | } |
472 | 472 | |
473 | 473 | // enqueue styles & scripts gf_entries |
474 | 474 | // But only if we're on the main Entries page, not on reports pages |
475 | - if( GFForms::get_page() !== 'entry_list' ) { |
|
475 | + if ( GFForms::get_page() !== 'entry_list' ) { |
|
476 | 476 | return; |
477 | 477 | } |
478 | 478 | |
479 | 479 | $form_id = $this->get_form_id(); |
480 | 480 | |
481 | 481 | // Things are broken; no forms were found |
482 | - if( empty( $form_id ) ) { |
|
482 | + if ( empty( $form_id ) ) { |
|
483 | 483 | return; |
484 | 484 | } |
485 | 485 | |
486 | - wp_enqueue_style( 'gravityview_entries_list', plugins_url('assets/css/admin-entries-list.css', GRAVITYVIEW_FILE), array(), GravityView_Plugin::version ); |
|
486 | + wp_enqueue_style( 'gravityview_entries_list', plugins_url( 'assets/css/admin-entries-list.css', GRAVITYVIEW_FILE ), array(), GravityView_Plugin::version ); |
|
487 | 487 | |
488 | - $script_debug = (defined('SCRIPT_DEBUG') && SCRIPT_DEBUG) ? '' : '.min'; |
|
488 | + $script_debug = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min'; |
|
489 | 489 | |
490 | - wp_enqueue_script( 'gravityview_gf_entries_scripts', plugins_url('assets/js/admin-entries-list'.$script_debug.'.js', GRAVITYVIEW_FILE), array( 'jquery' ), GravityView_Plugin::version ); |
|
490 | + wp_enqueue_script( 'gravityview_gf_entries_scripts', plugins_url( 'assets/js/admin-entries-list' . $script_debug . '.js', GRAVITYVIEW_FILE ), array( 'jquery' ), GravityView_Plugin::version ); |
|
491 | 491 | |
492 | 492 | wp_enqueue_script( 'gravityview_entries_list-popper', plugins_url( 'assets/lib/tippy/popper.min.js', GRAVITYVIEW_FILE ), array(), GravityView_Plugin::version ); |
493 | 493 | wp_enqueue_script( 'gravityview_entries_list-tippy', plugins_url( 'assets/lib/tippy/tippy.min.js', GRAVITYVIEW_FILE ), array(), GravityView_Plugin::version ); |
494 | 494 | wp_enqueue_style( 'gravityview_entries_list-tippy', plugins_url( 'assets/lib/tippy/tippy.css', GRAVITYVIEW_FILE ), array(), GravityView_Plugin::version ); |
495 | 495 | |
496 | 496 | wp_localize_script( 'gravityview_gf_entries_scripts', 'gvGlobals', array( |
497 | - 'nonce' => wp_create_nonce( 'gravityview_entry_approval'), |
|
498 | - 'admin_nonce' => wp_create_nonce( 'gravityview_admin_entry_approval'), |
|
497 | + 'nonce' => wp_create_nonce( 'gravityview_entry_approval' ), |
|
498 | + 'admin_nonce' => wp_create_nonce( 'gravityview_admin_entry_approval' ), |
|
499 | 499 | 'form_id' => $form_id, |
500 | 500 | 'show_column' => (int)$this->show_approve_entry_column( $form_id ), |
501 | 501 | 'add_bulk_action' => (int)GVCommon::has_cap( 'gravityview_moderate_entries' ), |
@@ -504,10 +504,10 @@ discard block |
||
504 | 504 | 'status_unapproved' => GravityView_Entry_Approval_Status::UNAPPROVED, |
505 | 505 | 'bulk_actions' => $this->get_bulk_actions( $form_id ), |
506 | 506 | 'bulk_message' => $this->bulk_update_message, |
507 | - 'unapprove_title' => GravityView_Entry_Approval_Status::get_title_attr('unapproved'), |
|
508 | - 'approve_title' => GravityView_Entry_Approval_Status::get_title_attr('disapproved'), |
|
509 | - 'disapprove_title' => GravityView_Entry_Approval_Status::get_title_attr('approved'), |
|
510 | - 'column_title' => __( 'Show entry in directory view?', 'gravityview'), |
|
507 | + 'unapprove_title' => GravityView_Entry_Approval_Status::get_title_attr( 'unapproved' ), |
|
508 | + 'approve_title' => GravityView_Entry_Approval_Status::get_title_attr( 'disapproved' ), |
|
509 | + 'disapprove_title' => GravityView_Entry_Approval_Status::get_title_attr( 'approved' ), |
|
510 | + 'column_title' => __( 'Show entry in directory view?', 'gravityview' ), |
|
511 | 511 | 'column_link' => esc_url( $this->get_sort_link() ), |
512 | 512 | 'status_popover_template' => GravityView_Entry_Approval::get_popover_template(), |
513 | 513 | 'status_popover_placement' => GravityView_Entry_Approval::get_popover_placement(), |
@@ -551,16 +551,16 @@ discard block |
||
551 | 551 | $bulk_actions = array( |
552 | 552 | 'GravityView' => array( |
553 | 553 | array( |
554 | - 'label' => GravityView_Entry_Approval_Status::get_string('approved', 'action'), |
|
555 | - 'value' => sprintf( '%s-%d', $this->bulk_action_prefixes['approve'], $form_id ), |
|
554 | + 'label' => GravityView_Entry_Approval_Status::get_string( 'approved', 'action' ), |
|
555 | + 'value' => sprintf( '%s-%d', $this->bulk_action_prefixes[ 'approve' ], $form_id ), |
|
556 | 556 | ), |
557 | 557 | array( |
558 | - 'label' => GravityView_Entry_Approval_Status::get_string('disapproved', 'action'), |
|
559 | - 'value' => sprintf( '%s-%d', $this->bulk_action_prefixes['disapprove'], $form_id ), |
|
558 | + 'label' => GravityView_Entry_Approval_Status::get_string( 'disapproved', 'action' ), |
|
559 | + 'value' => sprintf( '%s-%d', $this->bulk_action_prefixes[ 'disapprove' ], $form_id ), |
|
560 | 560 | ), |
561 | 561 | array( |
562 | - 'label' => GravityView_Entry_Approval_Status::get_string('unapproved', 'action'), |
|
563 | - 'value' => sprintf( '%s-%d', $this->bulk_action_prefixes['unapprove'], $form_id ), |
|
562 | + 'label' => GravityView_Entry_Approval_Status::get_string( 'unapproved', 'action' ), |
|
563 | + 'value' => sprintf( '%s-%d', $this->bulk_action_prefixes[ 'unapprove' ], $form_id ), |
|
564 | 564 | ), |
565 | 565 | ), |
566 | 566 | ); |
@@ -577,13 +577,13 @@ discard block |
||
577 | 577 | // Sanitize the values, just to be sure. |
578 | 578 | foreach ( $bulk_actions as $key => $group ) { |
579 | 579 | |
580 | - if( empty( $group ) ) { |
|
580 | + if ( empty( $group ) ) { |
|
581 | 581 | continue; |
582 | 582 | } |
583 | 583 | |
584 | 584 | foreach ( $group as $i => $action ) { |
585 | - $bulk_actions[ $key ][ $i ]['label'] = esc_html( $bulk_actions[ $key ][ $i ]['label'] ); |
|
586 | - $bulk_actions[ $key ][ $i ]['value'] = esc_attr( $bulk_actions[ $key ][ $i ]['value'] ); |
|
585 | + $bulk_actions[ $key ][ $i ][ 'label' ] = esc_html( $bulk_actions[ $key ][ $i ][ 'label' ] ); |
|
586 | + $bulk_actions[ $key ][ $i ][ 'value' ] = esc_attr( $bulk_actions[ $key ][ $i ][ 'value' ] ); |
|
587 | 587 | } |
588 | 588 | } |
589 | 589 | |
@@ -608,13 +608,13 @@ discard block |
||
608 | 608 | * @since 1.7.2 |
609 | 609 | * @param boolean $hide_if_no_connections |
610 | 610 | */ |
611 | - $hide_if_no_connections = apply_filters('gravityview/approve_entries/hide-if-no-connections', false ); |
|
611 | + $hide_if_no_connections = apply_filters( 'gravityview/approve_entries/hide-if-no-connections', false ); |
|
612 | 612 | |
613 | - if( $hide_if_no_connections ) { |
|
613 | + if ( $hide_if_no_connections ) { |
|
614 | 614 | |
615 | 615 | $connected_views = gravityview_get_connected_views( $form_id ); |
616 | 616 | |
617 | - if( empty( $connected_views ) ) { |
|
617 | + if ( empty( $connected_views ) ) { |
|
618 | 618 | $show_approve_column = false; |
619 | 619 | } |
620 | 620 | } |
@@ -624,21 +624,21 @@ discard block |
||
624 | 624 | * @param boolean $show_approve_column Whether the column will be shown |
625 | 625 | * @param int $form_id The ID of the Gravity Forms form for which entries are being shown |
626 | 626 | */ |
627 | - $show_approve_column = apply_filters('gravityview/approve_entries/show-column', $show_approve_column, $form_id ); |
|
627 | + $show_approve_column = apply_filters( 'gravityview/approve_entries/show-column', $show_approve_column, $form_id ); |
|
628 | 628 | |
629 | 629 | return $show_approve_column; |
630 | 630 | } |
631 | 631 | |
632 | 632 | function register_gform_noconflict_script( $scripts ) { |
633 | - $scripts[] = 'gravityview_gf_entries_scripts'; |
|
634 | - $scripts[] = 'gravityview_entries_list-popper'; |
|
635 | - $scripts[] = 'gravityview_entries_list-tippy'; |
|
633 | + $scripts[ ] = 'gravityview_gf_entries_scripts'; |
|
634 | + $scripts[ ] = 'gravityview_entries_list-popper'; |
|
635 | + $scripts[ ] = 'gravityview_entries_list-tippy'; |
|
636 | 636 | return $scripts; |
637 | 637 | } |
638 | 638 | |
639 | 639 | function register_gform_noconflict_style( $styles ) { |
640 | - $styles[] = 'gravityview_entries_list'; |
|
641 | - $styles[] = 'gravityview_entries_list-tippy'; |
|
640 | + $styles[ ] = 'gravityview_entries_list'; |
|
641 | + $styles[ ] = 'gravityview_entries_list-tippy'; |
|
642 | 642 | return $styles; |
643 | 643 | } |
644 | 644 |
@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | |
25 | 25 | $this->label = esc_attr__( 'Approve Entries', 'gravityview' ); |
26 | 26 | |
27 | - $this->description = esc_attr__( 'Approve and reject entries from the View.', 'gravityview' ); |
|
27 | + $this->description = esc_attr__( 'Approve and reject entries from the View.', 'gravityview' ); |
|
28 | 28 | |
29 | 29 | $this->add_hooks(); |
30 | 30 | |
@@ -46,11 +46,11 @@ discard block |
||
46 | 46 | */ |
47 | 47 | function field_options( $field_options, $template_id = '', $field_id = '', $context = '', $input_type = '' ) { |
48 | 48 | |
49 | - unset( $field_options['only_loggedin'] ); |
|
49 | + unset( $field_options[ 'only_loggedin' ] ); |
|
50 | 50 | |
51 | - unset( $field_options['new_window'] ); |
|
51 | + unset( $field_options[ 'new_window' ] ); |
|
52 | 52 | |
53 | - unset( $field_options['show_as_link'] ); |
|
53 | + unset( $field_options[ 'show_as_link' ] ); |
|
54 | 54 | |
55 | 55 | return $field_options; |
56 | 56 | } |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | |
71 | 71 | add_action( 'gravityview/field/approval/load_scripts', array( $this, 'enqueue_and_localize_script' ) ); |
72 | 72 | |
73 | - add_action( 'gravityview_datatables_scripts_styles', array( $this, 'enqueue_and_localize_script' ) ); |
|
73 | + add_action( 'gravityview_datatables_scripts_styles', array( $this, 'enqueue_and_localize_script' ) ); |
|
74 | 74 | |
75 | 75 | add_filter( 'gravityview_get_entries', array( $this, 'modify_search_parameters' ), 1000 ); |
76 | 76 | |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | public function maybe_prevent_field_render( $html, $args ) { |
93 | 93 | |
94 | 94 | // If the field is `entry_approval` type but the user doesn't have the moderate entries cap, don't render. |
95 | - if( $this->name === \GV\Utils::get( $args['field'], 'id' ) && ! GVCommon::has_cap('gravityview_moderate_entries') ) { |
|
95 | + if ( $this->name === \GV\Utils::get( $args[ 'field' ], 'id' ) && ! GVCommon::has_cap( 'gravityview_moderate_entries' ) ) { |
|
96 | 96 | return ''; |
97 | 97 | } |
98 | 98 | |
@@ -122,7 +122,7 @@ discard block |
||
122 | 122 | public function modify_search_parameters( $parameters ) { |
123 | 123 | |
124 | 124 | if ( $this->name === \GV\Utils::get( $parameters, 'sorting/key' ) ) { |
125 | - $parameters['sorting']['key'] = 'is_approved'; |
|
125 | + $parameters[ 'sorting' ][ 'key' ] = 'is_approved'; |
|
126 | 126 | } |
127 | 127 | |
128 | 128 | return $parameters; |
@@ -138,7 +138,7 @@ discard block |
||
138 | 138 | function register_scripts_and_styles() { |
139 | 139 | $script_debug = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min'; |
140 | 140 | |
141 | - wp_register_script( 'gravityview-field-approval', GRAVITYVIEW_URL . 'assets/js/field-approval'.$script_debug.'.js', array( 'jquery' ), GravityView_Plugin::version, true ); |
|
141 | + wp_register_script( 'gravityview-field-approval', GRAVITYVIEW_URL . 'assets/js/field-approval' . $script_debug . '.js', array( 'jquery' ), GravityView_Plugin::version, true ); |
|
142 | 142 | |
143 | 143 | wp_register_script( 'gravityview-field-approval-popper', GRAVITYVIEW_URL . 'assets/lib/tippy/popper.min.js', array(), GravityView_Plugin::version, true ); |
144 | 144 | wp_register_script( 'gravityview-field-approval-tippy', GRAVITYVIEW_URL . 'assets/lib/tippy/tippy.min.js', array(), GravityView_Plugin::version, true ); |
@@ -146,14 +146,14 @@ discard block |
||
146 | 146 | |
147 | 147 | $style_path = GRAVITYVIEW_DIR . 'templates/css/field-approval.css'; |
148 | 148 | |
149 | - if( class_exists( 'GravityView_View' ) ) { |
|
149 | + if ( class_exists( 'GravityView_View' ) ) { |
|
150 | 150 | /** |
151 | 151 | * Override CSS file by placing in your theme's /gravityview/css/ sub-directory. |
152 | 152 | */ |
153 | 153 | $style_path = GravityView_View::getInstance()->locate_template( 'css/field-approval.css', false ); |
154 | 154 | } |
155 | 155 | |
156 | - $style_url = plugins_url( 'css/field-approval.css', trailingslashit( dirname( $style_path ) ) ); |
|
156 | + $style_url = plugins_url( 'css/field-approval.css', trailingslashit( dirname( $style_path ) ) ); |
|
157 | 157 | |
158 | 158 | /** |
159 | 159 | * @filter `gravityview/field/approval/css_url` URL to the Approval field CSS file. |
@@ -162,7 +162,7 @@ discard block |
||
162 | 162 | */ |
163 | 163 | $style_url = apply_filters( 'gravityview/field/approval/css_url', $style_url ); |
164 | 164 | |
165 | - if( ! empty( $style_url ) ) { |
|
165 | + if ( ! empty( $style_url ) ) { |
|
166 | 166 | wp_register_style( 'gravityview-field-approval', $style_url, array( 'dashicons' ), GravityView_Plugin::version, 'screen' ); |
167 | 167 | } |
168 | 168 | |
@@ -177,7 +177,7 @@ discard block |
||
177 | 177 | public function enqueue_and_localize_script() { |
178 | 178 | |
179 | 179 | // The script is already registered and enqueued |
180 | - if( wp_script_is( 'gravityview-field-approval', 'enqueued' ) ) { |
|
180 | + if ( wp_script_is( 'gravityview-field-approval', 'enqueued' ) ) { |
|
181 | 181 | return; |
182 | 182 | } |
183 | 183 | |
@@ -190,11 +190,11 @@ discard block |
||
190 | 190 | |
191 | 191 | wp_localize_script( 'gravityview-field-approval', 'gvApproval', array( |
192 | 192 | 'ajaxurl' => admin_url( 'admin-ajax.php' ), |
193 | - 'nonce' => wp_create_nonce('gravityview_entry_approval'), |
|
193 | + 'nonce' => wp_create_nonce( 'gravityview_entry_approval' ), |
|
194 | 194 | 'status' => GravityView_Entry_Approval_Status::get_all(), |
195 | 195 | 'status_popover_template' => GravityView_Entry_Approval::get_popover_template(), |
196 | 196 | 'status_popover_placement' => GravityView_Entry_Approval::get_popover_placement(), |
197 | - )); |
|
197 | + ) ); |
|
198 | 198 | |
199 | 199 | } |
200 | 200 | |
@@ -211,8 +211,8 @@ discard block |
||
211 | 211 | */ |
212 | 212 | public function filter_gravityview_entry_default_field( $entry_default_fields, $form, $context ) { |
213 | 213 | |
214 | - if ( ! isset( $entry_default_fields["{$this->name}"] ) && 'edit' !== $context ) { |
|
215 | - $entry_default_fields["{$this->name}"] = array( |
|
214 | + if ( ! isset( $entry_default_fields[ "{$this->name}" ] ) && 'edit' !== $context ) { |
|
215 | + $entry_default_fields[ "{$this->name}" ] = array( |
|
216 | 216 | 'label' => $this->label, |
217 | 217 | 'desc' => $this->description, |
218 | 218 | 'type' => $this->name, |
@@ -39,13 +39,13 @@ discard block |
||
39 | 39 | private function add_hooks() { |
40 | 40 | |
41 | 41 | // in case entry is edited (on admin or frontend) |
42 | - add_action( 'gform_after_update_entry', array( $this, 'after_update_entry_update_approved_meta' ), 10, 2); |
|
42 | + add_action( 'gform_after_update_entry', array( $this, 'after_update_entry_update_approved_meta' ), 10, 2 ); |
|
43 | 43 | |
44 | 44 | // when using the User opt-in field, check on entry submission |
45 | 45 | add_action( 'gform_after_submission', array( $this, 'after_submission' ), 10, 2 ); |
46 | 46 | |
47 | 47 | // process ajax approve entry requests |
48 | - add_action('wp_ajax_gv_update_approved', array( $this, 'ajax_update_approved')); |
|
48 | + add_action( 'wp_ajax_gv_update_approved', array( $this, 'ajax_update_approved' ) ); |
|
49 | 49 | |
50 | 50 | // autounapprove |
51 | 51 | add_action( 'gravityview/edit_entry/after_update', array( __CLASS__, 'autounapprove' ), 10, 4 ); |
@@ -94,10 +94,10 @@ discard block |
||
94 | 94 | return; |
95 | 95 | } |
96 | 96 | |
97 | - $form = GFAPI::get_form( $entry['form_id'] ); |
|
97 | + $form = GFAPI::get_form( $entry[ 'form_id' ] ); |
|
98 | 98 | |
99 | 99 | if ( ! $form ) { |
100 | - gravityview()->log->error( 'Form not found at ID #{form_id} for entry #{entry_id}', array( 'form_id' => $entry['form_id'], 'entry_id' => $entry_id ) ); |
|
100 | + gravityview()->log->error( 'Form not found at ID #{form_id} for entry #{entry_id}', array( 'form_id' => $entry[ 'form_id' ], 'entry_id' => $entry_id ) ); |
|
101 | 101 | return; |
102 | 102 | } |
103 | 103 | |
@@ -114,10 +114,10 @@ discard block |
||
114 | 114 | */ |
115 | 115 | public static function add_approval_notification_events( $notification_events = array(), $form = array() ) { |
116 | 116 | |
117 | - $notification_events['gravityview/approve_entries/approved'] = 'GravityView - ' . esc_html_x( 'Entry is approved', 'The title for an event in a notifications drop down list.', 'gravityview' ); |
|
118 | - $notification_events['gravityview/approve_entries/disapproved'] = 'GravityView - ' . esc_html_x( 'Entry is disapproved', 'The title for an event in a notifications drop down list.', 'gravityview' ); |
|
119 | - $notification_events['gravityview/approve_entries/unapproved'] = 'GravityView - ' . esc_html_x( 'Entry approval is reset', 'The title for an event in a notifications drop down list.', 'gravityview' ); |
|
120 | - $notification_events['gravityview/approve_entries/updated'] = 'GravityView - ' . esc_html_x( 'Entry approval is changed', 'The title for an event in a notifications drop down list.', 'gravityview' ); |
|
117 | + $notification_events[ 'gravityview/approve_entries/approved' ] = 'GravityView - ' . esc_html_x( 'Entry is approved', 'The title for an event in a notifications drop down list.', 'gravityview' ); |
|
118 | + $notification_events[ 'gravityview/approve_entries/disapproved' ] = 'GravityView - ' . esc_html_x( 'Entry is disapproved', 'The title for an event in a notifications drop down list.', 'gravityview' ); |
|
119 | + $notification_events[ 'gravityview/approve_entries/unapproved' ] = 'GravityView - ' . esc_html_x( 'Entry approval is reset', 'The title for an event in a notifications drop down list.', 'gravityview' ); |
|
120 | + $notification_events[ 'gravityview/approve_entries/updated' ] = 'GravityView - ' . esc_html_x( 'Entry approval is changed', 'The title for an event in a notifications drop down list.', 'gravityview' ); |
|
121 | 121 | |
122 | 122 | return $notification_events; |
123 | 123 | } |
@@ -135,13 +135,13 @@ discard block |
||
135 | 135 | */ |
136 | 136 | public static function get_entry_status( $entry, $value_or_label = 'label' ) { |
137 | 137 | |
138 | - $entry_id = is_array( $entry ) ? $entry['id'] : GVCommon::get_entry_id( $entry, true ); |
|
138 | + $entry_id = is_array( $entry ) ? $entry[ 'id' ] : GVCommon::get_entry_id( $entry, true ); |
|
139 | 139 | |
140 | 140 | $status = gform_get_meta( $entry_id, self::meta_key ); |
141 | 141 | |
142 | 142 | $status = GravityView_Entry_Approval_Status::maybe_convert_status( $status ); |
143 | 143 | |
144 | - if( 'value' === $value_or_label ) { |
|
144 | + if ( 'value' === $value_or_label ) { |
|
145 | 145 | return $status; |
146 | 146 | } |
147 | 147 | |
@@ -179,7 +179,7 @@ discard block |
||
179 | 179 | $nonce = \GV\Utils::_POST( 'nonce' ); |
180 | 180 | |
181 | 181 | // Valid status |
182 | - if( ! GravityView_Entry_Approval_Status::is_valid( $approval_status ) ) { |
|
182 | + if ( ! GravityView_Entry_Approval_Status::is_valid( $approval_status ) ) { |
|
183 | 183 | |
184 | 184 | gravityview()->log->error( 'Invalid approval status', array( 'data' => $_POST ) ); |
185 | 185 | |
@@ -210,7 +210,7 @@ discard block |
||
210 | 210 | |
211 | 211 | gravityview()->log->error( 'User does not have the `gravityview_moderate_entries` capability.' ); |
212 | 212 | |
213 | - $result = new WP_Error( 'Missing Cap: gravityview_moderate_entries', __( 'You do not have permission to edit this entry.', 'gravityview') ); |
|
213 | + $result = new WP_Error( 'Missing Cap: gravityview_moderate_entries', __( 'You do not have permission to edit this entry.', 'gravityview' ) ); |
|
214 | 214 | |
215 | 215 | } |
216 | 216 | |
@@ -272,10 +272,10 @@ discard block |
||
272 | 272 | } |
273 | 273 | |
274 | 274 | // Set default |
275 | - self::update_approved_meta( $entry['id'], $default_status, $entry['form_id'] ); |
|
275 | + self::update_approved_meta( $entry[ 'id' ], $default_status, $entry[ 'form_id' ] ); |
|
276 | 276 | |
277 | 277 | // Then check for if there is an approval column, and use that value instead |
278 | - $this->after_update_entry_update_approved_meta( $form , $entry['id'] ); |
|
278 | + $this->after_update_entry_update_approved_meta( $form, $entry[ 'id' ] ); |
|
279 | 279 | } |
280 | 280 | |
281 | 281 | /** |
@@ -289,12 +289,12 @@ discard block |
||
289 | 289 | */ |
290 | 290 | public function after_update_entry_update_approved_meta( $form, $entry_id = NULL ) { |
291 | 291 | |
292 | - $approved_column = self::get_approved_column( $form['id'] ); |
|
292 | + $approved_column = self::get_approved_column( $form[ 'id' ] ); |
|
293 | 293 | |
294 | 294 | /** |
295 | 295 | * If the form doesn't contain the approve field, don't assume anything. |
296 | 296 | */ |
297 | - if( empty( $approved_column ) ) { |
|
297 | + if ( empty( $approved_column ) ) { |
|
298 | 298 | return; |
299 | 299 | } |
300 | 300 | |
@@ -308,7 +308,7 @@ discard block |
||
308 | 308 | $value = GravityView_Entry_Approval_Status::APPROVED; |
309 | 309 | } |
310 | 310 | |
311 | - self::update_approved_meta( $entry_id, $value, $form['id'] ); |
|
311 | + self::update_approved_meta( $entry_id, $value, $form[ 'id' ] ); |
|
312 | 312 | } |
313 | 313 | |
314 | 314 | /** |
@@ -326,12 +326,12 @@ discard block |
||
326 | 326 | */ |
327 | 327 | public static function update_bulk( $entries = array(), $approved, $form_id ) { |
328 | 328 | |
329 | - if( empty($entries) || ( $entries !== true && !is_array($entries) ) ) { |
|
329 | + if ( empty( $entries ) || ( $entries !== true && ! is_array( $entries ) ) ) { |
|
330 | 330 | gravityview()->log->error( 'Entries were empty or malformed.', array( 'data' => $entries ) ); |
331 | 331 | return NULL; |
332 | 332 | } |
333 | 333 | |
334 | - if( ! GVCommon::has_cap( 'gravityview_moderate_entries' ) ) { |
|
334 | + if ( ! GVCommon::has_cap( 'gravityview_moderate_entries' ) ) { |
|
335 | 335 | gravityview()->log->error( 'User does not have the `gravityview_moderate_entries` capability.' ); |
336 | 336 | return NULL; |
337 | 337 | } |
@@ -346,10 +346,10 @@ discard block |
||
346 | 346 | $approved_column_id = self::get_approved_column( $form_id ); |
347 | 347 | |
348 | 348 | $success = true; |
349 | - foreach( $entries as $entry_id ) { |
|
349 | + foreach ( $entries as $entry_id ) { |
|
350 | 350 | $update_success = self::update_approved( (int)$entry_id, $approved, $form_id, $approved_column_id ); |
351 | 351 | |
352 | - if( ! $update_success ) { |
|
352 | + if ( ! $update_success ) { |
|
353 | 353 | $success = false; |
354 | 354 | } |
355 | 355 | } |
@@ -373,12 +373,12 @@ discard block |
||
373 | 373 | */ |
374 | 374 | public static function update_approved( $entry_id = 0, $approved = 2, $form_id = 0, $approvedcolumn = 0 ) { |
375 | 375 | |
376 | - if( !class_exists( 'GFAPI' ) ) { |
|
376 | + if ( ! class_exists( 'GFAPI' ) ) { |
|
377 | 377 | gravityview()->log->error( 'GFAPI does not exist' ); |
378 | 378 | return false; |
379 | 379 | } |
380 | 380 | |
381 | - if( ! GravityView_Entry_Approval_Status::is_valid( $approved ) ) { |
|
381 | + if ( ! GravityView_Entry_Approval_Status::is_valid( $approved ) ) { |
|
382 | 382 | gravityview()->log->error( 'Not a valid approval value.' ); |
383 | 383 | return false; |
384 | 384 | } |
@@ -395,7 +395,7 @@ discard block |
||
395 | 395 | // If the form has an Approve/Reject field, update that value |
396 | 396 | $result = self::update_approved_column( $entry_id, $approved, $form_id, $approvedcolumn ); |
397 | 397 | |
398 | - if( is_wp_error( $result ) ) { |
|
398 | + if ( is_wp_error( $result ) ) { |
|
399 | 399 | gravityview()->log->error( 'Entry approval not updated: {error}', array( 'error' => $result->get_error_message() ) ); |
400 | 400 | return false; |
401 | 401 | } |
@@ -407,7 +407,7 @@ discard block |
||
407 | 407 | |
408 | 408 | // add note to entry if approval field updating worked or there was no approved field |
409 | 409 | // There's no validation for the meta |
410 | - if( true === $result ) { |
|
410 | + if ( true === $result ) { |
|
411 | 411 | |
412 | 412 | // Add an entry note |
413 | 413 | self::add_approval_status_updated_note( $entry_id, $approved ); |
@@ -460,7 +460,7 @@ discard block |
||
460 | 460 | |
461 | 461 | $note_id = false; |
462 | 462 | |
463 | - if( $add_note && class_exists( 'GravityView_Entry_Notes' ) ) { |
|
463 | + if ( $add_note && class_exists( 'GravityView_Entry_Notes' ) ) { |
|
464 | 464 | |
465 | 465 | $current_user = wp_get_current_user(); |
466 | 466 | |
@@ -482,7 +482,7 @@ discard block |
||
482 | 482 | */ |
483 | 483 | private static function update_approved_column( $entry_id = 0, $status = '0', $form_id = 0, $approvedcolumn = 0 ) { |
484 | 484 | |
485 | - if( empty( $approvedcolumn ) ) { |
|
485 | + if ( empty( $approvedcolumn ) ) { |
|
486 | 486 | $approvedcolumn = self::get_approved_column( $form_id ); |
487 | 487 | } |
488 | 488 | |
@@ -505,12 +505,12 @@ discard block |
||
505 | 505 | $status = GravityView_Entry_Approval_Status::maybe_convert_status( $status ); |
506 | 506 | |
507 | 507 | $new_value = ''; |
508 | - if( GravityView_Entry_Approval_Status::APPROVED === $status ) { |
|
508 | + if ( GravityView_Entry_Approval_Status::APPROVED === $status ) { |
|
509 | 509 | $new_value = self::get_approved_column_input_label( $form_id, $approvedcolumn ); |
510 | 510 | } |
511 | 511 | |
512 | 512 | //update entry |
513 | - $entry["{$approvedcolumn}"] = $new_value; |
|
513 | + $entry[ "{$approvedcolumn}" ] = $new_value; |
|
514 | 514 | |
515 | 515 | /** |
516 | 516 | * Note: GFAPI::update_entry() doesn't trigger `gform_after_update_entry`, so we trigger updating the meta ourselves |
@@ -541,12 +541,12 @@ discard block |
||
541 | 541 | // If the user has enabled a different value than the label (for some reason), use it. |
542 | 542 | // This is highly unlikely |
543 | 543 | if ( is_array( $field->choices ) && ! empty( $field->choices ) ) { |
544 | - return isset( $field->choices[0]['value'] ) ? $field->choices[0]['value'] : $field->choices[0]['text']; |
|
544 | + return isset( $field->choices[ 0 ][ 'value' ] ) ? $field->choices[ 0 ][ 'value' ] : $field->choices[ 0 ][ 'text' ]; |
|
545 | 545 | } |
546 | 546 | |
547 | 547 | // Otherwise, fall back on the inputs array |
548 | 548 | if ( is_array( $field->inputs ) && ! empty( $field->inputs ) ) { |
549 | - return $field->inputs[0]['label']; |
|
549 | + return $field->inputs[ 0 ][ 'label' ]; |
|
550 | 550 | } |
551 | 551 | |
552 | 552 | return null; |
@@ -598,7 +598,7 @@ discard block |
||
598 | 598 | * @since 1.18 Added "unapproved" |
599 | 599 | * @param int $entry_id ID of the Gravity Forms entry |
600 | 600 | */ |
601 | - do_action( 'gravityview/approve_entries/' . $action , $entry_id ); |
|
601 | + do_action( 'gravityview/approve_entries/' . $action, $entry_id ); |
|
602 | 602 | } |
603 | 603 | |
604 | 604 | /** |
@@ -611,11 +611,11 @@ discard block |
||
611 | 611 | */ |
612 | 612 | static public function get_approved_column( $form ) { |
613 | 613 | |
614 | - if( empty( $form ) ) { |
|
614 | + if ( empty( $form ) ) { |
|
615 | 615 | return null; |
616 | 616 | } |
617 | 617 | |
618 | - if( !is_array( $form ) ) { |
|
618 | + if ( ! is_array( $form ) ) { |
|
619 | 619 | $form = GVCommon::get_form( $form ); |
620 | 620 | } |
621 | 621 | |
@@ -625,22 +625,22 @@ discard block |
||
625 | 625 | * @var string $key |
626 | 626 | * @var GF_Field $field |
627 | 627 | */ |
628 | - foreach( $form['fields'] as $key => $field ) { |
|
628 | + foreach ( $form[ 'fields' ] as $key => $field ) { |
|
629 | 629 | |
630 | 630 | $inputs = $field->get_entry_inputs(); |
631 | 631 | |
632 | - if( !empty( $field->gravityview_approved ) ) { |
|
633 | - if ( ! empty( $inputs ) && !empty( $inputs[0]['id'] ) ) { |
|
634 | - $approved_column_id = $inputs[0]['id']; |
|
632 | + if ( ! empty( $field->gravityview_approved ) ) { |
|
633 | + if ( ! empty( $inputs ) && ! empty( $inputs[ 0 ][ 'id' ] ) ) { |
|
634 | + $approved_column_id = $inputs[ 0 ][ 'id' ]; |
|
635 | 635 | break; |
636 | 636 | } |
637 | 637 | } |
638 | 638 | |
639 | 639 | // Note: This is just for backward compatibility from GF Directory plugin and old GV versions - when using i18n it may not work.. |
640 | - if( 'checkbox' === $field->type && ! empty( $inputs ) ) { |
|
640 | + if ( 'checkbox' === $field->type && ! empty( $inputs ) ) { |
|
641 | 641 | foreach ( $inputs as $input ) { |
642 | - if ( 'approved' === strtolower( $input['label'] ) ) { |
|
643 | - $approved_column_id = $input['id']; |
|
642 | + if ( 'approved' === strtolower( $input[ 'label' ] ) ) { |
|
643 | + $approved_column_id = $input[ 'id' ]; |
|
644 | 644 | break; |
645 | 645 | } |
646 | 646 | } |
@@ -666,7 +666,7 @@ discard block |
||
666 | 666 | |
667 | 667 | $view_keys = array_keys( $gv_data->get_views() ); |
668 | 668 | |
669 | - $view = \GV\View::by_id( $view_keys[0] ); |
|
669 | + $view = \GV\View::by_id( $view_keys[ 0 ] ); |
|
670 | 670 | |
671 | 671 | if ( ! $view->settings->get( 'unapprove_edit' ) ) { |
672 | 672 | return; |
@@ -691,11 +691,11 @@ discard block |
||
691 | 691 | return; |
692 | 692 | } |
693 | 693 | |
694 | - if( ! GravityView_Entry_Approval_Status::is_valid( $approval_status ) ) { |
|
694 | + if ( ! GravityView_Entry_Approval_Status::is_valid( $approval_status ) ) { |
|
695 | 695 | $approval_status = GravityView_Entry_Approval_Status::UNAPPROVED; |
696 | 696 | } |
697 | 697 | |
698 | - self::update_approved_meta( $entry_id, $approval_status, $form['id'] ); |
|
698 | + self::update_approved_meta( $entry_id, $approval_status, $form[ 'id' ] ); |
|
699 | 699 | } |
700 | 700 | |
701 | 701 | /** |
@@ -733,9 +733,9 @@ discard block |
||
733 | 733 | $choices = GravityView_Entry_Approval_Status::get_all(); |
734 | 734 | |
735 | 735 | return <<<TEMPLATE |
736 | -<a href="#" data-approved="{$choices['approved']['value']}" aria-role="button" aria-live="polite" class="gv-approval-toggle gv-approval-approved popover" title="{$choices['approved']['action']}"><span class="screen-reader-text">{$choices['approved']['action']}</span></a> |
|
737 | -<a href="#" data-approved="{$choices['disapproved']['value']}" aria-role="button" aria-live="polite" class="gv-approval-toggle gv-approval-disapproved popover" title="{$choices['disapproved']['action']}"><span class="screen-reader-text">{$choices['disapproved']['action']}</span></a> |
|
738 | -<a href="#" data-approved="{$choices['unapproved']['value']}" aria-role="button" aria-live="polite" class="gv-approval-toggle gv-approval-unapproved popover" title="{$choices['unapproved']['action']}"><span class="screen-reader-text">{$choices['unapproved']['action']}</span></a> |
|
736 | +<a href="#" data-approved="{$choices[ 'approved' ][ 'value' ]}" aria-role="button" aria-live="polite" class="gv-approval-toggle gv-approval-approved popover" title="{$choices[ 'approved' ][ 'action' ]}"><span class="screen-reader-text">{$choices[ 'approved' ][ 'action' ]}</span></a> |
|
737 | +<a href="#" data-approved="{$choices[ 'disapproved' ][ 'value' ]}" aria-role="button" aria-live="polite" class="gv-approval-toggle gv-approval-disapproved popover" title="{$choices[ 'disapproved' ][ 'action' ]}"><span class="screen-reader-text">{$choices[ 'disapproved' ][ 'action' ]}</span></a> |
|
738 | +<a href="#" data-approved="{$choices[ 'unapproved' ][ 'value' ]}" aria-role="button" aria-live="polite" class="gv-approval-toggle gv-approval-unapproved popover" title="{$choices[ 'unapproved' ][ 'action' ]}"><span class="screen-reader-text">{$choices[ 'unapproved' ][ 'action' ]}</span></a> |
|
739 | 739 | TEMPLATE; |
740 | 740 | } |
741 | 741 | } |
@@ -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 | $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' => $insecure_file_path, // Needs to be insecure path so WP can parse extension |
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 | /** |
@@ -230,7 +230,7 @@ discard block |
||
230 | 230 | */ |
231 | 231 | $video_settings = apply_filters( 'gravityview_video_settings', array( |
232 | 232 | 'src' => $insecure_file_path, // Needs to be insecure path so WP can parse extension |
233 | - 'class' => 'wp-video-shortcode gv-video gv-field-id-'.$field_settings['id'] |
|
233 | + 'class' => 'wp-video-shortcode gv-video gv-field-id-' . $field_settings[ 'id' ] |
|
234 | 234 | ), $context ); |
235 | 235 | |
236 | 236 | /** |
@@ -262,13 +262,13 @@ discard block |
||
262 | 262 | } else if ( in_array( $extension, array( 'jpg', 'jpeg', 'jpe', 'gif', 'png' ) ) ) { |
263 | 263 | $image_atts = array( |
264 | 264 | 'src' => $file_path, |
265 | - 'class' => 'gv-image gv-field-id-' . $field_settings['id'], |
|
266 | - 'alt' => $field_settings['label'], |
|
265 | + 'class' => 'gv-image gv-field-id-' . $field_settings[ 'id' ], |
|
266 | + 'alt' => $field_settings[ 'label' ], |
|
267 | 267 | 'width' => ( $is_single ? null : 250 ) |
268 | 268 | ); |
269 | 269 | |
270 | 270 | if ( $is_secure ) { |
271 | - $image_atts['validate_src'] = false; |
|
271 | + $image_atts[ 'validate_src' ] = false; |
|
272 | 272 | } |
273 | 273 | |
274 | 274 | /** |
@@ -283,7 +283,7 @@ discard block |
||
283 | 283 | |
284 | 284 | $image = new GravityView_Image( $image_atts ); |
285 | 285 | |
286 | - $entry_slug = GravityView_API::get_entry_slug( $entry['id'], $entry ); |
|
286 | + $entry_slug = GravityView_API::get_entry_slug( $entry[ 'id' ], $entry ); |
|
287 | 287 | |
288 | 288 | /** |
289 | 289 | * @filter `gravityview/fields/fileupload/allow_insecure_lightbox` Allow insecure links to be shown for the lighbox. |
@@ -294,7 +294,7 @@ discard block |
||
294 | 294 | */ |
295 | 295 | $override_security = apply_filters( 'gravityview/fields/fileupload/allow_insecure_lightbox', false, $file_path, $field_settings, $context ); |
296 | 296 | |
297 | - if ( $lightbox && empty( $field_settings['show_as_link'] ) && ( ! $is_secure || $override_security ) ) { |
|
297 | + if ( $lightbox && empty( $field_settings[ 'show_as_link' ] ) && ( ! $is_secure || $override_security ) ) { |
|
298 | 298 | $lightbox_link_atts = array( |
299 | 299 | 'rel' => sprintf( "%s-%s", $gv_class, $entry_slug ), |
300 | 300 | 'class' => 'thickbox', |
@@ -303,7 +303,7 @@ discard block |
||
303 | 303 | $lightbox_link_atts = apply_filters( 'gravityview/fields/fileupload/link_atts', $lightbox_link_atts, $field_compat, $context ); |
304 | 304 | |
305 | 305 | if ( $override_security ) { |
306 | - $image_atts['src'] = $insecure_file_path; |
|
306 | + $image_atts[ 'src' ] = $insecure_file_path; |
|
307 | 307 | $image = new GravityView_Image( $image_atts ); |
308 | 308 | $file_path = $insecure_file_path; |
309 | 309 | // :( a kitten died somewhere |
@@ -315,7 +315,7 @@ discard block |
||
315 | 315 | } |
316 | 316 | |
317 | 317 | // Show as link should render the image regardless. |
318 | - if ( ! empty( $field_settings['show_as_link'] ) ) { |
|
318 | + if ( ! empty( $field_settings[ 'show_as_link' ] ) ) { |
|
319 | 319 | $text = $rendered; |
320 | 320 | } |
321 | 321 | } |
@@ -332,7 +332,7 @@ discard block |
||
332 | 332 | $disable_wrapped_link = apply_filters( 'gravityview/fields/fileupload/disable_link', false, $field_compat, $context ); |
333 | 333 | |
334 | 334 | // Output textualized content where |
335 | - if ( ! $disable_wrapped_link && ( ! empty( $field_settings['link_to_file'] ) || ! empty( $field_settings['show_as_link'] ) ) ) { |
|
335 | + if ( ! $disable_wrapped_link && ( ! empty( $field_settings[ 'link_to_file' ] ) || ! empty( $field_settings[ 'show_as_link' ] ) ) ) { |
|
336 | 336 | /** |
337 | 337 | * Modify the link text (defaults to the file name) |
338 | 338 | * |
@@ -345,7 +345,7 @@ discard block |
||
345 | 345 | */ |
346 | 346 | $content = apply_filters( 'gravityview/fields/fileupload/link_content', $text, $field_compat, $context ); |
347 | 347 | |
348 | - if ( empty( $field_settings['show_as_link'] ) ) { |
|
348 | + if ( empty( $field_settings[ 'show_as_link' ] ) ) { |
|
349 | 349 | /** |
350 | 350 | * @filter `gravityview/fields/fileupload/link_atts` Modify the link attributes for a file upload field |
351 | 351 | * @param array|string $link_atts Array or attributes string |
@@ -361,7 +361,7 @@ discard block |
||
361 | 361 | $content = empty( $rendered ) ? $text : $rendered; |
362 | 362 | } |
363 | 363 | |
364 | - $output_arr[] = array( |
|
364 | + $output_arr[ ] = array( |
|
365 | 365 | 'file_path' => $file_path, |
366 | 366 | 'content' => $content |
367 | 367 | ); |