@@ -5,7 +5,9 @@ |
||
5 | 5 | */ |
6 | 6 | |
7 | 7 | // Exit if accessed directly |
8 | -if ( ! defined( 'ABSPATH' ) ) exit; |
|
8 | +if ( ! defined( 'ABSPATH' ) ) { |
|
9 | + exit; |
|
10 | +} |
|
9 | 11 | |
10 | 12 | // Load WP_List_Table if not loaded |
11 | 13 | if ( ! class_exists( 'WP_List_Table' ) ) { |
@@ -124,8 +124,11 @@ |
||
124 | 124 | </select> |
125 | 125 | <?php elseif ( ! empty( $field['type'] ) && 'checkbox' === $field['type'] ) : ?> |
126 | 126 | <input type="checkbox" name="<?php echo esc_attr( $key ); ?>" id="<?php echo esc_attr( $key ); ?>" value="1" class="<?php echo esc_attr( $field['class'] ); ?>" <?php checked( (int) get_user_meta( $user->ID, $key, true ), 1, true ); ?> /> |
127 | - <?php else : ?> |
|
128 | - <input type="text" name="<?php echo esc_attr( $key ); ?>" id="<?php echo esc_attr( $key ); ?>" value="<?php echo esc_attr( $this->get_user_meta( $user->ID, $key ) ); ?>" class="<?php echo ( ! empty( $field['class'] ) ? esc_attr( $field['class'] ) : 'regular-text' ); ?>" /> |
|
127 | + <?php else { |
|
128 | + : ?> |
|
129 | + <input type="text" name="<?php echo esc_attr( $key ); |
|
130 | +} |
|
131 | +?>" id="<?php echo esc_attr( $key ); ?>" value="<?php echo esc_attr( $this->get_user_meta( $user->ID, $key ) ); ?>" class="<?php echo ( ! empty( $field['class'] ) ? esc_attr( $field['class'] ) : 'regular-text' ); ?>" /> |
|
129 | 132 | <?php endif; ?> |
130 | 133 | <p class="description"><?php echo wp_kses_post( $field['description'] ); ?></p> |
131 | 134 | </td> |
@@ -3,7 +3,9 @@ |
||
3 | 3 | * Displays a list of all subscriptions rules |
4 | 4 | */ |
5 | 5 | |
6 | -if ( ! defined( 'ABSPATH' ) ) exit; |
|
6 | +if ( ! defined( 'ABSPATH' ) ) { |
|
7 | + exit; |
|
8 | +} |
|
7 | 9 | |
8 | 10 | if ( ! class_exists( 'WP_List_Table' ) ) { |
9 | 11 | include_once ABSPATH . 'wp-admin/includes/class-wp-list-table.php'; |
@@ -207,7 +207,7 @@ |
||
207 | 207 | foreach($args as $key => $val){ |
208 | 208 | $output .= ' '.sanitize_html_class($key).'="'.esc_attr($val).'" '; |
209 | 209 | } |
210 | - }else{ |
|
210 | + } else{ |
|
211 | 211 | $output .= ' '.$args.' '; |
212 | 212 | } |
213 | 213 |
@@ -87,8 +87,9 @@ discard block |
||
87 | 87 | |
88 | 88 | if ( !empty( $args ) ) { |
89 | 89 | // Check for backward compatibility |
90 | - if ( is_string( $args ) ) |
|
91 | - $args = str_replace( '?', '', $args ); |
|
90 | + if ( is_string( $args ) ) { |
|
91 | + $args = str_replace( '?', '', $args ); |
|
92 | + } |
|
92 | 93 | |
93 | 94 | $args = wp_parse_args( $args ); |
94 | 95 | |
@@ -108,8 +109,9 @@ discard block |
||
108 | 109 | |
109 | 110 | if ( !empty( $args ) ) { |
110 | 111 | // Check for backward compatibility |
111 | - if ( is_string( $args ) ) |
|
112 | - $args = str_replace( '?', '', $args ); |
|
112 | + if ( is_string( $args ) ) { |
|
113 | + $args = str_replace( '?', '', $args ); |
|
114 | + } |
|
113 | 115 | |
114 | 116 | $args = wp_parse_args( $args ); |
115 | 117 | |
@@ -131,8 +133,9 @@ discard block |
||
131 | 133 | $success_page = wpinv_get_option( 'success_page', 0 ); |
132 | 134 | $success_page = get_permalink( $success_page ); |
133 | 135 | |
134 | - if ( $query_string ) |
|
135 | - $success_page .= $query_string; |
|
136 | + if ( $query_string ) { |
|
137 | + $success_page .= $query_string; |
|
138 | + } |
|
136 | 139 | |
137 | 140 | return apply_filters( 'wpinv_success_page_url', $success_page ); |
138 | 141 | } |
@@ -141,8 +144,9 @@ discard block |
||
141 | 144 | $uri = wpinv_get_option( 'failure_page', '' ); |
142 | 145 | $uri = ! empty( $uri ) ? trailingslashit( get_permalink( $uri ) ) : home_url(); |
143 | 146 | |
144 | - if ( $extras ) |
|
145 | - $uri .= $extras; |
|
147 | + if ( $extras ) { |
|
148 | + $uri .= $extras; |
|
149 | + } |
|
146 | 150 | |
147 | 151 | return apply_filters( 'wpinv_get_failed_transaction_uri', $uri ); |
148 | 152 | } |
@@ -661,7 +661,7 @@ discard block |
||
661 | 661 | <?php |
662 | 662 | if(! empty( $insert_shortcode_function )){ |
663 | 663 | echo $insert_shortcode_function; |
664 | - }else{ |
|
664 | + } else{ |
|
665 | 665 | |
666 | 666 | /** |
667 | 667 | * Function for super duper insert shortcode. |
@@ -1647,7 +1647,7 @@ discard block |
||
1647 | 1647 | var prev_attributes = []; |
1648 | 1648 | |
1649 | 1649 | var term_query_type = ''; |
1650 | - var post_type_rest_slugs = <?php if(! empty( $this->arguments ) && isset($this->arguments['post_type']['onchange_rest']['values'])){echo "[".json_encode($this->arguments['post_type']['onchange_rest']['values'])."]";}else{echo "[]";} ?>; |
|
1650 | + var post_type_rest_slugs = <?php if(! empty( $this->arguments ) && isset($this->arguments['post_type']['onchange_rest']['values'])){echo "[".json_encode($this->arguments['post_type']['onchange_rest']['values'])."]";} else{echo "[]";} ?>; |
|
1651 | 1651 | const taxonomies_<?php echo str_replace("-","_", $this->id);?> = [{label: "Please wait", value: 0}]; |
1652 | 1652 | const sort_by_<?php echo str_replace("-","_", $this->id);?> = [{label: "Please wait", value: 0}]; |
1653 | 1653 | |
@@ -1784,7 +1784,7 @@ discard block |
||
1784 | 1784 | |
1785 | 1785 | // taxonomies |
1786 | 1786 | if( $value && 'post_type' in prev_attributes[props.id] && 'category' in prev_attributes[props.id] && run ){ |
1787 | - wp.apiFetch({path: "<?php if(isset($this->arguments['post_type']['onchange_rest']['path'])){echo $this->arguments['post_type']['onchange_rest']['path'];}else{'/wp/v2/"+$value+"/categories';} ?>"}).then(terms => { |
|
1787 | + wp.apiFetch({path: "<?php if(isset($this->arguments['post_type']['onchange_rest']['path'])){echo $this->arguments['post_type']['onchange_rest']['path'];} else{'/wp/v2/"+$value+"/categories';} ?>"}).then(terms => { |
|
1788 | 1788 | while (taxonomies_<?php echo str_replace("-","_", $this->id);?>.length) { |
1789 | 1789 | taxonomies_<?php echo str_replace("-","_", $this->id);?>.pop(); |
1790 | 1790 | } |
@@ -1958,7 +1958,7 @@ discard block |
||
1958 | 1958 | $panel_count ++; |
1959 | 1959 | |
1960 | 1960 | } |
1961 | - }else { |
|
1961 | + } else { |
|
1962 | 1962 | ?> |
1963 | 1963 | el(wp.components.PanelBody, { |
1964 | 1964 | title: '<?php esc_attr_e( "Settings" ); ?>', |
@@ -1982,7 +1982,7 @@ discard block |
||
1982 | 1982 | // If the user sets block-output array then build it |
1983 | 1983 | if ( ! empty( $this->options['block-output'] ) ) { |
1984 | 1984 | $this->block_element( $this->options['block-output'] ); |
1985 | - }else{ |
|
1985 | + } else{ |
|
1986 | 1986 | // if no block-output is set then we try and get the shortcode html output via ajax. |
1987 | 1987 | ?> |
1988 | 1988 | el('div', { |
@@ -2052,7 +2052,7 @@ discard block |
||
2052 | 2052 | ?> |
2053 | 2053 | return content; |
2054 | 2054 | <?php |
2055 | - }else{ |
|
2055 | + } else{ |
|
2056 | 2056 | ?> |
2057 | 2057 | var block_wrap = 'div'; |
2058 | 2058 | if (attr.hasOwnProperty("block_wrap")) { |
@@ -2157,8 +2157,7 @@ discard block |
||
2157 | 2157 | $key: value |
2158 | 2158 | }); |
2159 | 2159 | },"; |
2160 | - } |
|
2161 | - elseif ( $args['type'] == 'checkbox' ) { |
|
2160 | + } elseif ( $args['type'] == 'checkbox' ) { |
|
2162 | 2161 | $type = 'CheckboxControl'; |
2163 | 2162 | $extra .= "checked: props.attributes.$key,"; |
2164 | 2163 | $onchange = "props.setAttributes({ $key: ! props.attributes.$key } )"; |
@@ -2169,9 +2168,9 @@ discard block |
||
2169 | 2168 | |
2170 | 2169 | if($args['name'] == 'category' && !empty($args['post_type_linked'])){ |
2171 | 2170 | $options .= "options: taxonomies_".str_replace("-","_", $this->id).","; |
2172 | - }elseif($args['name'] == 'sort_by' && !empty($args['post_type_linked'])){ |
|
2171 | + } elseif($args['name'] == 'sort_by' && !empty($args['post_type_linked'])){ |
|
2173 | 2172 | $options .= "options: sort_by_".str_replace("-","_", $this->id).","; |
2174 | - }else { |
|
2173 | + } else { |
|
2175 | 2174 | |
2176 | 2175 | if ( ! empty( $args['options'] ) ) { |
2177 | 2176 | $options .= "options: ["; |
@@ -85,7 +85,7 @@ |
||
85 | 85 | if ( ! $result && $option) { |
86 | 86 | if( $option == 'color_primary' ){ |
87 | 87 | $result = AUI_PRIMARY_COLOR; |
88 | - }elseif( $option == 'color_secondary' ){ |
|
88 | + } elseif( $option == 'color_secondary' ){ |
|
89 | 89 | $result = AUI_SECONDARY_COLOR; |
90 | 90 | } |
91 | 91 | } |
@@ -126,8 +126,12 @@ discard block |
||
126 | 126 | public function constants(){ |
127 | 127 | define('AUI_PRIMARY_COLOR_ORIGINAL', "#1e73be"); |
128 | 128 | define('AUI_SECONDARY_COLOR_ORIGINAL', '#6c757d'); |
129 | - if (!defined('AUI_PRIMARY_COLOR')) define('AUI_PRIMARY_COLOR', AUI_PRIMARY_COLOR_ORIGINAL); |
|
130 | - if (!defined('AUI_SECONDARY_COLOR')) define('AUI_SECONDARY_COLOR', AUI_SECONDARY_COLOR_ORIGINAL); |
|
129 | + if (!defined('AUI_PRIMARY_COLOR')) { |
|
130 | + define('AUI_PRIMARY_COLOR', AUI_PRIMARY_COLOR_ORIGINAL); |
|
131 | + } |
|
132 | + if (!defined('AUI_SECONDARY_COLOR')) { |
|
133 | + define('AUI_SECONDARY_COLOR', AUI_SECONDARY_COLOR_ORIGINAL); |
|
134 | + } |
|
131 | 135 | } |
132 | 136 | |
133 | 137 | /** |
@@ -822,12 +826,12 @@ discard block |
||
822 | 826 | is_admin() ? wp_enqueue_script( 'bootstrap-js-bundle', '', null, null, true ) : wp_enqueue_script( 'bootstrap-js-bundle'); |
823 | 827 | $script = $this->inline_script(); |
824 | 828 | wp_add_inline_script( 'bootstrap-js-bundle', $script ); |
825 | - }elseif($this->settings[$js_setting]=='popper'){ |
|
829 | + } elseif($this->settings[$js_setting]=='popper'){ |
|
826 | 830 | $url = $this->url.'assets/js/popper.min.js'; |
827 | 831 | wp_register_script( 'bootstrap-js-popper', $url, array('select2','jquery'), $this->latest ); |
828 | 832 | wp_enqueue_script( 'bootstrap-js-popper' ); |
829 | 833 | $load_inline = true; |
830 | - }else{ |
|
834 | + } else{ |
|
831 | 835 | $load_inline = true; |
832 | 836 | } |
833 | 837 |
@@ -80,10 +80,10 @@ discard block |
||
80 | 80 | if($type=='file' ){ |
81 | 81 | $label_after = true; // if type file we need the label after |
82 | 82 | $args['class'] .= ' custom-file-input '; |
83 | - }elseif($type=='checkbox'){ |
|
83 | + } elseif($type=='checkbox'){ |
|
84 | 84 | $label_after = true; // if type file we need the label after |
85 | 85 | $args['class'] .= ' custom-control-input '; |
86 | - }elseif($type=='datepicker' || $type=='timepicker'){ |
|
86 | + } elseif($type=='datepicker' || $type=='timepicker'){ |
|
87 | 87 | $type = 'text'; |
88 | 88 | //$args['class'] .= ' aui-flatpickr bg-initial '; |
89 | 89 | $args['class'] .= ' bg-initial '; |
@@ -167,8 +167,7 @@ discard block |
||
167 | 167 | |
168 | 168 | // label |
169 | 169 | if(!empty($args['label'])){ |
170 | - if($type == 'file'){$label_args['class'] .= 'custom-file-label';} |
|
171 | - elseif($type == 'checkbox'){$label_args['class'] .= 'custom-control-label';} |
|
170 | + if($type == 'file'){$label_args['class'] .= 'custom-file-label';} elseif($type == 'checkbox'){$label_args['class'] .= 'custom-control-label';} |
|
172 | 171 | $label = self::label( $label_args, $type ); |
173 | 172 | } |
174 | 173 | |
@@ -189,7 +188,7 @@ discard block |
||
189 | 188 | 'content' => $output, |
190 | 189 | 'class' => 'form-group custom-file' |
191 | 190 | ) ); |
192 | - }elseif($type == 'checkbox'){ |
|
191 | + } elseif($type == 'checkbox'){ |
|
193 | 192 | $wrap_class = $args['switch'] ? 'custom-switch' : 'custom-checkbox'; |
194 | 193 | $output = self::wrap( array( |
195 | 194 | 'content' => $output, |
@@ -199,7 +198,7 @@ discard block |
||
199 | 198 | if($args['label_type']=='horizontal'){ |
200 | 199 | $output = '<div class="col-sm-2 col-form-label"></div><div class="col-sm-10">' . $output . '</div>'; |
201 | 200 | } |
202 | - }elseif($type == 'password' && $args['password_toggle'] && !$args['input_group_right']){ |
|
201 | + } elseif($type == 'password' && $args['password_toggle'] && !$args['input_group_right']){ |
|
203 | 202 | |
204 | 203 | |
205 | 204 | // allow password field to toggle view |
@@ -325,7 +324,7 @@ discard block |
||
325 | 324 | |
326 | 325 | // label |
327 | 326 | if(!empty($args['label']) && is_array($args['label'])){ |
328 | - }elseif(!empty($args['label']) && !$label_after){ |
|
327 | + } elseif(!empty($args['label']) && !$label_after){ |
|
329 | 328 | $label_args = array( |
330 | 329 | 'title'=> $args['label'], |
331 | 330 | 'for'=> $args['id'], |
@@ -360,7 +359,7 @@ discard block |
||
360 | 359 | |
361 | 360 | wp_editor( $content, $editor_id, $settings ); |
362 | 361 | $output .= ob_get_clean(); |
363 | - }else{ |
|
362 | + } else{ |
|
364 | 363 | |
365 | 364 | // open |
366 | 365 | $output .= '<textarea '; |
@@ -483,7 +482,7 @@ discard block |
||
483 | 482 | // maybe hide labels //@todo set a global option for visibility class |
484 | 483 | if($type == 'file' || $type == 'checkbox' || $type == 'radio' || !empty($args['label_type']) ){ |
485 | 484 | $class = $args['class']; |
486 | - }else{ |
|
485 | + } else{ |
|
487 | 486 | $class = 'sr-only '.$args['class']; |
488 | 487 | } |
489 | 488 | |
@@ -594,7 +593,7 @@ discard block |
||
594 | 593 | $output .= '</'.sanitize_html_class($args['type']).'>'; |
595 | 594 | |
596 | 595 | |
597 | - }else{ |
|
596 | + } else{ |
|
598 | 597 | $output = $args['content']; |
599 | 598 | } |
600 | 599 | |
@@ -657,7 +656,7 @@ discard block |
||
657 | 656 | if(!empty($args['select2'])){ |
658 | 657 | $args['class'] .= ' aui-select2'; |
659 | 658 | $is_select2 = true; |
660 | - }elseif( strpos($args['class'], 'aui-select2') !== false){ |
|
659 | + } elseif( strpos($args['class'], 'aui-select2') !== false){ |
|
661 | 660 | $is_select2 = true; |
662 | 661 | } |
663 | 662 | |
@@ -676,7 +675,7 @@ discard block |
||
676 | 675 | |
677 | 676 | // label |
678 | 677 | if(!empty($args['label']) && is_array($args['label'])){ |
679 | - }elseif(!empty($args['label']) && !$label_after){ |
|
678 | + } elseif(!empty($args['label']) && !$label_after){ |
|
680 | 679 | $label_args = array( |
681 | 680 | 'title'=> $args['label'], |
682 | 681 | 'for'=> $args['id'], |
@@ -751,7 +750,7 @@ discard block |
||
751 | 750 | // placeholder |
752 | 751 | if(isset($args['placeholder']) && '' != $args['placeholder'] && !$is_select2){ |
753 | 752 | $output .= '<option value="" disabled selected hidden>'.esc_attr($args['placeholder']).'</option>'; |
754 | - }elseif($is_select2 && !empty($args['placeholder'])){ |
|
753 | + } elseif($is_select2 && !empty($args['placeholder'])){ |
|
755 | 754 | $output .= "<option></option>"; // select2 needs an empty select to fill the placeholder |
756 | 755 | } |
757 | 756 | |
@@ -760,7 +759,7 @@ discard block |
||
760 | 759 | |
761 | 760 | if(!is_array($args['options'])){ |
762 | 761 | $output .= $args['options']; // not the preferred way but an option |
763 | - }else{ |
|
762 | + } else{ |
|
764 | 763 | foreach($args['options'] as $val => $name){ |
765 | 764 | $selected = ''; |
766 | 765 | if(is_array($name)){ |
@@ -779,7 +778,7 @@ discard block |
||
779 | 778 | |
780 | 779 | $output .= '<option value="' . esc_attr($option_value) . '" ' . $selected . '>' . $option_label . '</option>'; |
781 | 780 | } |
782 | - }else{ |
|
781 | + } else{ |
|
783 | 782 | if(!empty($args['value'])){ |
784 | 783 | if(is_array($args['value'])){ |
785 | 784 | $selected = in_array($val,$args['value']) ? 'selected="selected"' : ''; |
@@ -1002,7 +1001,7 @@ discard block |
||
1002 | 1001 | |
1003 | 1002 | // label |
1004 | 1003 | if(!empty($args['label']) && is_array($args['label'])){ |
1005 | - }elseif(!empty($args['label'])){ |
|
1004 | + } elseif(!empty($args['label'])){ |
|
1006 | 1005 | $output .= self::label(array('title'=>$args['label'],'for'=>$args['id'].$count,'class'=>'form-check-label'),'radio'); |
1007 | 1006 | } |
1008 | 1007 |