@@ -4,8 +4,8 @@ discard block |
||
4 | 4 | <?php |
5 | 5 | echo |
6 | 6 | wp_sprintf( |
7 | - __( 'Your payment is processing. This page will reload automatically in 10 seconds. If it does not, click <a href="%s">here</a>.', 'invoicing' ), |
|
8 | - esc_url_raw( remove_query_arg( 'payment-confirm' ) ) |
|
7 | + __('Your payment is processing. This page will reload automatically in 10 seconds. If it does not, click <a href="%s">here</a>.', 'invoicing'), |
|
8 | + esc_url_raw(remove_query_arg('payment-confirm')) |
|
9 | 9 | ); |
10 | 10 | ?> |
11 | 11 | <i class="fa fa-spin fa-refresh"></i> |
@@ -14,7 +14,7 @@ discard block |
||
14 | 14 | <script type="text/javascript"> |
15 | 15 | setTimeout( |
16 | 16 | function(){ |
17 | - window.location.href = '<?php echo esc_url_raw( remove_query_arg( 'payment-confirm' ) ) ;?>'; |
|
17 | + window.location.href = '<?php echo esc_url_raw(remove_query_arg('payment-confirm')); ?>'; |
|
18 | 18 | }, |
19 | 19 | 10000 |
20 | 20 | ); |
@@ -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 | /** |
@@ -233,7 +237,7 @@ discard block |
||
233 | 237 | |
234 | 238 | if( is_admin() && !$this->is_aui_screen()){ |
235 | 239 | // don't add wp-admin scripts if not requested to |
236 | - }else{ |
|
240 | + } else{ |
|
237 | 241 | $css_setting = current_action() == 'wp_enqueue_scripts' ? 'css' : 'css_backend'; |
238 | 242 | |
239 | 243 | $rtl = is_rtl() ? '-rtl' : ''; |
@@ -1051,7 +1055,7 @@ discard block |
||
1051 | 1055 | |
1052 | 1056 | if( is_admin() && !$this->is_aui_screen()){ |
1053 | 1057 | // don't add wp-admin scripts if not requested to |
1054 | - }else { |
|
1058 | + } else { |
|
1055 | 1059 | |
1056 | 1060 | $js_setting = current_action() == 'wp_enqueue_scripts' ? 'js' : 'js_backend'; |
1057 | 1061 | |
@@ -2093,7 +2097,9 @@ discard block |
||
2093 | 2097 | * @return mixed |
2094 | 2098 | */ |
2095 | 2099 | public static function minify_js($input) { |
2096 | - if(trim($input) === "") return $input; |
|
2100 | + if(trim($input) === "") { |
|
2101 | + return $input; |
|
2102 | + } |
|
2097 | 2103 | return preg_replace( |
2098 | 2104 | array( |
2099 | 2105 | // Remove comment(s) |
@@ -2125,7 +2131,9 @@ discard block |
||
2125 | 2131 | * @return mixed |
2126 | 2132 | */ |
2127 | 2133 | public static function minify_css($input) { |
2128 | - if(trim($input) === "") return $input; |
|
2134 | + if(trim($input) === "") { |
|
2135 | + return $input; |
|
2136 | + } |
|
2129 | 2137 | return preg_replace( |
2130 | 2138 | array( |
2131 | 2139 | // Remove comment(s) |
@@ -12,14 +12,14 @@ discard block |
||
12 | 12 | /** |
13 | 13 | * Bail if we are not in WP. |
14 | 14 | */ |
15 | -if ( ! defined( 'ABSPATH' ) ) { |
|
15 | +if (!defined('ABSPATH')) { |
|
16 | 16 | exit; |
17 | 17 | } |
18 | 18 | |
19 | 19 | /** |
20 | 20 | * Only add if the class does not already exist. |
21 | 21 | */ |
22 | -if ( ! class_exists( 'AyeCode_UI_Settings' ) ) { |
|
22 | +if (!class_exists('AyeCode_UI_Settings')) { |
|
23 | 23 | |
24 | 24 | /** |
25 | 25 | * A Class to be able to change settings for Font Awesome. |
@@ -98,23 +98,23 @@ discard block |
||
98 | 98 | * @return AyeCode_UI_Settings - Main instance. |
99 | 99 | */ |
100 | 100 | public static function instance() { |
101 | - if ( ! isset( self::$instance ) && ! ( self::$instance instanceof AyeCode_UI_Settings ) ) { |
|
101 | + if (!isset(self::$instance) && !(self::$instance instanceof AyeCode_UI_Settings)) { |
|
102 | 102 | |
103 | 103 | self::$instance = new AyeCode_UI_Settings; |
104 | 104 | |
105 | - add_action( 'init', array( self::$instance, 'init' ) ); // set settings |
|
105 | + add_action('init', array(self::$instance, 'init')); // set settings |
|
106 | 106 | |
107 | - if ( is_admin() ) { |
|
108 | - add_action( 'admin_menu', array( self::$instance, 'menu_item' ) ); |
|
109 | - add_action( 'admin_init', array( self::$instance, 'register_settings' ) ); |
|
107 | + if (is_admin()) { |
|
108 | + add_action('admin_menu', array(self::$instance, 'menu_item')); |
|
109 | + add_action('admin_init', array(self::$instance, 'register_settings')); |
|
110 | 110 | |
111 | 111 | // Maybe show example page |
112 | - add_action( 'template_redirect', array( self::$instance,'maybe_show_examples' ) ); |
|
112 | + add_action('template_redirect', array(self::$instance, 'maybe_show_examples')); |
|
113 | 113 | } |
114 | 114 | |
115 | - add_action( 'customize_register', array( self::$instance, 'customizer_settings' )); |
|
115 | + add_action('customize_register', array(self::$instance, 'customizer_settings')); |
|
116 | 116 | |
117 | - do_action( 'ayecode_ui_settings_loaded' ); |
|
117 | + do_action('ayecode_ui_settings_loaded'); |
|
118 | 118 | } |
119 | 119 | |
120 | 120 | return self::$instance; |
@@ -123,7 +123,7 @@ discard block |
||
123 | 123 | /** |
124 | 124 | * Setup some constants. |
125 | 125 | */ |
126 | - public function constants(){ |
|
126 | + public function constants() { |
|
127 | 127 | define('AUI_PRIMARY_COLOR_ORIGINAL', "#1e73be"); |
128 | 128 | define('AUI_SECONDARY_COLOR_ORIGINAL', '#6c757d'); |
129 | 129 | if (!defined('AUI_PRIMARY_COLOR')) define('AUI_PRIMARY_COLOR', AUI_PRIMARY_COLOR_ORIGINAL); |
@@ -136,12 +136,12 @@ discard block |
||
136 | 136 | public function init() { |
137 | 137 | |
138 | 138 | // Maybe fix settings |
139 | - if ( ! empty( $_REQUEST['aui-fix-admin'] ) && !empty($_REQUEST['nonce']) && wp_verify_nonce( $_REQUEST['nonce'], "aui-fix-admin" ) ) { |
|
140 | - $db_settings = get_option( 'ayecode-ui-settings' ); |
|
141 | - if ( ! empty( $db_settings ) ) { |
|
139 | + if (!empty($_REQUEST['aui-fix-admin']) && !empty($_REQUEST['nonce']) && wp_verify_nonce($_REQUEST['nonce'], "aui-fix-admin")) { |
|
140 | + $db_settings = get_option('ayecode-ui-settings'); |
|
141 | + if (!empty($db_settings)) { |
|
142 | 142 | $db_settings['css_backend'] = 'compatibility'; |
143 | 143 | $db_settings['js_backend'] = 'core-popper'; |
144 | - update_option( 'ayecode-ui-settings', $db_settings ); |
|
144 | + update_option('ayecode-ui-settings', $db_settings); |
|
145 | 145 | wp_safe_redirect(admin_url("options-general.php?page=ayecode-ui-settings&updated=true")); |
146 | 146 | } |
147 | 147 | } |
@@ -155,31 +155,31 @@ discard block |
||
155 | 155 | * |
156 | 156 | * We load super early in case there is a theme version that might change the colors |
157 | 157 | */ |
158 | - if ( $this->settings['css'] ) { |
|
158 | + if ($this->settings['css']) { |
|
159 | 159 | $priority = $this->is_bs3_compat() ? 100 : 1; |
160 | - add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_style' ), $priority ); |
|
160 | + add_action('wp_enqueue_scripts', array($this, 'enqueue_style'), $priority); |
|
161 | 161 | } |
162 | - if ( $this->settings['css_backend'] && $this->load_admin_scripts() ) { |
|
163 | - add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_style' ), 1 ); |
|
162 | + if ($this->settings['css_backend'] && $this->load_admin_scripts()) { |
|
163 | + add_action('admin_enqueue_scripts', array($this, 'enqueue_style'), 1); |
|
164 | 164 | } |
165 | 165 | |
166 | 166 | // maybe load JS |
167 | - if ( $this->settings['js'] ) { |
|
167 | + if ($this->settings['js']) { |
|
168 | 168 | $priority = $this->is_bs3_compat() ? 100 : 1; |
169 | - add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ), $priority ); |
|
169 | + add_action('wp_enqueue_scripts', array($this, 'enqueue_scripts'), $priority); |
|
170 | 170 | } |
171 | - if ( $this->settings['js_backend'] && $this->load_admin_scripts() ) { |
|
172 | - add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ), 1 ); |
|
171 | + if ($this->settings['js_backend'] && $this->load_admin_scripts()) { |
|
172 | + add_action('admin_enqueue_scripts', array($this, 'enqueue_scripts'), 1); |
|
173 | 173 | } |
174 | 174 | |
175 | 175 | // Maybe set the HTML font size |
176 | - if ( $this->settings['html_font_size'] ) { |
|
177 | - add_action( 'wp_footer', array( $this, 'html_font_size' ), 10 ); |
|
176 | + if ($this->settings['html_font_size']) { |
|
177 | + add_action('wp_footer', array($this, 'html_font_size'), 10); |
|
178 | 178 | } |
179 | 179 | |
180 | 180 | // Maybe show backend style error |
181 | - if( $this->settings['css_backend'] != 'compatibility' || $this->settings['js_backend'] != 'core-popper' ){ |
|
182 | - add_action( 'admin_notices', array( $this, 'show_admin_style_notice' ) ); |
|
181 | + if ($this->settings['css_backend'] != 'compatibility' || $this->settings['js_backend'] != 'core-popper') { |
|
182 | + add_action('admin_notices', array($this, 'show_admin_style_notice')); |
|
183 | 183 | } |
184 | 184 | |
185 | 185 | } |
@@ -187,11 +187,11 @@ discard block |
||
187 | 187 | /** |
188 | 188 | * Show admin notice if backend scripts not loaded. |
189 | 189 | */ |
190 | - public function show_admin_style_notice(){ |
|
191 | - $fix_url = admin_url("options-general.php?page=ayecode-ui-settings&aui-fix-admin=true&nonce=".wp_create_nonce('aui-fix-admin')); |
|
192 | - $button = '<a href="'.esc_url($fix_url).'" class="button-primary">Fix Now</a>'; |
|
193 | - $message = __( '<b>Style Issue:</b> AyeCode UI is disable or set wrong.')." " .$button; |
|
194 | - echo '<div class="notice notice-error aui-settings-error-notice"><p>'.$message.'</p></div>'; |
|
190 | + public function show_admin_style_notice() { |
|
191 | + $fix_url = admin_url("options-general.php?page=ayecode-ui-settings&aui-fix-admin=true&nonce=" . wp_create_nonce('aui-fix-admin')); |
|
192 | + $button = '<a href="' . esc_url($fix_url) . '" class="button-primary">Fix Now</a>'; |
|
193 | + $message = __('<b>Style Issue:</b> AyeCode UI is disable or set wrong.') . " " . $button; |
|
194 | + echo '<div class="notice notice-error aui-settings-error-notice"><p>' . $message . '</p></div>'; |
|
195 | 195 | } |
196 | 196 | |
197 | 197 | /** |
@@ -199,14 +199,14 @@ discard block |
||
199 | 199 | * |
200 | 200 | * @return bool |
201 | 201 | */ |
202 | - public function load_admin_scripts(){ |
|
202 | + public function load_admin_scripts() { |
|
203 | 203 | $result = true; |
204 | 204 | |
205 | 205 | // check if specifically disabled |
206 | - if(!empty($this->settings['disable_admin'])){ |
|
207 | - $url_parts = explode("\n",$this->settings['disable_admin']); |
|
208 | - foreach($url_parts as $part){ |
|
209 | - if( strpos($_SERVER['REQUEST_URI'], trim($part)) !== false ){ |
|
206 | + if (!empty($this->settings['disable_admin'])) { |
|
207 | + $url_parts = explode("\n", $this->settings['disable_admin']); |
|
208 | + foreach ($url_parts as $part) { |
|
209 | + if (strpos($_SERVER['REQUEST_URI'], trim($part)) !== false) { |
|
210 | 210 | return false; // return early, no point checking further |
211 | 211 | } |
212 | 212 | } |
@@ -218,9 +218,9 @@ discard block |
||
218 | 218 | /** |
219 | 219 | * Add a html font size to the footer. |
220 | 220 | */ |
221 | - public function html_font_size(){ |
|
221 | + public function html_font_size() { |
|
222 | 222 | $this->settings = $this->get_settings(); |
223 | - echo "<style>html{font-size:".absint($this->settings['html_font_size'])."px;}</style>"; |
|
223 | + echo "<style>html{font-size:" . absint($this->settings['html_font_size']) . "px;}</style>"; |
|
224 | 224 | } |
225 | 225 | |
226 | 226 | /** |
@@ -228,11 +228,11 @@ discard block |
||
228 | 228 | * |
229 | 229 | * @return bool |
230 | 230 | */ |
231 | - public function is_aui_screen(){ |
|
231 | + public function is_aui_screen() { |
|
232 | 232 | // echo '###';exit; |
233 | 233 | $load = false; |
234 | 234 | // check if we should load or not |
235 | - if ( is_admin() ) { |
|
235 | + if (is_admin()) { |
|
236 | 236 | // Only enable on set pages |
237 | 237 | $aui_screens = array( |
238 | 238 | 'page', |
@@ -243,24 +243,24 @@ discard block |
||
243 | 243 | 'ayecode-ui-settings', |
244 | 244 | 'site-editor' |
245 | 245 | ); |
246 | - $screen_ids = apply_filters( 'aui_screen_ids', $aui_screens ); |
|
246 | + $screen_ids = apply_filters('aui_screen_ids', $aui_screens); |
|
247 | 247 | |
248 | 248 | $screen = get_current_screen(); |
249 | 249 | |
250 | 250 | // echo '###'.$screen->id; |
251 | 251 | |
252 | 252 | // check if we are on a AUI screen |
253 | - if ( $screen && in_array( $screen->id, $screen_ids ) ) { |
|
253 | + if ($screen && in_array($screen->id, $screen_ids)) { |
|
254 | 254 | $load = true; |
255 | 255 | } |
256 | 256 | |
257 | 257 | //load for widget previews in WP 5.8 |
258 | - if( !empty($_REQUEST['legacy-widget-preview'])){ |
|
258 | + if (!empty($_REQUEST['legacy-widget-preview'])) { |
|
259 | 259 | $load = true; |
260 | 260 | } |
261 | 261 | } |
262 | 262 | |
263 | - return apply_filters( 'aui_load_on_admin' , $load ); |
|
263 | + return apply_filters('aui_load_on_admin', $load); |
|
264 | 264 | } |
265 | 265 | |
266 | 266 | /** |
@@ -269,24 +269,24 @@ discard block |
||
269 | 269 | public function enqueue_style() { |
270 | 270 | |
271 | 271 | |
272 | - if( is_admin() && !$this->is_aui_screen()){ |
|
272 | + if (is_admin() && !$this->is_aui_screen()) { |
|
273 | 273 | // don't add wp-admin scripts if not requested to |
274 | - }else{ |
|
274 | + } else { |
|
275 | 275 | $css_setting = current_action() == 'wp_enqueue_scripts' ? 'css' : 'css_backend'; |
276 | 276 | |
277 | 277 | $rtl = is_rtl() ? '-rtl' : ''; |
278 | 278 | |
279 | - if($this->settings[$css_setting]){ |
|
280 | - $compatibility = $this->settings[$css_setting]=='core' ? false : true; |
|
281 | - $url = $this->settings[$css_setting]=='core' ? $this->url.'assets/css/ayecode-ui'.$rtl.'.css' : $this->url.'assets/css/ayecode-ui-compatibility'.$rtl.'.css'; |
|
282 | - wp_register_style( 'ayecode-ui', $url, array(), $this->version ); |
|
283 | - wp_enqueue_style( 'ayecode-ui' ); |
|
279 | + if ($this->settings[$css_setting]) { |
|
280 | + $compatibility = $this->settings[$css_setting] == 'core' ? false : true; |
|
281 | + $url = $this->settings[$css_setting] == 'core' ? $this->url . 'assets/css/ayecode-ui' . $rtl . '.css' : $this->url . 'assets/css/ayecode-ui-compatibility' . $rtl . '.css'; |
|
282 | + wp_register_style('ayecode-ui', $url, array(), $this->version); |
|
283 | + wp_enqueue_style('ayecode-ui'); |
|
284 | 284 | |
285 | 285 | // flatpickr |
286 | - wp_register_style( 'flatpickr', $this->url.'assets/css/flatpickr.min.css', array(), $this->version ); |
|
286 | + wp_register_style('flatpickr', $this->url . 'assets/css/flatpickr.min.css', array(), $this->version); |
|
287 | 287 | |
288 | 288 | // fix some wp-admin issues |
289 | - if(is_admin()){ |
|
289 | + if (is_admin()) { |
|
290 | 290 | $custom_css = " |
291 | 291 | body{ |
292 | 292 | background-color: #f1f1f1; |
@@ -339,11 +339,11 @@ discard block |
||
339 | 339 | padding: 0; |
340 | 340 | } |
341 | 341 | "; |
342 | - wp_add_inline_style( 'ayecode-ui', $custom_css ); |
|
342 | + wp_add_inline_style('ayecode-ui', $custom_css); |
|
343 | 343 | } |
344 | 344 | |
345 | 345 | // custom changes |
346 | - wp_add_inline_style( 'ayecode-ui', self::custom_css($compatibility) ); |
|
346 | + wp_add_inline_style('ayecode-ui', self::custom_css($compatibility)); |
|
347 | 347 | |
348 | 348 | } |
349 | 349 | } |
@@ -603,7 +603,7 @@ discard block |
||
603 | 603 | function aui_init_flatpickr(){ |
604 | 604 | if ( typeof jQuery.fn.flatpickr === "function" && !$aui_doing_init_flatpickr) { |
605 | 605 | $aui_doing_init_flatpickr = true; |
606 | - <?php if ( ! empty( $flatpickr_locale ) ) { ?>try{flatpickr.localize(<?php echo $flatpickr_locale; ?>);}catch(err){console.log(err.message);}<?php } ?> |
|
606 | + <?php if (!empty($flatpickr_locale)) { ?>try{flatpickr.localize(<?php echo $flatpickr_locale; ?>);}catch(err){console.log(err.message);}<?php } ?> |
|
607 | 607 | jQuery('input[data-aui-init="flatpickr"]:not(.flatpickr-input)').flatpickr(); |
608 | 608 | } |
609 | 609 | $aui_doing_init_flatpickr = false; |
@@ -1203,10 +1203,10 @@ discard block |
||
1203 | 1203 | /* |
1204 | 1204 | * We only add the <script> tags for code highlighting, so we strip them from the output. |
1205 | 1205 | */ |
1206 | - return str_replace( array( |
|
1206 | + return str_replace(array( |
|
1207 | 1207 | '<script>', |
1208 | 1208 | '</script>' |
1209 | - ), '', self::minify_js($output) ); |
|
1209 | + ), '', self::minify_js($output)); |
|
1210 | 1210 | } |
1211 | 1211 | |
1212 | 1212 | |
@@ -1220,13 +1220,13 @@ discard block |
||
1220 | 1220 | ob_start(); |
1221 | 1221 | ?> |
1222 | 1222 | <script> |
1223 | - <?php if( defined( 'FUSION_BUILDER_VERSION' ) ){ ?> |
|
1223 | + <?php if (defined('FUSION_BUILDER_VERSION')) { ?> |
|
1224 | 1224 | /* With Avada builder */ |
1225 | 1225 | |
1226 | 1226 | <?php } ?> |
1227 | 1227 | </script> |
1228 | 1228 | <?php |
1229 | - return str_replace( array( |
|
1229 | + return str_replace(array( |
|
1230 | 1230 | '<script>', |
1231 | 1231 | '</script>' |
1232 | 1232 | ), '', ob_get_clean()); |
@@ -1237,7 +1237,7 @@ discard block |
||
1237 | 1237 | * |
1238 | 1238 | * If this remains small then its best to use this than to add another JS file. |
1239 | 1239 | */ |
1240 | - public function inline_script_file_browser(){ |
|
1240 | + public function inline_script_file_browser() { |
|
1241 | 1241 | ob_start(); |
1242 | 1242 | ?> |
1243 | 1243 | <script> |
@@ -1252,10 +1252,10 @@ discard block |
||
1252 | 1252 | /* |
1253 | 1253 | * We only add the <script> tags for code highlighting, so we strip them from the output. |
1254 | 1254 | */ |
1255 | - return str_replace( array( |
|
1255 | + return str_replace(array( |
|
1256 | 1256 | '<script>', |
1257 | 1257 | '</script>' |
1258 | - ), '', $output ); |
|
1258 | + ), '', $output); |
|
1259 | 1259 | } |
1260 | 1260 | |
1261 | 1261 | /** |
@@ -1263,53 +1263,53 @@ discard block |
||
1263 | 1263 | */ |
1264 | 1264 | public function enqueue_scripts() { |
1265 | 1265 | |
1266 | - if( is_admin() && !$this->is_aui_screen()){ |
|
1266 | + if (is_admin() && !$this->is_aui_screen()) { |
|
1267 | 1267 | // don't add wp-admin scripts if not requested to |
1268 | - }else { |
|
1268 | + } else { |
|
1269 | 1269 | |
1270 | 1270 | $js_setting = current_action() == 'wp_enqueue_scripts' ? 'js' : 'js_backend'; |
1271 | 1271 | |
1272 | 1272 | // select2 |
1273 | - wp_register_script( 'select2', $this->url . 'assets/js/select2.min.js', array( 'jquery' ), $this->select2_version ); |
|
1273 | + wp_register_script('select2', $this->url . 'assets/js/select2.min.js', array('jquery'), $this->select2_version); |
|
1274 | 1274 | |
1275 | 1275 | // flatpickr |
1276 | - wp_register_script( 'flatpickr', $this->url . 'assets/js/flatpickr.min.js', array(), $this->version ); |
|
1276 | + wp_register_script('flatpickr', $this->url . 'assets/js/flatpickr.min.js', array(), $this->version); |
|
1277 | 1277 | |
1278 | 1278 | // flatpickr |
1279 | - wp_register_script( 'iconpicker', $this->url . 'assets/js/fontawesome-iconpicker.min.js', array(), $this->version ); |
|
1279 | + wp_register_script('iconpicker', $this->url . 'assets/js/fontawesome-iconpicker.min.js', array(), $this->version); |
|
1280 | 1280 | |
1281 | 1281 | // Bootstrap file browser |
1282 | - wp_register_script( 'aui-custom-file-input', $url = $this->url . 'assets/js/bs-custom-file-input.min.js', array( 'jquery' ), $this->select2_version ); |
|
1283 | - wp_add_inline_script( 'aui-custom-file-input', $this->inline_script_file_browser() ); |
|
1282 | + wp_register_script('aui-custom-file-input', $url = $this->url . 'assets/js/bs-custom-file-input.min.js', array('jquery'), $this->select2_version); |
|
1283 | + wp_add_inline_script('aui-custom-file-input', $this->inline_script_file_browser()); |
|
1284 | 1284 | |
1285 | 1285 | $load_inline = false; |
1286 | 1286 | |
1287 | - if ( $this->settings[ $js_setting ] == 'core-popper' ) { |
|
1287 | + if ($this->settings[$js_setting] == 'core-popper') { |
|
1288 | 1288 | // Bootstrap bundle |
1289 | 1289 | $url = $this->url . 'assets/js/bootstrap.bundle.min.js'; |
1290 | - wp_register_script( 'bootstrap-js-bundle', $url, array( |
|
1290 | + wp_register_script('bootstrap-js-bundle', $url, array( |
|
1291 | 1291 | 'select2', |
1292 | 1292 | 'jquery' |
1293 | - ), $this->version, $this->is_bs3_compat() ); |
|
1293 | + ), $this->version, $this->is_bs3_compat()); |
|
1294 | 1294 | // if in admin then add to footer for compatibility. |
1295 | - is_admin() ? wp_enqueue_script( 'bootstrap-js-bundle', '', null, null, true ) : wp_enqueue_script( 'bootstrap-js-bundle' ); |
|
1295 | + is_admin() ? wp_enqueue_script('bootstrap-js-bundle', '', null, null, true) : wp_enqueue_script('bootstrap-js-bundle'); |
|
1296 | 1296 | $script = $this->inline_script(); |
1297 | - wp_add_inline_script( 'bootstrap-js-bundle', $script ); |
|
1298 | - } elseif ( $this->settings[ $js_setting ] == 'popper' ) { |
|
1297 | + wp_add_inline_script('bootstrap-js-bundle', $script); |
|
1298 | + } elseif ($this->settings[$js_setting] == 'popper') { |
|
1299 | 1299 | $url = $this->url . 'assets/js/popper.min.js'; |
1300 | - wp_register_script( 'bootstrap-js-popper', $url, array( 'select2', 'jquery' ), $this->version ); |
|
1301 | - wp_enqueue_script( 'bootstrap-js-popper' ); |
|
1300 | + wp_register_script('bootstrap-js-popper', $url, array('select2', 'jquery'), $this->version); |
|
1301 | + wp_enqueue_script('bootstrap-js-popper'); |
|
1302 | 1302 | $load_inline = true; |
1303 | 1303 | } else { |
1304 | 1304 | $load_inline = true; |
1305 | 1305 | } |
1306 | 1306 | |
1307 | 1307 | // Load needed inline scripts by faking the loading of a script if the main script is not being loaded |
1308 | - if ( $load_inline ) { |
|
1309 | - wp_register_script( 'bootstrap-dummy', '', array( 'select2', 'jquery' ) ); |
|
1310 | - wp_enqueue_script( 'bootstrap-dummy' ); |
|
1308 | + if ($load_inline) { |
|
1309 | + wp_register_script('bootstrap-dummy', '', array('select2', 'jquery')); |
|
1310 | + wp_enqueue_script('bootstrap-dummy'); |
|
1311 | 1311 | $script = $this->inline_script(); |
1312 | - wp_add_inline_script( 'bootstrap-dummy', $script ); |
|
1312 | + wp_add_inline_script('bootstrap-dummy', $script); |
|
1313 | 1313 | } |
1314 | 1314 | } |
1315 | 1315 | |
@@ -1318,17 +1318,17 @@ discard block |
||
1318 | 1318 | /** |
1319 | 1319 | * Enqueue flatpickr if called. |
1320 | 1320 | */ |
1321 | - public function enqueue_flatpickr(){ |
|
1322 | - wp_enqueue_style( 'flatpickr' ); |
|
1323 | - wp_enqueue_script( 'flatpickr' ); |
|
1321 | + public function enqueue_flatpickr() { |
|
1322 | + wp_enqueue_style('flatpickr'); |
|
1323 | + wp_enqueue_script('flatpickr'); |
|
1324 | 1324 | } |
1325 | 1325 | |
1326 | 1326 | /** |
1327 | 1327 | * Enqueue iconpicker if called. |
1328 | 1328 | */ |
1329 | - public function enqueue_iconpicker(){ |
|
1330 | - wp_enqueue_style( 'iconpicker' ); |
|
1331 | - wp_enqueue_script( 'iconpicker' ); |
|
1329 | + public function enqueue_iconpicker() { |
|
1330 | + wp_enqueue_style('iconpicker'); |
|
1331 | + wp_enqueue_script('iconpicker'); |
|
1332 | 1332 | } |
1333 | 1333 | |
1334 | 1334 | /** |
@@ -1340,15 +1340,15 @@ discard block |
||
1340 | 1340 | |
1341 | 1341 | $url = ''; |
1342 | 1342 | // check if we are inside a plugin |
1343 | - $file_dir = str_replace( "/includes","", wp_normalize_path( dirname( __FILE__ ) ) ); |
|
1343 | + $file_dir = str_replace("/includes", "", wp_normalize_path(dirname(__FILE__))); |
|
1344 | 1344 | |
1345 | 1345 | // add check in-case user has changed wp-content dir name. |
1346 | 1346 | $wp_content_folder_name = basename(WP_CONTENT_DIR); |
1347 | - $dir_parts = explode("/$wp_content_folder_name/",$file_dir); |
|
1348 | - $url_parts = explode("/$wp_content_folder_name/",plugins_url()); |
|
1347 | + $dir_parts = explode("/$wp_content_folder_name/", $file_dir); |
|
1348 | + $url_parts = explode("/$wp_content_folder_name/", plugins_url()); |
|
1349 | 1349 | |
1350 | - if(!empty($url_parts[0]) && !empty($dir_parts[1])){ |
|
1351 | - $url = trailingslashit( $url_parts[0]."/$wp_content_folder_name/".$dir_parts[1] ); |
|
1350 | + if (!empty($url_parts[0]) && !empty($dir_parts[1])) { |
|
1351 | + $url = trailingslashit($url_parts[0] . "/$wp_content_folder_name/" . $dir_parts[1]); |
|
1352 | 1352 | } |
1353 | 1353 | |
1354 | 1354 | return $url; |
@@ -1358,7 +1358,7 @@ discard block |
||
1358 | 1358 | * Register the database settings with WordPress. |
1359 | 1359 | */ |
1360 | 1360 | public function register_settings() { |
1361 | - register_setting( 'ayecode-ui-settings', 'ayecode-ui-settings' ); |
|
1361 | + register_setting('ayecode-ui-settings', 'ayecode-ui-settings'); |
|
1362 | 1362 | } |
1363 | 1363 | |
1364 | 1364 | /** |
@@ -1367,10 +1367,10 @@ discard block |
||
1367 | 1367 | */ |
1368 | 1368 | public function menu_item() { |
1369 | 1369 | $menu_function = 'add' . '_' . 'options' . '_' . 'page'; // won't pass theme check if function name present in theme |
1370 | - call_user_func( $menu_function, $this->name, $this->name, 'manage_options', 'ayecode-ui-settings', array( |
|
1370 | + call_user_func($menu_function, $this->name, $this->name, 'manage_options', 'ayecode-ui-settings', array( |
|
1371 | 1371 | $this, |
1372 | 1372 | 'settings_page' |
1373 | - ) ); |
|
1373 | + )); |
|
1374 | 1374 | } |
1375 | 1375 | |
1376 | 1376 | /** |
@@ -1378,7 +1378,7 @@ discard block |
||
1378 | 1378 | * |
1379 | 1379 | * @return array |
1380 | 1380 | */ |
1381 | - public function theme_js_settings(){ |
|
1381 | + public function theme_js_settings() { |
|
1382 | 1382 | return array( |
1383 | 1383 | 'ayetheme' => 'popper', |
1384 | 1384 | 'listimia' => 'required', |
@@ -1394,17 +1394,17 @@ discard block |
||
1394 | 1394 | */ |
1395 | 1395 | public function get_settings() { |
1396 | 1396 | |
1397 | - $db_settings = get_option( 'ayecode-ui-settings' ); |
|
1397 | + $db_settings = get_option('ayecode-ui-settings'); |
|
1398 | 1398 | $js_default = 'core-popper'; |
1399 | 1399 | $js_default_backend = $js_default; |
1400 | 1400 | |
1401 | 1401 | // maybe set defaults (if no settings set) |
1402 | - if(empty($db_settings)){ |
|
1403 | - $active_theme = strtolower( get_template() ); // active parent theme. |
|
1402 | + if (empty($db_settings)) { |
|
1403 | + $active_theme = strtolower(get_template()); // active parent theme. |
|
1404 | 1404 | $theme_js_settings = self::theme_js_settings(); |
1405 | - if(isset($theme_js_settings[$active_theme])){ |
|
1405 | + if (isset($theme_js_settings[$active_theme])) { |
|
1406 | 1406 | $js_default = $theme_js_settings[$active_theme]; |
1407 | - $js_default_backend = isset($theme_js_settings[$active_theme."_backend"]) ? $theme_js_settings[$active_theme."_backend"] : $js_default; |
|
1407 | + $js_default_backend = isset($theme_js_settings[$active_theme . "_backend"]) ? $theme_js_settings[$active_theme . "_backend"] : $js_default; |
|
1408 | 1408 | } |
1409 | 1409 | } |
1410 | 1410 | |
@@ -1417,14 +1417,14 @@ discard block |
||
1417 | 1417 | 'disable_admin' => '', // URL snippets to disable loading on admin |
1418 | 1418 | ); |
1419 | 1419 | |
1420 | - $settings = wp_parse_args( $db_settings, $defaults ); |
|
1420 | + $settings = wp_parse_args($db_settings, $defaults); |
|
1421 | 1421 | |
1422 | 1422 | /** |
1423 | 1423 | * Filter the Bootstrap settings. |
1424 | 1424 | * |
1425 | 1425 | * @todo if we add this filer people might use it and then it defeates the purpose of this class :/ |
1426 | 1426 | */ |
1427 | - return $this->settings = apply_filters( 'ayecode-ui-settings', $settings, $db_settings, $defaults ); |
|
1427 | + return $this->settings = apply_filters('ayecode-ui-settings', $settings, $db_settings, $defaults); |
|
1428 | 1428 | } |
1429 | 1429 | |
1430 | 1430 | |
@@ -1432,90 +1432,90 @@ discard block |
||
1432 | 1432 | * The settings page html output. |
1433 | 1433 | */ |
1434 | 1434 | public function settings_page() { |
1435 | - if ( ! current_user_can( 'manage_options' ) ) { |
|
1436 | - wp_die( __( 'You do not have sufficient permissions to access this page.', 'aui' ) ); |
|
1435 | + if (!current_user_can('manage_options')) { |
|
1436 | + wp_die(__('You do not have sufficient permissions to access this page.', 'aui')); |
|
1437 | 1437 | } |
1438 | 1438 | ?> |
1439 | 1439 | <div class="wrap"> |
1440 | 1440 | <h1><?php echo $this->name; ?></h1> |
1441 | - <p><?php _e("Here you can adjust settings if you are having compatibility issues.",'aui');?></p> |
|
1441 | + <p><?php _e("Here you can adjust settings if you are having compatibility issues.", 'aui'); ?></p> |
|
1442 | 1442 | <form method="post" action="options.php"> |
1443 | 1443 | <?php |
1444 | - settings_fields( 'ayecode-ui-settings' ); |
|
1445 | - do_settings_sections( 'ayecode-ui-settings' ); |
|
1444 | + settings_fields('ayecode-ui-settings'); |
|
1445 | + do_settings_sections('ayecode-ui-settings'); |
|
1446 | 1446 | ?> |
1447 | 1447 | |
1448 | - <h2><?php _e( 'Frontend', 'aui' ); ?></h2> |
|
1448 | + <h2><?php _e('Frontend', 'aui'); ?></h2> |
|
1449 | 1449 | <table class="form-table wpbs-table-settings"> |
1450 | 1450 | <tr valign="top"> |
1451 | 1451 | <th scope="row"><label |
1452 | - for="wpbs-css"><?php _e( 'Load CSS', 'aui' ); ?></label></th> |
|
1452 | + for="wpbs-css"><?php _e('Load CSS', 'aui'); ?></label></th> |
|
1453 | 1453 | <td> |
1454 | 1454 | <select name="ayecode-ui-settings[css]" id="wpbs-css"> |
1455 | - <option value="compatibility" <?php selected( $this->settings['css'], 'compatibility' ); ?>><?php _e( 'Compatibility Mode (default)', 'aui' ); ?></option> |
|
1456 | - <option value="core" <?php selected( $this->settings['css'], 'core' ); ?>><?php _e( 'Full Mode', 'aui' ); ?></option> |
|
1457 | - <option value="" <?php selected( $this->settings['css'], '' ); ?>><?php _e( 'Disabled', 'aui' ); ?></option> |
|
1455 | + <option value="compatibility" <?php selected($this->settings['css'], 'compatibility'); ?>><?php _e('Compatibility Mode (default)', 'aui'); ?></option> |
|
1456 | + <option value="core" <?php selected($this->settings['css'], 'core'); ?>><?php _e('Full Mode', 'aui'); ?></option> |
|
1457 | + <option value="" <?php selected($this->settings['css'], ''); ?>><?php _e('Disabled', 'aui'); ?></option> |
|
1458 | 1458 | </select> |
1459 | 1459 | </td> |
1460 | 1460 | </tr> |
1461 | 1461 | |
1462 | 1462 | <tr valign="top"> |
1463 | 1463 | <th scope="row"><label |
1464 | - for="wpbs-js"><?php _e( 'Load JS', 'aui' ); ?></label></th> |
|
1464 | + for="wpbs-js"><?php _e('Load JS', 'aui'); ?></label></th> |
|
1465 | 1465 | <td> |
1466 | 1466 | <select name="ayecode-ui-settings[js]" id="wpbs-js"> |
1467 | - <option value="core-popper" <?php selected( $this->settings['js'], 'core-popper' ); ?>><?php _e( 'Core + Popper (default)', 'aui' ); ?></option> |
|
1468 | - <option value="popper" <?php selected( $this->settings['js'], 'popper' ); ?>><?php _e( 'Popper', 'aui' ); ?></option> |
|
1469 | - <option value="required" <?php selected( $this->settings['js'], 'required' ); ?>><?php _e( 'Required functions only', 'aui' ); ?></option> |
|
1470 | - <option value="" <?php selected( $this->settings['js'], '' ); ?>><?php _e( 'Disabled (not recommended)', 'aui' ); ?></option> |
|
1467 | + <option value="core-popper" <?php selected($this->settings['js'], 'core-popper'); ?>><?php _e('Core + Popper (default)', 'aui'); ?></option> |
|
1468 | + <option value="popper" <?php selected($this->settings['js'], 'popper'); ?>><?php _e('Popper', 'aui'); ?></option> |
|
1469 | + <option value="required" <?php selected($this->settings['js'], 'required'); ?>><?php _e('Required functions only', 'aui'); ?></option> |
|
1470 | + <option value="" <?php selected($this->settings['js'], ''); ?>><?php _e('Disabled (not recommended)', 'aui'); ?></option> |
|
1471 | 1471 | </select> |
1472 | 1472 | </td> |
1473 | 1473 | </tr> |
1474 | 1474 | |
1475 | 1475 | <tr valign="top"> |
1476 | 1476 | <th scope="row"><label |
1477 | - for="wpbs-font_size"><?php _e( 'HTML Font Size (px)', 'aui' ); ?></label></th> |
|
1477 | + for="wpbs-font_size"><?php _e('HTML Font Size (px)', 'aui'); ?></label></th> |
|
1478 | 1478 | <td> |
1479 | - <input type="number" name="ayecode-ui-settings[html_font_size]" id="wpbs-font_size" value="<?php echo absint( $this->settings['html_font_size']); ?>" placeholder="16" /> |
|
1480 | - <p class="description" ><?php _e("Our font sizing is rem (responsive based) here you can set the html font size in-case your theme is setting it too low.",'aui');?></p> |
|
1479 | + <input type="number" name="ayecode-ui-settings[html_font_size]" id="wpbs-font_size" value="<?php echo absint($this->settings['html_font_size']); ?>" placeholder="16" /> |
|
1480 | + <p class="description" ><?php _e("Our font sizing is rem (responsive based) here you can set the html font size in-case your theme is setting it too low.", 'aui'); ?></p> |
|
1481 | 1481 | </td> |
1482 | 1482 | </tr> |
1483 | 1483 | |
1484 | 1484 | </table> |
1485 | 1485 | |
1486 | - <h2><?php _e( 'Backend', 'aui' ); ?> (wp-admin)</h2> |
|
1486 | + <h2><?php _e('Backend', 'aui'); ?> (wp-admin)</h2> |
|
1487 | 1487 | <table class="form-table wpbs-table-settings"> |
1488 | 1488 | <tr valign="top"> |
1489 | 1489 | <th scope="row"><label |
1490 | - for="wpbs-css-admin"><?php _e( 'Load CSS', 'aui' ); ?></label></th> |
|
1490 | + for="wpbs-css-admin"><?php _e('Load CSS', 'aui'); ?></label></th> |
|
1491 | 1491 | <td> |
1492 | 1492 | <select name="ayecode-ui-settings[css_backend]" id="wpbs-css-admin"> |
1493 | - <option value="compatibility" <?php selected( $this->settings['css_backend'], 'compatibility' ); ?>><?php _e( 'Compatibility Mode (default)', 'aui' ); ?></option> |
|
1494 | - <option value="core" <?php selected( $this->settings['css_backend'], 'core' ); ?>><?php _e( 'Full Mode (will cause style issues)', 'aui' ); ?></option> |
|
1495 | - <option value="" <?php selected( $this->settings['css_backend'], '' ); ?>><?php _e( 'Disabled', 'aui' ); ?></option> |
|
1493 | + <option value="compatibility" <?php selected($this->settings['css_backend'], 'compatibility'); ?>><?php _e('Compatibility Mode (default)', 'aui'); ?></option> |
|
1494 | + <option value="core" <?php selected($this->settings['css_backend'], 'core'); ?>><?php _e('Full Mode (will cause style issues)', 'aui'); ?></option> |
|
1495 | + <option value="" <?php selected($this->settings['css_backend'], ''); ?>><?php _e('Disabled', 'aui'); ?></option> |
|
1496 | 1496 | </select> |
1497 | 1497 | </td> |
1498 | 1498 | </tr> |
1499 | 1499 | |
1500 | 1500 | <tr valign="top"> |
1501 | 1501 | <th scope="row"><label |
1502 | - for="wpbs-js-admin"><?php _e( 'Load JS', 'aui' ); ?></label></th> |
|
1502 | + for="wpbs-js-admin"><?php _e('Load JS', 'aui'); ?></label></th> |
|
1503 | 1503 | <td> |
1504 | 1504 | <select name="ayecode-ui-settings[js_backend]" id="wpbs-js-admin"> |
1505 | - <option value="core-popper" <?php selected( $this->settings['js_backend'], 'core-popper' ); ?>><?php _e( 'Core + Popper (default)', 'aui' ); ?></option> |
|
1506 | - <option value="popper" <?php selected( $this->settings['js_backend'], 'popper' ); ?>><?php _e( 'Popper', 'aui' ); ?></option> |
|
1507 | - <option value="required" <?php selected( $this->settings['js_backend'], 'required' ); ?>><?php _e( 'Required functions only', 'aui' ); ?></option> |
|
1508 | - <option value="" <?php selected( $this->settings['js_backend'], '' ); ?>><?php _e( 'Disabled (not recommended)', 'aui' ); ?></option> |
|
1505 | + <option value="core-popper" <?php selected($this->settings['js_backend'], 'core-popper'); ?>><?php _e('Core + Popper (default)', 'aui'); ?></option> |
|
1506 | + <option value="popper" <?php selected($this->settings['js_backend'], 'popper'); ?>><?php _e('Popper', 'aui'); ?></option> |
|
1507 | + <option value="required" <?php selected($this->settings['js_backend'], 'required'); ?>><?php _e('Required functions only', 'aui'); ?></option> |
|
1508 | + <option value="" <?php selected($this->settings['js_backend'], ''); ?>><?php _e('Disabled (not recommended)', 'aui'); ?></option> |
|
1509 | 1509 | </select> |
1510 | 1510 | </td> |
1511 | 1511 | </tr> |
1512 | 1512 | |
1513 | 1513 | <tr valign="top"> |
1514 | 1514 | <th scope="row"><label |
1515 | - for="wpbs-disable-admin"><?php _e( 'Disable load on URL', 'aui' ); ?></label></th> |
|
1515 | + for="wpbs-disable-admin"><?php _e('Disable load on URL', 'aui'); ?></label></th> |
|
1516 | 1516 | <td> |
1517 | - <p><?php _e( 'If you have backend conflict you can enter a partial URL argument that will disable the loading of AUI on those pages. Add each argument on a new line.', 'aui' ); ?></p> |
|
1518 | - <textarea name="ayecode-ui-settings[disable_admin]" rows="10" cols="50" id="wpbs-disable-admin" class="large-text code" spellcheck="false" placeholder="myplugin.php action=go"><?php echo $this->settings['disable_admin'];?></textarea> |
|
1517 | + <p><?php _e('If you have backend conflict you can enter a partial URL argument that will disable the loading of AUI on those pages. Add each argument on a new line.', 'aui'); ?></p> |
|
1518 | + <textarea name="ayecode-ui-settings[disable_admin]" rows="10" cols="50" id="wpbs-disable-admin" class="large-text code" spellcheck="false" placeholder="myplugin.php action=go"><?php echo $this->settings['disable_admin']; ?></textarea> |
|
1519 | 1519 | |
1520 | 1520 | </td> |
1521 | 1521 | </tr> |
@@ -1533,9 +1533,9 @@ discard block |
||
1533 | 1533 | <?php |
1534 | 1534 | } |
1535 | 1535 | |
1536 | - public function customizer_settings($wp_customize){ |
|
1536 | + public function customizer_settings($wp_customize) { |
|
1537 | 1537 | $wp_customize->add_section('aui_settings', array( |
1538 | - 'title' => __('AyeCode UI','aui'), |
|
1538 | + 'title' => __('AyeCode UI', 'aui'), |
|
1539 | 1539 | 'priority' => 120, |
1540 | 1540 | )); |
1541 | 1541 | |
@@ -1549,8 +1549,8 @@ discard block |
||
1549 | 1549 | 'type' => 'option', |
1550 | 1550 | 'transport' => 'refresh', |
1551 | 1551 | )); |
1552 | - $wp_customize->add_control( new WP_Customize_Color_Control($wp_customize, 'color_primary', array( |
|
1553 | - 'label' => __('Primary Color','aui'), |
|
1552 | + $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'color_primary', array( |
|
1553 | + 'label' => __('Primary Color', 'aui'), |
|
1554 | 1554 | 'section' => 'aui_settings', |
1555 | 1555 | 'settings' => 'aui_options[color_primary]', |
1556 | 1556 | ))); |
@@ -1562,8 +1562,8 @@ discard block |
||
1562 | 1562 | 'type' => 'option', |
1563 | 1563 | 'transport' => 'refresh', |
1564 | 1564 | )); |
1565 | - $wp_customize->add_control( new WP_Customize_Color_Control($wp_customize, 'color_secondary', array( |
|
1566 | - 'label' => __('Secondary Color','aui'), |
|
1565 | + $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'color_secondary', array( |
|
1566 | + 'label' => __('Secondary Color', 'aui'), |
|
1567 | 1567 | 'section' => 'aui_settings', |
1568 | 1568 | 'settings' => 'aui_options[color_secondary]', |
1569 | 1569 | ))); |
@@ -1589,12 +1589,12 @@ discard block |
||
1589 | 1589 | .collapse.show:not(.in){display: inherit;} |
1590 | 1590 | .fade.show{opacity: 1;} |
1591 | 1591 | |
1592 | - <?php if( defined( 'SVQ_THEME_VERSION' ) ){ ?> |
|
1592 | + <?php if (defined('SVQ_THEME_VERSION')) { ?> |
|
1593 | 1593 | /* KLEO theme specific */ |
1594 | 1594 | .kleo-main-header .navbar-collapse.collapse.show:not(.in){display: block !important;} |
1595 | 1595 | <?php } ?> |
1596 | 1596 | |
1597 | - <?php if( defined( 'FUSION_BUILDER_VERSION' ) ){ ?> |
|
1597 | + <?php if (defined('FUSION_BUILDER_VERSION')) { ?> |
|
1598 | 1598 | /* With Avada builder */ |
1599 | 1599 | body.modal-open .modal.in {opacity:1;z-index: 99999} |
1600 | 1600 | body.modal-open .modal.bsui.in .modal-content {box-shadow: none;} |
@@ -1605,10 +1605,10 @@ discard block |
||
1605 | 1605 | <?php } ?> |
1606 | 1606 | </style> |
1607 | 1607 | <?php |
1608 | - return str_replace( array( |
|
1608 | + return str_replace(array( |
|
1609 | 1609 | '<style>', |
1610 | 1610 | '</style>' |
1611 | - ), '', self::minify_css( ob_get_clean() ) ); |
|
1611 | + ), '', self::minify_css(ob_get_clean())); |
|
1612 | 1612 | } |
1613 | 1613 | |
1614 | 1614 | |
@@ -1625,22 +1625,22 @@ discard block |
||
1625 | 1625 | <?php |
1626 | 1626 | |
1627 | 1627 | // BS v3 compat |
1628 | - if( self::is_bs3_compat() ){ |
|
1628 | + if (self::is_bs3_compat()) { |
|
1629 | 1629 | echo self::bs3_compat_css(); |
1630 | 1630 | } |
1631 | 1631 | |
1632 | - if(!is_admin() && $primary_color != AUI_PRIMARY_COLOR_ORIGINAL){ |
|
1633 | - echo self::css_primary($primary_color,$compatibility); |
|
1632 | + if (!is_admin() && $primary_color != AUI_PRIMARY_COLOR_ORIGINAL) { |
|
1633 | + echo self::css_primary($primary_color, $compatibility); |
|
1634 | 1634 | } |
1635 | 1635 | |
1636 | - if(!is_admin() && $secondary_color != AUI_SECONDARY_COLOR_ORIGINAL){ |
|
1637 | - echo self::css_secondary($settings['color_secondary'],$compatibility); |
|
1636 | + if (!is_admin() && $secondary_color != AUI_SECONDARY_COLOR_ORIGINAL) { |
|
1637 | + echo self::css_secondary($settings['color_secondary'], $compatibility); |
|
1638 | 1638 | } |
1639 | 1639 | |
1640 | 1640 | // Set admin bar z-index lower when modal is open. |
1641 | 1641 | echo ' body.modal-open #wpadminbar{z-index:999}.embed-responsive-16by9 .fluid-width-video-wrapper{padding:0 !important;position:initial}'; |
1642 | 1642 | |
1643 | - if(is_admin()){ |
|
1643 | + if (is_admin()) { |
|
1644 | 1644 | echo ' body.modal-open #adminmenuwrap{z-index:999} body.modal-open #wpadminbar{z-index:1025}'; |
1645 | 1645 | } |
1646 | 1646 | ?> |
@@ -1651,10 +1651,10 @@ discard block |
||
1651 | 1651 | /* |
1652 | 1652 | * We only add the <script> tags for code highlighting, so we strip them from the output. |
1653 | 1653 | */ |
1654 | - return str_replace( array( |
|
1654 | + return str_replace(array( |
|
1655 | 1655 | '<style>', |
1656 | 1656 | '</style>' |
1657 | - ), '', self::minify_css( ob_get_clean() ) ); |
|
1657 | + ), '', self::minify_css(ob_get_clean())); |
|
1658 | 1658 | } |
1659 | 1659 | |
1660 | 1660 | /** |
@@ -1662,48 +1662,48 @@ discard block |
||
1662 | 1662 | * |
1663 | 1663 | * @return bool |
1664 | 1664 | */ |
1665 | - public static function is_bs3_compat(){ |
|
1665 | + public static function is_bs3_compat() { |
|
1666 | 1666 | return defined('AYECODE_UI_BS3_COMPAT') || defined('SVQ_THEME_VERSION') || defined('FUSION_BUILDER_VERSION'); |
1667 | 1667 | } |
1668 | 1668 | |
1669 | - public static function css_primary($color_code,$compatibility){; |
|
1669 | + public static function css_primary($color_code, $compatibility) {; |
|
1670 | 1670 | $color_code = sanitize_hex_color($color_code); |
1671 | - if(!$color_code){return '';} |
|
1671 | + if (!$color_code) {return ''; } |
|
1672 | 1672 | /** |
1673 | 1673 | * c = color, b = background color, o = border-color, f = fill |
1674 | 1674 | */ |
1675 | 1675 | $selectors = array( |
1676 | 1676 | 'a' => array('c'), |
1677 | - '.btn-primary' => array('b','o'), |
|
1678 | - '.btn-primary.disabled' => array('b','o'), |
|
1679 | - '.btn-primary:disabled' => array('b','o'), |
|
1680 | - '.btn-outline-primary' => array('c','o'), |
|
1681 | - '.btn-outline-primary:hover' => array('b','o'), |
|
1682 | - '.btn-outline-primary:not(:disabled):not(.disabled).active' => array('b','o'), |
|
1683 | - '.btn-outline-primary:not(:disabled):not(.disabled):active' => array('b','o'), |
|
1684 | - '.show>.btn-outline-primary.dropdown-toggle' => array('b','o'), |
|
1677 | + '.btn-primary' => array('b', 'o'), |
|
1678 | + '.btn-primary.disabled' => array('b', 'o'), |
|
1679 | + '.btn-primary:disabled' => array('b', 'o'), |
|
1680 | + '.btn-outline-primary' => array('c', 'o'), |
|
1681 | + '.btn-outline-primary:hover' => array('b', 'o'), |
|
1682 | + '.btn-outline-primary:not(:disabled):not(.disabled).active' => array('b', 'o'), |
|
1683 | + '.btn-outline-primary:not(:disabled):not(.disabled):active' => array('b', 'o'), |
|
1684 | + '.show>.btn-outline-primary.dropdown-toggle' => array('b', 'o'), |
|
1685 | 1685 | '.btn-link' => array('c'), |
1686 | 1686 | '.dropdown-item.active' => array('b'), |
1687 | - '.custom-control-input:checked~.custom-control-label::before' => array('b','o'), |
|
1688 | - '.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before' => array('b','o'), |
|
1687 | + '.custom-control-input:checked~.custom-control-label::before' => array('b', 'o'), |
|
1688 | + '.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before' => array('b', 'o'), |
|
1689 | 1689 | // '.custom-range::-webkit-slider-thumb' => array('b'), // these break the inline rules... |
1690 | 1690 | // '.custom-range::-moz-range-thumb' => array('b'), |
1691 | 1691 | // '.custom-range::-ms-thumb' => array('b'), |
1692 | 1692 | '.nav-pills .nav-link.active' => array('b'), |
1693 | 1693 | '.nav-pills .show>.nav-link' => array('b'), |
1694 | 1694 | '.page-link' => array('c'), |
1695 | - '.page-item.active .page-link' => array('b','o'), |
|
1695 | + '.page-item.active .page-link' => array('b', 'o'), |
|
1696 | 1696 | '.badge-primary' => array('b'), |
1697 | - '.alert-primary' => array('b','o'), |
|
1697 | + '.alert-primary' => array('b', 'o'), |
|
1698 | 1698 | '.progress-bar' => array('b'), |
1699 | - '.list-group-item.active' => array('b','o'), |
|
1700 | - '.bg-primary' => array('b','f'), |
|
1699 | + '.list-group-item.active' => array('b', 'o'), |
|
1700 | + '.bg-primary' => array('b', 'f'), |
|
1701 | 1701 | '.btn-link.btn-primary' => array('c'), |
1702 | 1702 | '.select2-container .select2-results__option--highlighted.select2-results__option[aria-selected=true]' => array('b'), |
1703 | 1703 | ); |
1704 | 1704 | |
1705 | 1705 | $important_selectors = array( |
1706 | - '.bg-primary' => array('b','f'), |
|
1706 | + '.bg-primary' => array('b', 'f'), |
|
1707 | 1707 | '.border-primary' => array('o'), |
1708 | 1708 | '.text-primary' => array('c'), |
1709 | 1709 | ); |
@@ -1720,116 +1720,116 @@ discard block |
||
1720 | 1720 | $output = ''; |
1721 | 1721 | |
1722 | 1722 | // build rules into each type |
1723 | - foreach($selectors as $selector => $types){ |
|
1724 | - $selector = $compatibility ? ".bsui ".$selector : $selector; |
|
1725 | - $types = array_combine($types,$types); |
|
1726 | - if(isset($types['c'])){$color[] = $selector;} |
|
1727 | - if(isset($types['b'])){$background[] = $selector;} |
|
1728 | - if(isset($types['o'])){$border[] = $selector;} |
|
1729 | - if(isset($types['f'])){$fill[] = $selector;} |
|
1723 | + foreach ($selectors as $selector => $types) { |
|
1724 | + $selector = $compatibility ? ".bsui " . $selector : $selector; |
|
1725 | + $types = array_combine($types, $types); |
|
1726 | + if (isset($types['c'])) {$color[] = $selector; } |
|
1727 | + if (isset($types['b'])) {$background[] = $selector; } |
|
1728 | + if (isset($types['o'])) {$border[] = $selector; } |
|
1729 | + if (isset($types['f'])) {$fill[] = $selector; } |
|
1730 | 1730 | } |
1731 | 1731 | |
1732 | 1732 | // build rules into each type |
1733 | - foreach($important_selectors as $selector => $types){ |
|
1734 | - $selector = $compatibility ? ".bsui ".$selector : $selector; |
|
1735 | - $types = array_combine($types,$types); |
|
1736 | - if(isset($types['c'])){$color_i[] = $selector;} |
|
1737 | - if(isset($types['b'])){$background_i[] = $selector;} |
|
1738 | - if(isset($types['o'])){$border_i[] = $selector;} |
|
1739 | - if(isset($types['f'])){$fill_i[] = $selector;} |
|
1733 | + foreach ($important_selectors as $selector => $types) { |
|
1734 | + $selector = $compatibility ? ".bsui " . $selector : $selector; |
|
1735 | + $types = array_combine($types, $types); |
|
1736 | + if (isset($types['c'])) {$color_i[] = $selector; } |
|
1737 | + if (isset($types['b'])) {$background_i[] = $selector; } |
|
1738 | + if (isset($types['o'])) {$border_i[] = $selector; } |
|
1739 | + if (isset($types['f'])) {$fill_i[] = $selector; } |
|
1740 | 1740 | } |
1741 | 1741 | |
1742 | 1742 | // add any color rules |
1743 | - if(!empty($color)){ |
|
1744 | - $output .= implode(",",$color) . "{color: $color_code;} "; |
|
1743 | + if (!empty($color)) { |
|
1744 | + $output .= implode(",", $color) . "{color: $color_code;} "; |
|
1745 | 1745 | } |
1746 | - if(!empty($color_i)){ |
|
1747 | - $output .= implode(",",$color_i) . "{color: $color_code !important;} "; |
|
1746 | + if (!empty($color_i)) { |
|
1747 | + $output .= implode(",", $color_i) . "{color: $color_code !important;} "; |
|
1748 | 1748 | } |
1749 | 1749 | |
1750 | 1750 | // add any background color rules |
1751 | - if(!empty($background)){ |
|
1752 | - $output .= implode(",",$background) . "{background-color: $color_code;} "; |
|
1751 | + if (!empty($background)) { |
|
1752 | + $output .= implode(",", $background) . "{background-color: $color_code;} "; |
|
1753 | 1753 | } |
1754 | - if(!empty($background_i)){ |
|
1755 | - $output .= implode(",",$background_i) . "{background-color: $color_code !important;} "; |
|
1754 | + if (!empty($background_i)) { |
|
1755 | + $output .= implode(",", $background_i) . "{background-color: $color_code !important;} "; |
|
1756 | 1756 | } |
1757 | 1757 | |
1758 | 1758 | // add any border color rules |
1759 | - if(!empty($border)){ |
|
1760 | - $output .= implode(",",$border) . "{border-color: $color_code;} "; |
|
1759 | + if (!empty($border)) { |
|
1760 | + $output .= implode(",", $border) . "{border-color: $color_code;} "; |
|
1761 | 1761 | } |
1762 | - if(!empty($border_i)){ |
|
1763 | - $output .= implode(",",$border_i) . "{border-color: $color_code !important;} "; |
|
1762 | + if (!empty($border_i)) { |
|
1763 | + $output .= implode(",", $border_i) . "{border-color: $color_code !important;} "; |
|
1764 | 1764 | } |
1765 | 1765 | |
1766 | 1766 | // add any fill color rules |
1767 | - if(!empty($fill)){ |
|
1768 | - $output .= implode(",",$fill) . "{fill: $color_code;} "; |
|
1767 | + if (!empty($fill)) { |
|
1768 | + $output .= implode(",", $fill) . "{fill: $color_code;} "; |
|
1769 | 1769 | } |
1770 | - if(!empty($fill_i)){ |
|
1771 | - $output .= implode(",",$fill_i) . "{fill: $color_code !important;} "; |
|
1770 | + if (!empty($fill_i)) { |
|
1771 | + $output .= implode(",", $fill_i) . "{fill: $color_code !important;} "; |
|
1772 | 1772 | } |
1773 | 1773 | |
1774 | 1774 | |
1775 | 1775 | $prefix = $compatibility ? ".bsui " : ""; |
1776 | 1776 | |
1777 | 1777 | // darken |
1778 | - $darker_075 = self::css_hex_lighten_darken($color_code,"-0.075"); |
|
1779 | - $darker_10 = self::css_hex_lighten_darken($color_code,"-0.10"); |
|
1780 | - $darker_125 = self::css_hex_lighten_darken($color_code,"-0.125"); |
|
1778 | + $darker_075 = self::css_hex_lighten_darken($color_code, "-0.075"); |
|
1779 | + $darker_10 = self::css_hex_lighten_darken($color_code, "-0.10"); |
|
1780 | + $darker_125 = self::css_hex_lighten_darken($color_code, "-0.125"); |
|
1781 | 1781 | |
1782 | 1782 | // lighten |
1783 | - $lighten_25 = self::css_hex_lighten_darken($color_code,"0.25"); |
|
1783 | + $lighten_25 = self::css_hex_lighten_darken($color_code, "0.25"); |
|
1784 | 1784 | |
1785 | 1785 | // opacity see https://css-tricks.com/8-digit-hex-codes/ |
1786 | - $op_25 = $color_code."40"; // 25% opacity |
|
1786 | + $op_25 = $color_code . "40"; // 25% opacity |
|
1787 | 1787 | |
1788 | 1788 | |
1789 | 1789 | // button states |
1790 | - $output .= $prefix ." .btn-primary:hover, $prefix .btn-primary:focus, $prefix .btn-primary.focus{background-color: ".$darker_075."; border-color: ".$darker_10.";} "; |
|
1791 | - $output .= $prefix ." .btn-outline-primary:not(:disabled):not(.disabled):active:focus, $prefix .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show>$prefix .btn-outline-primary.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem $op_25;} "; |
|
1792 | - $output .= $prefix ." .btn-primary:not(:disabled):not(.disabled):active, $prefix .btn-primary:not(:disabled):not(.disabled).active, .show>$prefix .btn-primary.dropdown-toggle{background-color: ".$darker_10."; border-color: ".$darker_125.";} "; |
|
1793 | - $output .= $prefix ." .btn-primary:not(:disabled):not(.disabled):active:focus, $prefix .btn-primary:not(:disabled):not(.disabled).active:focus, .show>$prefix .btn-primary.dropdown-toggle:focus {box-shadow: 0 0 0 0.2rem $op_25;} "; |
|
1790 | + $output .= $prefix . " .btn-primary:hover, $prefix .btn-primary:focus, $prefix .btn-primary.focus{background-color: " . $darker_075 . "; border-color: " . $darker_10 . ";} "; |
|
1791 | + $output .= $prefix . " .btn-outline-primary:not(:disabled):not(.disabled):active:focus, $prefix .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show>$prefix .btn-outline-primary.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem $op_25;} "; |
|
1792 | + $output .= $prefix . " .btn-primary:not(:disabled):not(.disabled):active, $prefix .btn-primary:not(:disabled):not(.disabled).active, .show>$prefix .btn-primary.dropdown-toggle{background-color: " . $darker_10 . "; border-color: " . $darker_125 . ";} "; |
|
1793 | + $output .= $prefix . " .btn-primary:not(:disabled):not(.disabled):active:focus, $prefix .btn-primary:not(:disabled):not(.disabled).active:focus, .show>$prefix .btn-primary.dropdown-toggle:focus {box-shadow: 0 0 0 0.2rem $op_25;} "; |
|
1794 | 1794 | |
1795 | 1795 | |
1796 | 1796 | // dropdown's |
1797 | - $output .= $prefix ." .dropdown-item.active, $prefix .dropdown-item:active{background-color: $color_code;} "; |
|
1797 | + $output .= $prefix . " .dropdown-item.active, $prefix .dropdown-item:active{background-color: $color_code;} "; |
|
1798 | 1798 | |
1799 | 1799 | |
1800 | 1800 | // input states |
1801 | - $output .= $prefix ." .form-control:focus{border-color: ".$lighten_25.";box-shadow: 0 0 0 0.2rem $op_25;} "; |
|
1801 | + $output .= $prefix . " .form-control:focus{border-color: " . $lighten_25 . ";box-shadow: 0 0 0 0.2rem $op_25;} "; |
|
1802 | 1802 | |
1803 | 1803 | // page link |
1804 | - $output .= $prefix ." .page-link:focus{box-shadow: 0 0 0 0.2rem $op_25;} "; |
|
1804 | + $output .= $prefix . " .page-link:focus{box-shadow: 0 0 0 0.2rem $op_25;} "; |
|
1805 | 1805 | |
1806 | 1806 | return $output; |
1807 | 1807 | } |
1808 | 1808 | |
1809 | - public static function css_secondary($color_code,$compatibility){; |
|
1809 | + public static function css_secondary($color_code, $compatibility) {; |
|
1810 | 1810 | $color_code = sanitize_hex_color($color_code); |
1811 | - if(!$color_code){return '';} |
|
1811 | + if (!$color_code) {return ''; } |
|
1812 | 1812 | /** |
1813 | 1813 | * c = color, b = background color, o = border-color, f = fill |
1814 | 1814 | */ |
1815 | 1815 | $selectors = array( |
1816 | - '.btn-secondary' => array('b','o'), |
|
1817 | - '.btn-secondary.disabled' => array('b','o'), |
|
1818 | - '.btn-secondary:disabled' => array('b','o'), |
|
1819 | - '.btn-outline-secondary' => array('c','o'), |
|
1820 | - '.btn-outline-secondary:hover' => array('b','o'), |
|
1816 | + '.btn-secondary' => array('b', 'o'), |
|
1817 | + '.btn-secondary.disabled' => array('b', 'o'), |
|
1818 | + '.btn-secondary:disabled' => array('b', 'o'), |
|
1819 | + '.btn-outline-secondary' => array('c', 'o'), |
|
1820 | + '.btn-outline-secondary:hover' => array('b', 'o'), |
|
1821 | 1821 | '.btn-outline-secondary.disabled' => array('c'), |
1822 | 1822 | '.btn-outline-secondary:disabled' => array('c'), |
1823 | - '.btn-outline-secondary:not(:disabled):not(.disabled):active' => array('b','o'), |
|
1824 | - '.btn-outline-secondary:not(:disabled):not(.disabled).active' => array('b','o'), |
|
1825 | - '.btn-outline-secondary.dropdown-toggle' => array('b','o'), |
|
1823 | + '.btn-outline-secondary:not(:disabled):not(.disabled):active' => array('b', 'o'), |
|
1824 | + '.btn-outline-secondary:not(:disabled):not(.disabled).active' => array('b', 'o'), |
|
1825 | + '.btn-outline-secondary.dropdown-toggle' => array('b', 'o'), |
|
1826 | 1826 | '.badge-secondary' => array('b'), |
1827 | - '.alert-secondary' => array('b','o'), |
|
1827 | + '.alert-secondary' => array('b', 'o'), |
|
1828 | 1828 | '.btn-link.btn-secondary' => array('c'), |
1829 | 1829 | ); |
1830 | 1830 | |
1831 | 1831 | $important_selectors = array( |
1832 | - '.bg-secondary' => array('b','f'), |
|
1832 | + '.bg-secondary' => array('b', 'f'), |
|
1833 | 1833 | '.border-secondary' => array('o'), |
1834 | 1834 | '.text-secondary' => array('c'), |
1835 | 1835 | ); |
@@ -1846,77 +1846,77 @@ discard block |
||
1846 | 1846 | $output = ''; |
1847 | 1847 | |
1848 | 1848 | // build rules into each type |
1849 | - foreach($selectors as $selector => $types){ |
|
1850 | - $selector = $compatibility ? ".bsui ".$selector : $selector; |
|
1851 | - $types = array_combine($types,$types); |
|
1852 | - if(isset($types['c'])){$color[] = $selector;} |
|
1853 | - if(isset($types['b'])){$background[] = $selector;} |
|
1854 | - if(isset($types['o'])){$border[] = $selector;} |
|
1855 | - if(isset($types['f'])){$fill[] = $selector;} |
|
1849 | + foreach ($selectors as $selector => $types) { |
|
1850 | + $selector = $compatibility ? ".bsui " . $selector : $selector; |
|
1851 | + $types = array_combine($types, $types); |
|
1852 | + if (isset($types['c'])) {$color[] = $selector; } |
|
1853 | + if (isset($types['b'])) {$background[] = $selector; } |
|
1854 | + if (isset($types['o'])) {$border[] = $selector; } |
|
1855 | + if (isset($types['f'])) {$fill[] = $selector; } |
|
1856 | 1856 | } |
1857 | 1857 | |
1858 | 1858 | // build rules into each type |
1859 | - foreach($important_selectors as $selector => $types){ |
|
1860 | - $selector = $compatibility ? ".bsui ".$selector : $selector; |
|
1861 | - $types = array_combine($types,$types); |
|
1862 | - if(isset($types['c'])){$color_i[] = $selector;} |
|
1863 | - if(isset($types['b'])){$background_i[] = $selector;} |
|
1864 | - if(isset($types['o'])){$border_i[] = $selector;} |
|
1865 | - if(isset($types['f'])){$fill_i[] = $selector;} |
|
1859 | + foreach ($important_selectors as $selector => $types) { |
|
1860 | + $selector = $compatibility ? ".bsui " . $selector : $selector; |
|
1861 | + $types = array_combine($types, $types); |
|
1862 | + if (isset($types['c'])) {$color_i[] = $selector; } |
|
1863 | + if (isset($types['b'])) {$background_i[] = $selector; } |
|
1864 | + if (isset($types['o'])) {$border_i[] = $selector; } |
|
1865 | + if (isset($types['f'])) {$fill_i[] = $selector; } |
|
1866 | 1866 | } |
1867 | 1867 | |
1868 | 1868 | // add any color rules |
1869 | - if(!empty($color)){ |
|
1870 | - $output .= implode(",",$color) . "{color: $color_code;} "; |
|
1869 | + if (!empty($color)) { |
|
1870 | + $output .= implode(",", $color) . "{color: $color_code;} "; |
|
1871 | 1871 | } |
1872 | - if(!empty($color_i)){ |
|
1873 | - $output .= implode(",",$color_i) . "{color: $color_code !important;} "; |
|
1872 | + if (!empty($color_i)) { |
|
1873 | + $output .= implode(",", $color_i) . "{color: $color_code !important;} "; |
|
1874 | 1874 | } |
1875 | 1875 | |
1876 | 1876 | // add any background color rules |
1877 | - if(!empty($background)){ |
|
1878 | - $output .= implode(",",$background) . "{background-color: $color_code;} "; |
|
1877 | + if (!empty($background)) { |
|
1878 | + $output .= implode(",", $background) . "{background-color: $color_code;} "; |
|
1879 | 1879 | } |
1880 | - if(!empty($background_i)){ |
|
1881 | - $output .= implode(",",$background_i) . "{background-color: $color_code !important;} "; |
|
1880 | + if (!empty($background_i)) { |
|
1881 | + $output .= implode(",", $background_i) . "{background-color: $color_code !important;} "; |
|
1882 | 1882 | } |
1883 | 1883 | |
1884 | 1884 | // add any border color rules |
1885 | - if(!empty($border)){ |
|
1886 | - $output .= implode(",",$border) . "{border-color: $color_code;} "; |
|
1885 | + if (!empty($border)) { |
|
1886 | + $output .= implode(",", $border) . "{border-color: $color_code;} "; |
|
1887 | 1887 | } |
1888 | - if(!empty($border_i)){ |
|
1889 | - $output .= implode(",",$border_i) . "{border-color: $color_code !important;} "; |
|
1888 | + if (!empty($border_i)) { |
|
1889 | + $output .= implode(",", $border_i) . "{border-color: $color_code !important;} "; |
|
1890 | 1890 | } |
1891 | 1891 | |
1892 | 1892 | // add any fill color rules |
1893 | - if(!empty($fill)){ |
|
1894 | - $output .= implode(",",$fill) . "{fill: $color_code;} "; |
|
1893 | + if (!empty($fill)) { |
|
1894 | + $output .= implode(",", $fill) . "{fill: $color_code;} "; |
|
1895 | 1895 | } |
1896 | - if(!empty($fill_i)){ |
|
1897 | - $output .= implode(",",$fill_i) . "{fill: $color_code !important;} "; |
|
1896 | + if (!empty($fill_i)) { |
|
1897 | + $output .= implode(",", $fill_i) . "{fill: $color_code !important;} "; |
|
1898 | 1898 | } |
1899 | 1899 | |
1900 | 1900 | |
1901 | 1901 | $prefix = $compatibility ? ".bsui " : ""; |
1902 | 1902 | |
1903 | 1903 | // darken |
1904 | - $darker_075 = self::css_hex_lighten_darken($color_code,"-0.075"); |
|
1905 | - $darker_10 = self::css_hex_lighten_darken($color_code,"-0.10"); |
|
1906 | - $darker_125 = self::css_hex_lighten_darken($color_code,"-0.125"); |
|
1904 | + $darker_075 = self::css_hex_lighten_darken($color_code, "-0.075"); |
|
1905 | + $darker_10 = self::css_hex_lighten_darken($color_code, "-0.10"); |
|
1906 | + $darker_125 = self::css_hex_lighten_darken($color_code, "-0.125"); |
|
1907 | 1907 | |
1908 | 1908 | // lighten |
1909 | - $lighten_25 = self::css_hex_lighten_darken($color_code,"0.25"); |
|
1909 | + $lighten_25 = self::css_hex_lighten_darken($color_code, "0.25"); |
|
1910 | 1910 | |
1911 | 1911 | // opacity see https://css-tricks.com/8-digit-hex-codes/ |
1912 | - $op_25 = $color_code."40"; // 25% opacity |
|
1912 | + $op_25 = $color_code . "40"; // 25% opacity |
|
1913 | 1913 | |
1914 | 1914 | |
1915 | 1915 | // button states |
1916 | - $output .= $prefix ." .btn-secondary:hover{background-color: ".$darker_075."; border-color: ".$darker_10.";} "; |
|
1917 | - $output .= $prefix ." .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, $prefix .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show>$prefix .btn-outline-secondary.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem $op_25;} "; |
|
1918 | - $output .= $prefix ." .btn-secondary:not(:disabled):not(.disabled):active, $prefix .btn-secondary:not(:disabled):not(.disabled).active, .show>$prefix .btn-secondary.dropdown-toggle{background-color: ".$darker_10."; border-color: ".$darker_125.";} "; |
|
1919 | - $output .= $prefix ." .btn-secondary:not(:disabled):not(.disabled):active:focus, $prefix .btn-secondary:not(:disabled):not(.disabled).active:focus, .show>$prefix .btn-secondary.dropdown-toggle:focus {box-shadow: 0 0 0 0.2rem $op_25;} "; |
|
1916 | + $output .= $prefix . " .btn-secondary:hover{background-color: " . $darker_075 . "; border-color: " . $darker_10 . ";} "; |
|
1917 | + $output .= $prefix . " .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, $prefix .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show>$prefix .btn-outline-secondary.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem $op_25;} "; |
|
1918 | + $output .= $prefix . " .btn-secondary:not(:disabled):not(.disabled):active, $prefix .btn-secondary:not(:disabled):not(.disabled).active, .show>$prefix .btn-secondary.dropdown-toggle{background-color: " . $darker_10 . "; border-color: " . $darker_125 . ";} "; |
|
1919 | + $output .= $prefix . " .btn-secondary:not(:disabled):not(.disabled):active:focus, $prefix .btn-secondary:not(:disabled):not(.disabled).active:focus, .show>$prefix .btn-secondary.dropdown-toggle:focus {box-shadow: 0 0 0 0.2rem $op_25;} "; |
|
1920 | 1920 | |
1921 | 1921 | |
1922 | 1922 | return $output; |
@@ -1952,8 +1952,8 @@ discard block |
||
1952 | 1952 | /** |
1953 | 1953 | * Check if we should display examples. |
1954 | 1954 | */ |
1955 | - public function maybe_show_examples(){ |
|
1956 | - if(current_user_can('manage_options') && isset($_REQUEST['preview-aui'])){ |
|
1955 | + public function maybe_show_examples() { |
|
1956 | + if (current_user_can('manage_options') && isset($_REQUEST['preview-aui'])) { |
|
1957 | 1957 | echo "<head>"; |
1958 | 1958 | wp_head(); |
1959 | 1959 | echo "</head>"; |
@@ -1969,7 +1969,7 @@ discard block |
||
1969 | 1969 | * |
1970 | 1970 | * @return string |
1971 | 1971 | */ |
1972 | - public function get_examples(){ |
|
1972 | + public function get_examples() { |
|
1973 | 1973 | $output = ''; |
1974 | 1974 | |
1975 | 1975 | |
@@ -2075,74 +2075,74 @@ discard block |
||
2075 | 2075 | */ |
2076 | 2076 | public static function calendar_params() { |
2077 | 2077 | $params = array( |
2078 | - 'month_long_1' => __( 'January', 'aui' ), |
|
2079 | - 'month_long_2' => __( 'February', 'aui' ), |
|
2080 | - 'month_long_3' => __( 'March', 'aui' ), |
|
2081 | - 'month_long_4' => __( 'April', 'aui' ), |
|
2082 | - 'month_long_5' => __( 'May', 'aui' ), |
|
2083 | - 'month_long_6' => __( 'June', 'aui' ), |
|
2084 | - 'month_long_7' => __( 'July', 'aui' ), |
|
2085 | - 'month_long_8' => __( 'August', 'aui' ), |
|
2086 | - 'month_long_9' => __( 'September', 'aui' ), |
|
2087 | - 'month_long_10' => __( 'October', 'aui' ), |
|
2088 | - 'month_long_11' => __( 'November', 'aui' ), |
|
2089 | - 'month_long_12' => __( 'December', 'aui' ), |
|
2090 | - 'month_s_1' => _x( 'Jan', 'January abbreviation', 'aui' ), |
|
2091 | - 'month_s_2' => _x( 'Feb', 'February abbreviation', 'aui' ), |
|
2092 | - 'month_s_3' => _x( 'Mar', 'March abbreviation', 'aui' ), |
|
2093 | - 'month_s_4' => _x( 'Apr', 'April abbreviation', 'aui' ), |
|
2094 | - 'month_s_5' => _x( 'May', 'May abbreviation', 'aui' ), |
|
2095 | - 'month_s_6' => _x( 'Jun', 'June abbreviation', 'aui' ), |
|
2096 | - 'month_s_7' => _x( 'Jul', 'July abbreviation', 'aui' ), |
|
2097 | - 'month_s_8' => _x( 'Aug', 'August abbreviation', 'aui' ), |
|
2098 | - 'month_s_9' => _x( 'Sep', 'September abbreviation', 'aui' ), |
|
2099 | - 'month_s_10' => _x( 'Oct', 'October abbreviation', 'aui' ), |
|
2100 | - 'month_s_11' => _x( 'Nov', 'November abbreviation', 'aui' ), |
|
2101 | - 'month_s_12' => _x( 'Dec', 'December abbreviation', 'aui' ), |
|
2102 | - 'day_s1_1' => _x( 'S', 'Sunday initial', 'aui' ), |
|
2103 | - 'day_s1_2' => _x( 'M', 'Monday initial', 'aui' ), |
|
2104 | - 'day_s1_3' => _x( 'T', 'Tuesday initial', 'aui' ), |
|
2105 | - 'day_s1_4' => _x( 'W', 'Wednesday initial', 'aui' ), |
|
2106 | - 'day_s1_5' => _x( 'T', 'Friday initial', 'aui' ), |
|
2107 | - 'day_s1_6' => _x( 'F', 'Thursday initial', 'aui' ), |
|
2108 | - 'day_s1_7' => _x( 'S', 'Saturday initial', 'aui' ), |
|
2109 | - 'day_s2_1' => __( 'Su', 'aui' ), |
|
2110 | - 'day_s2_2' => __( 'Mo', 'aui' ), |
|
2111 | - 'day_s2_3' => __( 'Tu', 'aui' ), |
|
2112 | - 'day_s2_4' => __( 'We', 'aui' ), |
|
2113 | - 'day_s2_5' => __( 'Th', 'aui' ), |
|
2114 | - 'day_s2_6' => __( 'Fr', 'aui' ), |
|
2115 | - 'day_s2_7' => __( 'Sa', 'aui' ), |
|
2116 | - 'day_s3_1' => __( 'Sun', 'aui' ), |
|
2117 | - 'day_s3_2' => __( 'Mon', 'aui' ), |
|
2118 | - 'day_s3_3' => __( 'Tue', 'aui' ), |
|
2119 | - 'day_s3_4' => __( 'Wed', 'aui' ), |
|
2120 | - 'day_s3_5' => __( 'Thu', 'aui' ), |
|
2121 | - 'day_s3_6' => __( 'Fri', 'aui' ), |
|
2122 | - 'day_s3_7' => __( 'Sat', 'aui' ), |
|
2123 | - 'day_s5_1' => __( 'Sunday', 'aui' ), |
|
2124 | - 'day_s5_2' => __( 'Monday', 'aui' ), |
|
2125 | - 'day_s5_3' => __( 'Tuesday', 'aui' ), |
|
2126 | - 'day_s5_4' => __( 'Wednesday', 'aui' ), |
|
2127 | - 'day_s5_5' => __( 'Thursday', 'aui' ), |
|
2128 | - 'day_s5_6' => __( 'Friday', 'aui' ), |
|
2129 | - 'day_s5_7' => __( 'Saturday', 'aui' ), |
|
2130 | - 'am_lower' => __( 'am', 'aui' ), |
|
2131 | - 'pm_lower' => __( 'pm', 'aui' ), |
|
2132 | - 'am_upper' => __( 'AM', 'aui' ), |
|
2133 | - 'pm_upper' => __( 'PM', 'aui' ), |
|
2134 | - 'firstDayOfWeek' => (int) get_option( 'start_of_week' ), |
|
2078 | + 'month_long_1' => __('January', 'aui'), |
|
2079 | + 'month_long_2' => __('February', 'aui'), |
|
2080 | + 'month_long_3' => __('March', 'aui'), |
|
2081 | + 'month_long_4' => __('April', 'aui'), |
|
2082 | + 'month_long_5' => __('May', 'aui'), |
|
2083 | + 'month_long_6' => __('June', 'aui'), |
|
2084 | + 'month_long_7' => __('July', 'aui'), |
|
2085 | + 'month_long_8' => __('August', 'aui'), |
|
2086 | + 'month_long_9' => __('September', 'aui'), |
|
2087 | + 'month_long_10' => __('October', 'aui'), |
|
2088 | + 'month_long_11' => __('November', 'aui'), |
|
2089 | + 'month_long_12' => __('December', 'aui'), |
|
2090 | + 'month_s_1' => _x('Jan', 'January abbreviation', 'aui'), |
|
2091 | + 'month_s_2' => _x('Feb', 'February abbreviation', 'aui'), |
|
2092 | + 'month_s_3' => _x('Mar', 'March abbreviation', 'aui'), |
|
2093 | + 'month_s_4' => _x('Apr', 'April abbreviation', 'aui'), |
|
2094 | + 'month_s_5' => _x('May', 'May abbreviation', 'aui'), |
|
2095 | + 'month_s_6' => _x('Jun', 'June abbreviation', 'aui'), |
|
2096 | + 'month_s_7' => _x('Jul', 'July abbreviation', 'aui'), |
|
2097 | + 'month_s_8' => _x('Aug', 'August abbreviation', 'aui'), |
|
2098 | + 'month_s_9' => _x('Sep', 'September abbreviation', 'aui'), |
|
2099 | + 'month_s_10' => _x('Oct', 'October abbreviation', 'aui'), |
|
2100 | + 'month_s_11' => _x('Nov', 'November abbreviation', 'aui'), |
|
2101 | + 'month_s_12' => _x('Dec', 'December abbreviation', 'aui'), |
|
2102 | + 'day_s1_1' => _x('S', 'Sunday initial', 'aui'), |
|
2103 | + 'day_s1_2' => _x('M', 'Monday initial', 'aui'), |
|
2104 | + 'day_s1_3' => _x('T', 'Tuesday initial', 'aui'), |
|
2105 | + 'day_s1_4' => _x('W', 'Wednesday initial', 'aui'), |
|
2106 | + 'day_s1_5' => _x('T', 'Friday initial', 'aui'), |
|
2107 | + 'day_s1_6' => _x('F', 'Thursday initial', 'aui'), |
|
2108 | + 'day_s1_7' => _x('S', 'Saturday initial', 'aui'), |
|
2109 | + 'day_s2_1' => __('Su', 'aui'), |
|
2110 | + 'day_s2_2' => __('Mo', 'aui'), |
|
2111 | + 'day_s2_3' => __('Tu', 'aui'), |
|
2112 | + 'day_s2_4' => __('We', 'aui'), |
|
2113 | + 'day_s2_5' => __('Th', 'aui'), |
|
2114 | + 'day_s2_6' => __('Fr', 'aui'), |
|
2115 | + 'day_s2_7' => __('Sa', 'aui'), |
|
2116 | + 'day_s3_1' => __('Sun', 'aui'), |
|
2117 | + 'day_s3_2' => __('Mon', 'aui'), |
|
2118 | + 'day_s3_3' => __('Tue', 'aui'), |
|
2119 | + 'day_s3_4' => __('Wed', 'aui'), |
|
2120 | + 'day_s3_5' => __('Thu', 'aui'), |
|
2121 | + 'day_s3_6' => __('Fri', 'aui'), |
|
2122 | + 'day_s3_7' => __('Sat', 'aui'), |
|
2123 | + 'day_s5_1' => __('Sunday', 'aui'), |
|
2124 | + 'day_s5_2' => __('Monday', 'aui'), |
|
2125 | + 'day_s5_3' => __('Tuesday', 'aui'), |
|
2126 | + 'day_s5_4' => __('Wednesday', 'aui'), |
|
2127 | + 'day_s5_5' => __('Thursday', 'aui'), |
|
2128 | + 'day_s5_6' => __('Friday', 'aui'), |
|
2129 | + 'day_s5_7' => __('Saturday', 'aui'), |
|
2130 | + 'am_lower' => __('am', 'aui'), |
|
2131 | + 'pm_lower' => __('pm', 'aui'), |
|
2132 | + 'am_upper' => __('AM', 'aui'), |
|
2133 | + 'pm_upper' => __('PM', 'aui'), |
|
2134 | + 'firstDayOfWeek' => (int) get_option('start_of_week'), |
|
2135 | 2135 | 'time_24hr' => false, |
2136 | - 'year' => __( 'Year', 'aui' ), |
|
2137 | - 'hour' => __( 'Hour', 'aui' ), |
|
2138 | - 'minute' => __( 'Minute', 'aui' ), |
|
2139 | - 'weekAbbreviation' => __( 'Wk', 'aui' ), |
|
2140 | - 'rangeSeparator' => __( ' to ', 'aui' ), |
|
2141 | - 'scrollTitle' => __( 'Scroll to increment', 'aui' ), |
|
2142 | - 'toggleTitle' => __( 'Click to toggle', 'aui' ) |
|
2136 | + 'year' => __('Year', 'aui'), |
|
2137 | + 'hour' => __('Hour', 'aui'), |
|
2138 | + 'minute' => __('Minute', 'aui'), |
|
2139 | + 'weekAbbreviation' => __('Wk', 'aui'), |
|
2140 | + 'rangeSeparator' => __(' to ', 'aui'), |
|
2141 | + 'scrollTitle' => __('Scroll to increment', 'aui'), |
|
2142 | + 'toggleTitle' => __('Click to toggle', 'aui') |
|
2143 | 2143 | ); |
2144 | 2144 | |
2145 | - return apply_filters( 'ayecode_ui_calendar_params', $params ); |
|
2145 | + return apply_filters('ayecode_ui_calendar_params', $params); |
|
2146 | 2146 | } |
2147 | 2147 | |
2148 | 2148 | /** |
@@ -2155,47 +2155,47 @@ discard block |
||
2155 | 2155 | public static function flatpickr_locale() { |
2156 | 2156 | $params = self::calendar_params(); |
2157 | 2157 | |
2158 | - if ( is_string( $params ) ) { |
|
2159 | - $params = html_entity_decode( $params, ENT_QUOTES, 'UTF-8' ); |
|
2158 | + if (is_string($params)) { |
|
2159 | + $params = html_entity_decode($params, ENT_QUOTES, 'UTF-8'); |
|
2160 | 2160 | } else { |
2161 | - foreach ( (array) $params as $key => $value ) { |
|
2162 | - if ( ! is_scalar( $value ) ) { |
|
2161 | + foreach ((array) $params as $key => $value) { |
|
2162 | + if (!is_scalar($value)) { |
|
2163 | 2163 | continue; |
2164 | 2164 | } |
2165 | 2165 | |
2166 | - $params[ $key ] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8' ); |
|
2166 | + $params[$key] = html_entity_decode((string) $value, ENT_QUOTES, 'UTF-8'); |
|
2167 | 2167 | } |
2168 | 2168 | } |
2169 | 2169 | |
2170 | 2170 | $day_s3 = array(); |
2171 | 2171 | $day_s5 = array(); |
2172 | 2172 | |
2173 | - for ( $i = 1; $i <= 7; $i ++ ) { |
|
2174 | - $day_s3[] = addslashes( $params[ 'day_s3_' . $i ] ); |
|
2175 | - $day_s5[] = addslashes( $params[ 'day_s3_' . $i ] ); |
|
2173 | + for ($i = 1; $i <= 7; $i++) { |
|
2174 | + $day_s3[] = addslashes($params['day_s3_' . $i]); |
|
2175 | + $day_s5[] = addslashes($params['day_s3_' . $i]); |
|
2176 | 2176 | } |
2177 | 2177 | |
2178 | 2178 | $month_s = array(); |
2179 | 2179 | $month_long = array(); |
2180 | 2180 | |
2181 | - for ( $i = 1; $i <= 12; $i ++ ) { |
|
2182 | - $month_s[] = addslashes( $params[ 'month_s_' . $i ] ); |
|
2183 | - $month_long[] = addslashes( $params[ 'month_long_' . $i ] ); |
|
2181 | + for ($i = 1; $i <= 12; $i++) { |
|
2182 | + $month_s[] = addslashes($params['month_s_' . $i]); |
|
2183 | + $month_long[] = addslashes($params['month_long_' . $i]); |
|
2184 | 2184 | } |
2185 | 2185 | |
2186 | 2186 | ob_start(); |
2187 | -if ( 0 ) { ?><script><?php } ?> |
|
2187 | +if (0) { ?><script><?php } ?> |
|
2188 | 2188 | { |
2189 | 2189 | weekdays: { |
2190 | - shorthand: ['<?php echo implode( "','", $day_s3 ); ?>'], |
|
2191 | - longhand: ['<?php echo implode( "','", $day_s5 ); ?>'], |
|
2190 | + shorthand: ['<?php echo implode("','", $day_s3); ?>'], |
|
2191 | + longhand: ['<?php echo implode("','", $day_s5); ?>'], |
|
2192 | 2192 | }, |
2193 | 2193 | months: { |
2194 | - shorthand: ['<?php echo implode( "','", $month_s ); ?>'], |
|
2195 | - longhand: ['<?php echo implode( "','", $month_long ); ?>'], |
|
2194 | + shorthand: ['<?php echo implode("','", $month_s); ?>'], |
|
2195 | + longhand: ['<?php echo implode("','", $month_long); ?>'], |
|
2196 | 2196 | }, |
2197 | 2197 | daysInMonth: [31,28,31,30,31,30,31,31,30,31,30,31], |
2198 | - firstDayOfWeek: <?php echo (int) $params[ 'firstDayOfWeek' ]; ?>, |
|
2198 | + firstDayOfWeek: <?php echo (int) $params['firstDayOfWeek']; ?>, |
|
2199 | 2199 | ordinal: function (nth) { |
2200 | 2200 | var s = nth % 100; |
2201 | 2201 | if (s > 3 && s < 21) |
@@ -2211,21 +2211,21 @@ discard block |
||
2211 | 2211 | return "th"; |
2212 | 2212 | } |
2213 | 2213 | }, |
2214 | - rangeSeparator: '<?php echo addslashes( $params[ 'rangeSeparator' ] ); ?>', |
|
2215 | - weekAbbreviation: '<?php echo addslashes( $params[ 'weekAbbreviation' ] ); ?>', |
|
2216 | - scrollTitle: '<?php echo addslashes( $params[ 'scrollTitle' ] ); ?>', |
|
2217 | - toggleTitle: '<?php echo addslashes( $params[ 'toggleTitle' ] ); ?>', |
|
2218 | - amPM: ['<?php echo addslashes( $params[ 'am_upper' ] ); ?>','<?php echo addslashes( $params[ 'pm_upper' ] ); ?>'], |
|
2219 | - yearAriaLabel: '<?php echo addslashes( $params[ 'year' ] ); ?>', |
|
2220 | - hourAriaLabel: '<?php echo addslashes( $params[ 'hour' ] ); ?>', |
|
2221 | - minuteAriaLabel: '<?php echo addslashes( $params[ 'minute' ] ); ?>', |
|
2222 | - time_24hr: <?php echo ( $params[ 'time_24hr' ] ? 'true' : 'false' ) ; ?> |
|
2214 | + rangeSeparator: '<?php echo addslashes($params['rangeSeparator']); ?>', |
|
2215 | + weekAbbreviation: '<?php echo addslashes($params['weekAbbreviation']); ?>', |
|
2216 | + scrollTitle: '<?php echo addslashes($params['scrollTitle']); ?>', |
|
2217 | + toggleTitle: '<?php echo addslashes($params['toggleTitle']); ?>', |
|
2218 | + amPM: ['<?php echo addslashes($params['am_upper']); ?>','<?php echo addslashes($params['pm_upper']); ?>'], |
|
2219 | + yearAriaLabel: '<?php echo addslashes($params['year']); ?>', |
|
2220 | + hourAriaLabel: '<?php echo addslashes($params['hour']); ?>', |
|
2221 | + minuteAriaLabel: '<?php echo addslashes($params['minute']); ?>', |
|
2222 | + time_24hr: <?php echo ($params['time_24hr'] ? 'true' : 'false'); ?> |
|
2223 | 2223 | } |
2224 | -<?php if ( 0 ) { ?></script><?php } ?> |
|
2224 | +<?php if (0) { ?></script><?php } ?> |
|
2225 | 2225 | <?php |
2226 | 2226 | $locale = ob_get_clean(); |
2227 | 2227 | |
2228 | - return apply_filters( 'ayecode_ui_flatpickr_locale', trim( $locale ) ); |
|
2228 | + return apply_filters('ayecode_ui_flatpickr_locale', trim($locale)); |
|
2229 | 2229 | } |
2230 | 2230 | |
2231 | 2231 | /** |
@@ -2237,20 +2237,20 @@ discard block |
||
2237 | 2237 | */ |
2238 | 2238 | public static function select2_params() { |
2239 | 2239 | $params = array( |
2240 | - 'i18n_select_state_text' => esc_attr__( 'Select an option…', 'aui' ), |
|
2241 | - 'i18n_no_matches' => _x( 'No matches found', 'enhanced select', 'aui' ), |
|
2242 | - 'i18n_ajax_error' => _x( 'Loading failed', 'enhanced select', 'aui' ), |
|
2243 | - 'i18n_input_too_short_1' => _x( 'Please enter 1 or more characters', 'enhanced select', 'aui' ), |
|
2244 | - 'i18n_input_too_short_n' => _x( 'Please enter %item% or more characters', 'enhanced select', 'aui' ), |
|
2245 | - 'i18n_input_too_long_1' => _x( 'Please delete 1 character', 'enhanced select', 'aui' ), |
|
2246 | - 'i18n_input_too_long_n' => _x( 'Please delete %item% characters', 'enhanced select', 'aui' ), |
|
2247 | - 'i18n_selection_too_long_1' => _x( 'You can only select 1 item', 'enhanced select', 'aui' ), |
|
2248 | - 'i18n_selection_too_long_n' => _x( 'You can only select %item% items', 'enhanced select', 'aui' ), |
|
2249 | - 'i18n_load_more' => _x( 'Loading more results…', 'enhanced select', 'aui' ), |
|
2250 | - 'i18n_searching' => _x( 'Searching…', 'enhanced select', 'aui' ) |
|
2240 | + 'i18n_select_state_text' => esc_attr__('Select an option…', 'aui'), |
|
2241 | + 'i18n_no_matches' => _x('No matches found', 'enhanced select', 'aui'), |
|
2242 | + 'i18n_ajax_error' => _x('Loading failed', 'enhanced select', 'aui'), |
|
2243 | + 'i18n_input_too_short_1' => _x('Please enter 1 or more characters', 'enhanced select', 'aui'), |
|
2244 | + 'i18n_input_too_short_n' => _x('Please enter %item% or more characters', 'enhanced select', 'aui'), |
|
2245 | + 'i18n_input_too_long_1' => _x('Please delete 1 character', 'enhanced select', 'aui'), |
|
2246 | + 'i18n_input_too_long_n' => _x('Please delete %item% characters', 'enhanced select', 'aui'), |
|
2247 | + 'i18n_selection_too_long_1' => _x('You can only select 1 item', 'enhanced select', 'aui'), |
|
2248 | + 'i18n_selection_too_long_n' => _x('You can only select %item% items', 'enhanced select', 'aui'), |
|
2249 | + 'i18n_load_more' => _x('Loading more results…', 'enhanced select', 'aui'), |
|
2250 | + 'i18n_searching' => _x('Searching…', 'enhanced select', 'aui') |
|
2251 | 2251 | ); |
2252 | 2252 | |
2253 | - return apply_filters( 'ayecode_ui_select2_params', $params ); |
|
2253 | + return apply_filters('ayecode_ui_select2_params', $params); |
|
2254 | 2254 | } |
2255 | 2255 | |
2256 | 2256 | /** |
@@ -2263,17 +2263,17 @@ discard block |
||
2263 | 2263 | public static function select2_locale() { |
2264 | 2264 | $params = self::select2_params(); |
2265 | 2265 | |
2266 | - foreach ( (array) $params as $key => $value ) { |
|
2267 | - if ( ! is_scalar( $value ) ) { |
|
2266 | + foreach ((array) $params as $key => $value) { |
|
2267 | + if (!is_scalar($value)) { |
|
2268 | 2268 | continue; |
2269 | 2269 | } |
2270 | 2270 | |
2271 | - $params[ $key ] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8' ); |
|
2271 | + $params[$key] = html_entity_decode((string) $value, ENT_QUOTES, 'UTF-8'); |
|
2272 | 2272 | } |
2273 | 2273 | |
2274 | - $locale = json_encode( $params ); |
|
2274 | + $locale = json_encode($params); |
|
2275 | 2275 | |
2276 | - return apply_filters( 'ayecode_ui_select2_locale', trim( $locale ) ); |
|
2276 | + return apply_filters('ayecode_ui_select2_locale', trim($locale)); |
|
2277 | 2277 | } |
2278 | 2278 | |
2279 | 2279 | /** |
@@ -2286,35 +2286,35 @@ discard block |
||
2286 | 2286 | public static function timeago_locale() { |
2287 | 2287 | $params = array( |
2288 | 2288 | 'prefix_ago' => '', |
2289 | - 'suffix_ago' => ' ' . _x( 'ago', 'time ago', 'aui' ), |
|
2290 | - 'prefix_after' => _x( 'after', 'time ago', 'aui' ) . ' ', |
|
2289 | + 'suffix_ago' => ' ' . _x('ago', 'time ago', 'aui'), |
|
2290 | + 'prefix_after' => _x('after', 'time ago', 'aui') . ' ', |
|
2291 | 2291 | 'suffix_after' => '', |
2292 | - 'seconds' => _x( 'less than a minute', 'time ago', 'aui' ), |
|
2293 | - 'minute' => _x( 'about a minute', 'time ago', 'aui' ), |
|
2294 | - 'minutes' => _x( '%d minutes', 'time ago', 'aui' ), |
|
2295 | - 'hour' => _x( 'about an hour', 'time ago', 'aui' ), |
|
2296 | - 'hours' => _x( 'about %d hours', 'time ago', 'aui' ), |
|
2297 | - 'day' => _x( 'a day', 'time ago', 'aui' ), |
|
2298 | - 'days' => _x( '%d days', 'time ago', 'aui' ), |
|
2299 | - 'month' => _x( 'about a month', 'time ago', 'aui' ), |
|
2300 | - 'months' => _x( '%d months', 'time ago', 'aui' ), |
|
2301 | - 'year' => _x( 'about a year', 'time ago', 'aui' ), |
|
2302 | - 'years' => _x( '%d years', 'time ago', 'aui' ), |
|
2292 | + 'seconds' => _x('less than a minute', 'time ago', 'aui'), |
|
2293 | + 'minute' => _x('about a minute', 'time ago', 'aui'), |
|
2294 | + 'minutes' => _x('%d minutes', 'time ago', 'aui'), |
|
2295 | + 'hour' => _x('about an hour', 'time ago', 'aui'), |
|
2296 | + 'hours' => _x('about %d hours', 'time ago', 'aui'), |
|
2297 | + 'day' => _x('a day', 'time ago', 'aui'), |
|
2298 | + 'days' => _x('%d days', 'time ago', 'aui'), |
|
2299 | + 'month' => _x('about a month', 'time ago', 'aui'), |
|
2300 | + 'months' => _x('%d months', 'time ago', 'aui'), |
|
2301 | + 'year' => _x('about a year', 'time ago', 'aui'), |
|
2302 | + 'years' => _x('%d years', 'time ago', 'aui'), |
|
2303 | 2303 | ); |
2304 | 2304 | |
2305 | - $params = apply_filters( 'ayecode_ui_timeago_params', $params ); |
|
2305 | + $params = apply_filters('ayecode_ui_timeago_params', $params); |
|
2306 | 2306 | |
2307 | - foreach ( (array) $params as $key => $value ) { |
|
2308 | - if ( ! is_scalar( $value ) ) { |
|
2307 | + foreach ((array) $params as $key => $value) { |
|
2308 | + if (!is_scalar($value)) { |
|
2309 | 2309 | continue; |
2310 | 2310 | } |
2311 | 2311 | |
2312 | - $params[ $key ] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8' ); |
|
2312 | + $params[$key] = html_entity_decode((string) $value, ENT_QUOTES, 'UTF-8'); |
|
2313 | 2313 | } |
2314 | 2314 | |
2315 | - $locale = json_encode( $params ); |
|
2315 | + $locale = json_encode($params); |
|
2316 | 2316 | |
2317 | - return apply_filters( 'ayecode_ui_timeago_locale', trim( $locale ) ); |
|
2317 | + return apply_filters('ayecode_ui_timeago_locale', trim($locale)); |
|
2318 | 2318 | } |
2319 | 2319 | |
2320 | 2320 | /** |
@@ -2325,7 +2325,7 @@ discard block |
||
2325 | 2325 | * @return mixed |
2326 | 2326 | */ |
2327 | 2327 | public static function minify_js($input) { |
2328 | - if(trim($input) === "") return $input; |
|
2328 | + if (trim($input) === "") return $input; |
|
2329 | 2329 | return preg_replace( |
2330 | 2330 | array( |
2331 | 2331 | // Remove comment(s) |
@@ -2357,7 +2357,7 @@ discard block |
||
2357 | 2357 | * @return mixed |
2358 | 2358 | */ |
2359 | 2359 | public static function minify_css($input) { |
2360 | - if(trim($input) === "") return $input; |
|
2360 | + if (trim($input) === "") return $input; |
|
2361 | 2361 | return preg_replace( |
2362 | 2362 | array( |
2363 | 2363 | // Remove comment(s) |
@@ -2906,12 +2906,12 @@ discard block |
||
2906 | 2906 | }); |
2907 | 2907 | } |
2908 | 2908 | } |
2909 | -<?php do_action( 'aui_conditional_fields_js', $this ); ?> |
|
2909 | +<?php do_action('aui_conditional_fields_js', $this); ?> |
|
2910 | 2910 | </script> |
2911 | 2911 | <?php |
2912 | 2912 | $output = ob_get_clean(); |
2913 | 2913 | |
2914 | - return str_replace( array( '<script>', '</script>' ), '', self::minify_js( $output ) ); |
|
2914 | + return str_replace(array('<script>', '</script>'), '', self::minify_js($output)); |
|
2915 | 2915 | } |
2916 | 2916 | } |
2917 | 2917 |
@@ -13,7 +13,7 @@ discard block |
||
13 | 13 | * Bail if we are not in WP. |
14 | 14 | */ |
15 | 15 | if ( ! defined( 'ABSPATH' ) ) { |
16 | - exit; |
|
16 | + exit; |
|
17 | 17 | } |
18 | 18 | |
19 | 19 | /** |
@@ -21,273 +21,273 @@ discard block |
||
21 | 21 | */ |
22 | 22 | if ( ! class_exists( 'AyeCode_UI_Settings' ) ) { |
23 | 23 | |
24 | - /** |
|
25 | - * A Class to be able to change settings for Font Awesome. |
|
26 | - * |
|
27 | - * Class AyeCode_UI_Settings |
|
28 | - * @ver 1.0.0 |
|
29 | - * @todo decide how to implement textdomain |
|
30 | - */ |
|
31 | - class AyeCode_UI_Settings { |
|
32 | - |
|
33 | - /** |
|
34 | - * Class version version. |
|
35 | - * |
|
36 | - * @var string |
|
37 | - */ |
|
38 | - public $version = '0.1.67'; |
|
39 | - |
|
40 | - /** |
|
41 | - * Class textdomain. |
|
42 | - * |
|
43 | - * @var string |
|
44 | - */ |
|
45 | - public $textdomain = 'aui'; |
|
46 | - |
|
47 | - /** |
|
48 | - * Latest version of Bootstrap at time of publish published. |
|
49 | - * |
|
50 | - * @var string |
|
51 | - */ |
|
52 | - public $latest = "4.5.3"; |
|
53 | - |
|
54 | - /** |
|
55 | - * Current version of select2 being used. |
|
56 | - * |
|
57 | - * @var string |
|
58 | - */ |
|
59 | - public $select2_version = "4.0.11"; |
|
60 | - |
|
61 | - /** |
|
62 | - * The title. |
|
63 | - * |
|
64 | - * @var string |
|
65 | - */ |
|
66 | - public $name = 'AyeCode UI'; |
|
67 | - |
|
68 | - /** |
|
69 | - * The relative url to the assets. |
|
70 | - * |
|
71 | - * @var string |
|
72 | - */ |
|
73 | - public $url = ''; |
|
74 | - |
|
75 | - /** |
|
76 | - * Holds the settings values. |
|
77 | - * |
|
78 | - * @var array |
|
79 | - */ |
|
80 | - private $settings; |
|
81 | - |
|
82 | - /** |
|
83 | - * AyeCode_UI_Settings instance. |
|
84 | - * |
|
85 | - * @access private |
|
86 | - * @since 1.0.0 |
|
87 | - * @var AyeCode_UI_Settings There can be only one! |
|
88 | - */ |
|
89 | - private static $instance = null; |
|
90 | - |
|
91 | - /** |
|
92 | - * Main AyeCode_UI_Settings Instance. |
|
93 | - * |
|
94 | - * Ensures only one instance of AyeCode_UI_Settings is loaded or can be loaded. |
|
95 | - * |
|
96 | - * @since 1.0.0 |
|
97 | - * @static |
|
98 | - * @return AyeCode_UI_Settings - Main instance. |
|
99 | - */ |
|
100 | - public static function instance() { |
|
101 | - if ( ! isset( self::$instance ) && ! ( self::$instance instanceof AyeCode_UI_Settings ) ) { |
|
102 | - |
|
103 | - self::$instance = new AyeCode_UI_Settings; |
|
104 | - |
|
105 | - add_action( 'init', array( self::$instance, 'init' ) ); // set settings |
|
106 | - |
|
107 | - if ( is_admin() ) { |
|
108 | - add_action( 'admin_menu', array( self::$instance, 'menu_item' ) ); |
|
109 | - add_action( 'admin_init', array( self::$instance, 'register_settings' ) ); |
|
110 | - |
|
111 | - // Maybe show example page |
|
112 | - add_action( 'template_redirect', array( self::$instance,'maybe_show_examples' ) ); |
|
113 | - } |
|
24 | + /** |
|
25 | + * A Class to be able to change settings for Font Awesome. |
|
26 | + * |
|
27 | + * Class AyeCode_UI_Settings |
|
28 | + * @ver 1.0.0 |
|
29 | + * @todo decide how to implement textdomain |
|
30 | + */ |
|
31 | + class AyeCode_UI_Settings { |
|
32 | + |
|
33 | + /** |
|
34 | + * Class version version. |
|
35 | + * |
|
36 | + * @var string |
|
37 | + */ |
|
38 | + public $version = '0.1.67'; |
|
39 | + |
|
40 | + /** |
|
41 | + * Class textdomain. |
|
42 | + * |
|
43 | + * @var string |
|
44 | + */ |
|
45 | + public $textdomain = 'aui'; |
|
46 | + |
|
47 | + /** |
|
48 | + * Latest version of Bootstrap at time of publish published. |
|
49 | + * |
|
50 | + * @var string |
|
51 | + */ |
|
52 | + public $latest = "4.5.3"; |
|
53 | + |
|
54 | + /** |
|
55 | + * Current version of select2 being used. |
|
56 | + * |
|
57 | + * @var string |
|
58 | + */ |
|
59 | + public $select2_version = "4.0.11"; |
|
60 | + |
|
61 | + /** |
|
62 | + * The title. |
|
63 | + * |
|
64 | + * @var string |
|
65 | + */ |
|
66 | + public $name = 'AyeCode UI'; |
|
67 | + |
|
68 | + /** |
|
69 | + * The relative url to the assets. |
|
70 | + * |
|
71 | + * @var string |
|
72 | + */ |
|
73 | + public $url = ''; |
|
74 | + |
|
75 | + /** |
|
76 | + * Holds the settings values. |
|
77 | + * |
|
78 | + * @var array |
|
79 | + */ |
|
80 | + private $settings; |
|
81 | + |
|
82 | + /** |
|
83 | + * AyeCode_UI_Settings instance. |
|
84 | + * |
|
85 | + * @access private |
|
86 | + * @since 1.0.0 |
|
87 | + * @var AyeCode_UI_Settings There can be only one! |
|
88 | + */ |
|
89 | + private static $instance = null; |
|
90 | + |
|
91 | + /** |
|
92 | + * Main AyeCode_UI_Settings Instance. |
|
93 | + * |
|
94 | + * Ensures only one instance of AyeCode_UI_Settings is loaded or can be loaded. |
|
95 | + * |
|
96 | + * @since 1.0.0 |
|
97 | + * @static |
|
98 | + * @return AyeCode_UI_Settings - Main instance. |
|
99 | + */ |
|
100 | + public static function instance() { |
|
101 | + if ( ! isset( self::$instance ) && ! ( self::$instance instanceof AyeCode_UI_Settings ) ) { |
|
102 | + |
|
103 | + self::$instance = new AyeCode_UI_Settings; |
|
104 | + |
|
105 | + add_action( 'init', array( self::$instance, 'init' ) ); // set settings |
|
106 | + |
|
107 | + if ( is_admin() ) { |
|
108 | + add_action( 'admin_menu', array( self::$instance, 'menu_item' ) ); |
|
109 | + add_action( 'admin_init', array( self::$instance, 'register_settings' ) ); |
|
110 | + |
|
111 | + // Maybe show example page |
|
112 | + add_action( 'template_redirect', array( self::$instance,'maybe_show_examples' ) ); |
|
113 | + } |
|
114 | 114 | |
115 | - add_action( 'customize_register', array( self::$instance, 'customizer_settings' )); |
|
115 | + add_action( 'customize_register', array( self::$instance, 'customizer_settings' )); |
|
116 | 116 | |
117 | - do_action( 'ayecode_ui_settings_loaded' ); |
|
118 | - } |
|
117 | + do_action( 'ayecode_ui_settings_loaded' ); |
|
118 | + } |
|
119 | 119 | |
120 | - return self::$instance; |
|
121 | - } |
|
120 | + return self::$instance; |
|
121 | + } |
|
122 | 122 | |
123 | - /** |
|
124 | - * Setup some constants. |
|
125 | - */ |
|
126 | - public function constants(){ |
|
127 | - define('AUI_PRIMARY_COLOR_ORIGINAL', "#1e73be"); |
|
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); |
|
131 | - } |
|
123 | + /** |
|
124 | + * Setup some constants. |
|
125 | + */ |
|
126 | + public function constants(){ |
|
127 | + define('AUI_PRIMARY_COLOR_ORIGINAL', "#1e73be"); |
|
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); |
|
131 | + } |
|
132 | 132 | |
133 | - /** |
|
134 | - * Initiate the settings and add the required action hooks. |
|
135 | - */ |
|
136 | - public function init() { |
|
137 | - |
|
138 | - // Maybe fix settings |
|
139 | - if ( ! empty( $_REQUEST['aui-fix-admin'] ) && !empty($_REQUEST['nonce']) && wp_verify_nonce( $_REQUEST['nonce'], "aui-fix-admin" ) ) { |
|
140 | - $db_settings = get_option( 'ayecode-ui-settings' ); |
|
141 | - if ( ! empty( $db_settings ) ) { |
|
142 | - $db_settings['css_backend'] = 'compatibility'; |
|
143 | - $db_settings['js_backend'] = 'core-popper'; |
|
144 | - update_option( 'ayecode-ui-settings', $db_settings ); |
|
145 | - wp_safe_redirect(admin_url("options-general.php?page=ayecode-ui-settings&updated=true")); |
|
146 | - } |
|
147 | - } |
|
133 | + /** |
|
134 | + * Initiate the settings and add the required action hooks. |
|
135 | + */ |
|
136 | + public function init() { |
|
137 | + |
|
138 | + // Maybe fix settings |
|
139 | + if ( ! empty( $_REQUEST['aui-fix-admin'] ) && !empty($_REQUEST['nonce']) && wp_verify_nonce( $_REQUEST['nonce'], "aui-fix-admin" ) ) { |
|
140 | + $db_settings = get_option( 'ayecode-ui-settings' ); |
|
141 | + if ( ! empty( $db_settings ) ) { |
|
142 | + $db_settings['css_backend'] = 'compatibility'; |
|
143 | + $db_settings['js_backend'] = 'core-popper'; |
|
144 | + update_option( 'ayecode-ui-settings', $db_settings ); |
|
145 | + wp_safe_redirect(admin_url("options-general.php?page=ayecode-ui-settings&updated=true")); |
|
146 | + } |
|
147 | + } |
|
148 | 148 | |
149 | - $this->constants(); |
|
150 | - $this->settings = $this->get_settings(); |
|
151 | - $this->url = $this->get_url(); |
|
149 | + $this->constants(); |
|
150 | + $this->settings = $this->get_settings(); |
|
151 | + $this->url = $this->get_url(); |
|
152 | + |
|
153 | + /** |
|
154 | + * Maybe load CSS |
|
155 | + * |
|
156 | + * We load super early in case there is a theme version that might change the colors |
|
157 | + */ |
|
158 | + if ( $this->settings['css'] ) { |
|
159 | + $priority = $this->is_bs3_compat() ? 100 : 1; |
|
160 | + add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_style' ), $priority ); |
|
161 | + } |
|
162 | + if ( $this->settings['css_backend'] && $this->load_admin_scripts() ) { |
|
163 | + add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_style' ), 1 ); |
|
164 | + } |
|
152 | 165 | |
153 | - /** |
|
154 | - * Maybe load CSS |
|
155 | - * |
|
156 | - * We load super early in case there is a theme version that might change the colors |
|
157 | - */ |
|
158 | - if ( $this->settings['css'] ) { |
|
159 | - $priority = $this->is_bs3_compat() ? 100 : 1; |
|
160 | - add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_style' ), $priority ); |
|
161 | - } |
|
162 | - if ( $this->settings['css_backend'] && $this->load_admin_scripts() ) { |
|
163 | - add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_style' ), 1 ); |
|
164 | - } |
|
165 | - |
|
166 | - // maybe load JS |
|
167 | - if ( $this->settings['js'] ) { |
|
168 | - $priority = $this->is_bs3_compat() ? 100 : 1; |
|
169 | - add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ), $priority ); |
|
170 | - } |
|
171 | - if ( $this->settings['js_backend'] && $this->load_admin_scripts() ) { |
|
172 | - add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ), 1 ); |
|
173 | - } |
|
174 | - |
|
175 | - // Maybe set the HTML font size |
|
176 | - if ( $this->settings['html_font_size'] ) { |
|
177 | - add_action( 'wp_footer', array( $this, 'html_font_size' ), 10 ); |
|
178 | - } |
|
179 | - |
|
180 | - // Maybe show backend style error |
|
181 | - if( $this->settings['css_backend'] != 'compatibility' || $this->settings['js_backend'] != 'core-popper' ){ |
|
182 | - add_action( 'admin_notices', array( $this, 'show_admin_style_notice' ) ); |
|
183 | - } |
|
166 | + // maybe load JS |
|
167 | + if ( $this->settings['js'] ) { |
|
168 | + $priority = $this->is_bs3_compat() ? 100 : 1; |
|
169 | + add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ), $priority ); |
|
170 | + } |
|
171 | + if ( $this->settings['js_backend'] && $this->load_admin_scripts() ) { |
|
172 | + add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ), 1 ); |
|
173 | + } |
|
184 | 174 | |
185 | - } |
|
175 | + // Maybe set the HTML font size |
|
176 | + if ( $this->settings['html_font_size'] ) { |
|
177 | + add_action( 'wp_footer', array( $this, 'html_font_size' ), 10 ); |
|
178 | + } |
|
186 | 179 | |
187 | - /** |
|
188 | - * Show admin notice if backend scripts not loaded. |
|
189 | - */ |
|
190 | - public function show_admin_style_notice(){ |
|
191 | - $fix_url = admin_url("options-general.php?page=ayecode-ui-settings&aui-fix-admin=true&nonce=".wp_create_nonce('aui-fix-admin')); |
|
192 | - $button = '<a href="'.esc_url($fix_url).'" class="button-primary">Fix Now</a>'; |
|
193 | - $message = __( '<b>Style Issue:</b> AyeCode UI is disable or set wrong.')." " .$button; |
|
194 | - echo '<div class="notice notice-error aui-settings-error-notice"><p>'.$message.'</p></div>'; |
|
195 | - } |
|
180 | + // Maybe show backend style error |
|
181 | + if( $this->settings['css_backend'] != 'compatibility' || $this->settings['js_backend'] != 'core-popper' ){ |
|
182 | + add_action( 'admin_notices', array( $this, 'show_admin_style_notice' ) ); |
|
183 | + } |
|
196 | 184 | |
197 | - /** |
|
198 | - * Check if we should load the admin scripts or not. |
|
199 | - * |
|
200 | - * @return bool |
|
201 | - */ |
|
202 | - public function load_admin_scripts(){ |
|
203 | - $result = true; |
|
204 | - |
|
205 | - // check if specifically disabled |
|
206 | - if(!empty($this->settings['disable_admin'])){ |
|
207 | - $url_parts = explode("\n",$this->settings['disable_admin']); |
|
208 | - foreach($url_parts as $part){ |
|
209 | - if( strpos($_SERVER['REQUEST_URI'], trim($part)) !== false ){ |
|
210 | - return false; // return early, no point checking further |
|
211 | - } |
|
212 | - } |
|
213 | - } |
|
185 | + } |
|
214 | 186 | |
215 | - return $result; |
|
216 | - } |
|
187 | + /** |
|
188 | + * Show admin notice if backend scripts not loaded. |
|
189 | + */ |
|
190 | + public function show_admin_style_notice(){ |
|
191 | + $fix_url = admin_url("options-general.php?page=ayecode-ui-settings&aui-fix-admin=true&nonce=".wp_create_nonce('aui-fix-admin')); |
|
192 | + $button = '<a href="'.esc_url($fix_url).'" class="button-primary">Fix Now</a>'; |
|
193 | + $message = __( '<b>Style Issue:</b> AyeCode UI is disable or set wrong.')." " .$button; |
|
194 | + echo '<div class="notice notice-error aui-settings-error-notice"><p>'.$message.'</p></div>'; |
|
195 | + } |
|
217 | 196 | |
218 | - /** |
|
219 | - * Add a html font size to the footer. |
|
220 | - */ |
|
221 | - public function html_font_size(){ |
|
222 | - $this->settings = $this->get_settings(); |
|
223 | - echo "<style>html{font-size:".absint($this->settings['html_font_size'])."px;}</style>"; |
|
224 | - } |
|
197 | + /** |
|
198 | + * Check if we should load the admin scripts or not. |
|
199 | + * |
|
200 | + * @return bool |
|
201 | + */ |
|
202 | + public function load_admin_scripts(){ |
|
203 | + $result = true; |
|
204 | + |
|
205 | + // check if specifically disabled |
|
206 | + if(!empty($this->settings['disable_admin'])){ |
|
207 | + $url_parts = explode("\n",$this->settings['disable_admin']); |
|
208 | + foreach($url_parts as $part){ |
|
209 | + if( strpos($_SERVER['REQUEST_URI'], trim($part)) !== false ){ |
|
210 | + return false; // return early, no point checking further |
|
211 | + } |
|
212 | + } |
|
213 | + } |
|
214 | + |
|
215 | + return $result; |
|
216 | + } |
|
217 | + |
|
218 | + /** |
|
219 | + * Add a html font size to the footer. |
|
220 | + */ |
|
221 | + public function html_font_size(){ |
|
222 | + $this->settings = $this->get_settings(); |
|
223 | + echo "<style>html{font-size:".absint($this->settings['html_font_size'])."px;}</style>"; |
|
224 | + } |
|
225 | 225 | |
226 | - /** |
|
227 | - * Check if the current admin screen should load scripts. |
|
228 | - * |
|
229 | - * @return bool |
|
230 | - */ |
|
231 | - public function is_aui_screen(){ |
|
226 | + /** |
|
227 | + * Check if the current admin screen should load scripts. |
|
228 | + * |
|
229 | + * @return bool |
|
230 | + */ |
|
231 | + public function is_aui_screen(){ |
|
232 | 232 | // echo '###';exit; |
233 | - $load = false; |
|
234 | - // check if we should load or not |
|
235 | - if ( is_admin() ) { |
|
236 | - // Only enable on set pages |
|
237 | - $aui_screens = array( |
|
238 | - 'page', |
|
239 | - 'post', |
|
240 | - 'settings_page_ayecode-ui-settings', |
|
241 | - 'appearance_page_gutenberg-widgets', |
|
242 | - 'widgets', |
|
243 | - 'ayecode-ui-settings', |
|
244 | - 'site-editor' |
|
245 | - ); |
|
246 | - $screen_ids = apply_filters( 'aui_screen_ids', $aui_screens ); |
|
247 | - |
|
248 | - $screen = get_current_screen(); |
|
233 | + $load = false; |
|
234 | + // check if we should load or not |
|
235 | + if ( is_admin() ) { |
|
236 | + // Only enable on set pages |
|
237 | + $aui_screens = array( |
|
238 | + 'page', |
|
239 | + 'post', |
|
240 | + 'settings_page_ayecode-ui-settings', |
|
241 | + 'appearance_page_gutenberg-widgets', |
|
242 | + 'widgets', |
|
243 | + 'ayecode-ui-settings', |
|
244 | + 'site-editor' |
|
245 | + ); |
|
246 | + $screen_ids = apply_filters( 'aui_screen_ids', $aui_screens ); |
|
247 | + |
|
248 | + $screen = get_current_screen(); |
|
249 | 249 | |
250 | 250 | // echo '###'.$screen->id; |
251 | 251 | |
252 | - // check if we are on a AUI screen |
|
253 | - if ( $screen && in_array( $screen->id, $screen_ids ) ) { |
|
254 | - $load = true; |
|
255 | - } |
|
252 | + // check if we are on a AUI screen |
|
253 | + if ( $screen && in_array( $screen->id, $screen_ids ) ) { |
|
254 | + $load = true; |
|
255 | + } |
|
256 | 256 | |
257 | - //load for widget previews in WP 5.8 |
|
258 | - if( !empty($_REQUEST['legacy-widget-preview'])){ |
|
259 | - $load = true; |
|
260 | - } |
|
261 | - } |
|
257 | + //load for widget previews in WP 5.8 |
|
258 | + if( !empty($_REQUEST['legacy-widget-preview'])){ |
|
259 | + $load = true; |
|
260 | + } |
|
261 | + } |
|
262 | 262 | |
263 | - return apply_filters( 'aui_load_on_admin' , $load ); |
|
264 | - } |
|
263 | + return apply_filters( 'aui_load_on_admin' , $load ); |
|
264 | + } |
|
265 | 265 | |
266 | - /** |
|
267 | - * Adds the styles. |
|
268 | - */ |
|
269 | - public function enqueue_style() { |
|
266 | + /** |
|
267 | + * Adds the styles. |
|
268 | + */ |
|
269 | + public function enqueue_style() { |
|
270 | 270 | |
271 | 271 | |
272 | - if( is_admin() && !$this->is_aui_screen()){ |
|
273 | - // don't add wp-admin scripts if not requested to |
|
274 | - }else{ |
|
275 | - $css_setting = current_action() == 'wp_enqueue_scripts' ? 'css' : 'css_backend'; |
|
272 | + if( is_admin() && !$this->is_aui_screen()){ |
|
273 | + // don't add wp-admin scripts if not requested to |
|
274 | + }else{ |
|
275 | + $css_setting = current_action() == 'wp_enqueue_scripts' ? 'css' : 'css_backend'; |
|
276 | 276 | |
277 | - $rtl = is_rtl() ? '-rtl' : ''; |
|
277 | + $rtl = is_rtl() ? '-rtl' : ''; |
|
278 | 278 | |
279 | - if($this->settings[$css_setting]){ |
|
280 | - $compatibility = $this->settings[$css_setting]=='core' ? false : true; |
|
281 | - $url = $this->settings[$css_setting]=='core' ? $this->url.'assets/css/ayecode-ui'.$rtl.'.css' : $this->url.'assets/css/ayecode-ui-compatibility'.$rtl.'.css'; |
|
282 | - wp_register_style( 'ayecode-ui', $url, array(), $this->version ); |
|
283 | - wp_enqueue_style( 'ayecode-ui' ); |
|
279 | + if($this->settings[$css_setting]){ |
|
280 | + $compatibility = $this->settings[$css_setting]=='core' ? false : true; |
|
281 | + $url = $this->settings[$css_setting]=='core' ? $this->url.'assets/css/ayecode-ui'.$rtl.'.css' : $this->url.'assets/css/ayecode-ui-compatibility'.$rtl.'.css'; |
|
282 | + wp_register_style( 'ayecode-ui', $url, array(), $this->version ); |
|
283 | + wp_enqueue_style( 'ayecode-ui' ); |
|
284 | 284 | |
285 | - // flatpickr |
|
286 | - wp_register_style( 'flatpickr', $this->url.'assets/css/flatpickr.min.css', array(), $this->version ); |
|
285 | + // flatpickr |
|
286 | + wp_register_style( 'flatpickr', $this->url.'assets/css/flatpickr.min.css', array(), $this->version ); |
|
287 | 287 | |
288 | - // fix some wp-admin issues |
|
289 | - if(is_admin()){ |
|
290 | - $custom_css = " |
|
288 | + // fix some wp-admin issues |
|
289 | + if(is_admin()){ |
|
290 | + $custom_css = " |
|
291 | 291 | body{ |
292 | 292 | background-color: #f1f1f1; |
293 | 293 | font-family: -apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen-Sans,Ubuntu,Cantarell,\"Helvetica Neue\",sans-serif; |
@@ -333,35 +333,35 @@ discard block |
||
333 | 333 | } |
334 | 334 | "; |
335 | 335 | |
336 | - // @todo, remove once fixed :: fix for this bug https://github.com/WordPress/gutenberg/issues/14377 |
|
337 | - $custom_css .= " |
|
336 | + // @todo, remove once fixed :: fix for this bug https://github.com/WordPress/gutenberg/issues/14377 |
|
337 | + $custom_css .= " |
|
338 | 338 | .edit-post-sidebar input[type=color].components-text-control__input{ |
339 | 339 | padding: 0; |
340 | 340 | } |
341 | 341 | "; |
342 | - wp_add_inline_style( 'ayecode-ui', $custom_css ); |
|
343 | - } |
|
342 | + wp_add_inline_style( 'ayecode-ui', $custom_css ); |
|
343 | + } |
|
344 | 344 | |
345 | - // custom changes |
|
346 | - wp_add_inline_style( 'ayecode-ui', self::custom_css($compatibility) ); |
|
345 | + // custom changes |
|
346 | + wp_add_inline_style( 'ayecode-ui', self::custom_css($compatibility) ); |
|
347 | 347 | |
348 | - } |
|
349 | - } |
|
348 | + } |
|
349 | + } |
|
350 | 350 | |
351 | 351 | |
352 | - } |
|
352 | + } |
|
353 | 353 | |
354 | - /** |
|
355 | - * Get inline script used if bootstrap enqueued |
|
356 | - * |
|
357 | - * If this remains small then its best to use this than to add another JS file. |
|
358 | - */ |
|
359 | - public function inline_script() { |
|
360 | - // Flatpickr calendar locale |
|
361 | - $flatpickr_locale = self::flatpickr_locale(); |
|
362 | - |
|
363 | - ob_start(); |
|
364 | - ?> |
|
354 | + /** |
|
355 | + * Get inline script used if bootstrap enqueued |
|
356 | + * |
|
357 | + * If this remains small then its best to use this than to add another JS file. |
|
358 | + */ |
|
359 | + public function inline_script() { |
|
360 | + // Flatpickr calendar locale |
|
361 | + $flatpickr_locale = self::flatpickr_locale(); |
|
362 | + |
|
363 | + ob_start(); |
|
364 | + ?> |
|
365 | 365 | <script> |
366 | 366 | /** |
367 | 367 | * An AUI bootstrap adaptation of GreedyNav.js ( by Luke Jackson ). |
@@ -1196,29 +1196,29 @@ discard block |
||
1196 | 1196 | } |
1197 | 1197 | </script> |
1198 | 1198 | <?php |
1199 | - $output = ob_get_clean(); |
|
1199 | + $output = ob_get_clean(); |
|
1200 | 1200 | |
1201 | 1201 | |
1202 | 1202 | |
1203 | - /* |
|
1203 | + /* |
|
1204 | 1204 | * We only add the <script> tags for code highlighting, so we strip them from the output. |
1205 | 1205 | */ |
1206 | - return str_replace( array( |
|
1207 | - '<script>', |
|
1208 | - '</script>' |
|
1209 | - ), '', self::minify_js($output) ); |
|
1210 | - } |
|
1206 | + return str_replace( array( |
|
1207 | + '<script>', |
|
1208 | + '</script>' |
|
1209 | + ), '', self::minify_js($output) ); |
|
1210 | + } |
|
1211 | 1211 | |
1212 | 1212 | |
1213 | - /** |
|
1214 | - * JS to help with conflict issues with other plugins and themes using bootstrap v3. |
|
1215 | - * |
|
1216 | - * @TODO we may need this when other conflicts arrise. |
|
1217 | - * @return mixed |
|
1218 | - */ |
|
1219 | - public static function bs3_compat_js() { |
|
1220 | - ob_start(); |
|
1221 | - ?> |
|
1213 | + /** |
|
1214 | + * JS to help with conflict issues with other plugins and themes using bootstrap v3. |
|
1215 | + * |
|
1216 | + * @TODO we may need this when other conflicts arrise. |
|
1217 | + * @return mixed |
|
1218 | + */ |
|
1219 | + public static function bs3_compat_js() { |
|
1220 | + ob_start(); |
|
1221 | + ?> |
|
1222 | 1222 | <script> |
1223 | 1223 | <?php if( defined( 'FUSION_BUILDER_VERSION' ) ){ ?> |
1224 | 1224 | /* With Avada builder */ |
@@ -1226,20 +1226,20 @@ discard block |
||
1226 | 1226 | <?php } ?> |
1227 | 1227 | </script> |
1228 | 1228 | <?php |
1229 | - return str_replace( array( |
|
1230 | - '<script>', |
|
1231 | - '</script>' |
|
1232 | - ), '', ob_get_clean()); |
|
1233 | - } |
|
1229 | + return str_replace( array( |
|
1230 | + '<script>', |
|
1231 | + '</script>' |
|
1232 | + ), '', ob_get_clean()); |
|
1233 | + } |
|
1234 | 1234 | |
1235 | - /** |
|
1236 | - * Get inline script used if bootstrap file browser enqueued. |
|
1237 | - * |
|
1238 | - * If this remains small then its best to use this than to add another JS file. |
|
1239 | - */ |
|
1240 | - public function inline_script_file_browser(){ |
|
1241 | - ob_start(); |
|
1242 | - ?> |
|
1235 | + /** |
|
1236 | + * Get inline script used if bootstrap file browser enqueued. |
|
1237 | + * |
|
1238 | + * If this remains small then its best to use this than to add another JS file. |
|
1239 | + */ |
|
1240 | + public function inline_script_file_browser(){ |
|
1241 | + ob_start(); |
|
1242 | + ?> |
|
1243 | 1243 | <script> |
1244 | 1244 | // run on doc ready |
1245 | 1245 | jQuery(document).ready(function () { |
@@ -1247,203 +1247,203 @@ discard block |
||
1247 | 1247 | }); |
1248 | 1248 | </script> |
1249 | 1249 | <?php |
1250 | - $output = ob_get_clean(); |
|
1250 | + $output = ob_get_clean(); |
|
1251 | 1251 | |
1252 | - /* |
|
1252 | + /* |
|
1253 | 1253 | * We only add the <script> tags for code highlighting, so we strip them from the output. |
1254 | 1254 | */ |
1255 | - return str_replace( array( |
|
1256 | - '<script>', |
|
1257 | - '</script>' |
|
1258 | - ), '', $output ); |
|
1259 | - } |
|
1255 | + return str_replace( array( |
|
1256 | + '<script>', |
|
1257 | + '</script>' |
|
1258 | + ), '', $output ); |
|
1259 | + } |
|
1260 | 1260 | |
1261 | - /** |
|
1262 | - * Adds the Font Awesome JS. |
|
1263 | - */ |
|
1264 | - public function enqueue_scripts() { |
|
1261 | + /** |
|
1262 | + * Adds the Font Awesome JS. |
|
1263 | + */ |
|
1264 | + public function enqueue_scripts() { |
|
1265 | 1265 | |
1266 | - if( is_admin() && !$this->is_aui_screen()){ |
|
1267 | - // don't add wp-admin scripts if not requested to |
|
1268 | - }else { |
|
1266 | + if( is_admin() && !$this->is_aui_screen()){ |
|
1267 | + // don't add wp-admin scripts if not requested to |
|
1268 | + }else { |
|
1269 | 1269 | |
1270 | - $js_setting = current_action() == 'wp_enqueue_scripts' ? 'js' : 'js_backend'; |
|
1270 | + $js_setting = current_action() == 'wp_enqueue_scripts' ? 'js' : 'js_backend'; |
|
1271 | 1271 | |
1272 | - // select2 |
|
1273 | - wp_register_script( 'select2', $this->url . 'assets/js/select2.min.js', array( 'jquery' ), $this->select2_version ); |
|
1272 | + // select2 |
|
1273 | + wp_register_script( 'select2', $this->url . 'assets/js/select2.min.js', array( 'jquery' ), $this->select2_version ); |
|
1274 | 1274 | |
1275 | - // flatpickr |
|
1276 | - wp_register_script( 'flatpickr', $this->url . 'assets/js/flatpickr.min.js', array(), $this->version ); |
|
1275 | + // flatpickr |
|
1276 | + wp_register_script( 'flatpickr', $this->url . 'assets/js/flatpickr.min.js', array(), $this->version ); |
|
1277 | 1277 | |
1278 | - // flatpickr |
|
1279 | - wp_register_script( 'iconpicker', $this->url . 'assets/js/fontawesome-iconpicker.min.js', array(), $this->version ); |
|
1278 | + // flatpickr |
|
1279 | + wp_register_script( 'iconpicker', $this->url . 'assets/js/fontawesome-iconpicker.min.js', array(), $this->version ); |
|
1280 | 1280 | |
1281 | - // Bootstrap file browser |
|
1282 | - wp_register_script( 'aui-custom-file-input', $url = $this->url . 'assets/js/bs-custom-file-input.min.js', array( 'jquery' ), $this->select2_version ); |
|
1283 | - wp_add_inline_script( 'aui-custom-file-input', $this->inline_script_file_browser() ); |
|
1284 | - |
|
1285 | - $load_inline = false; |
|
1286 | - |
|
1287 | - if ( $this->settings[ $js_setting ] == 'core-popper' ) { |
|
1288 | - // Bootstrap bundle |
|
1289 | - $url = $this->url . 'assets/js/bootstrap.bundle.min.js'; |
|
1290 | - wp_register_script( 'bootstrap-js-bundle', $url, array( |
|
1291 | - 'select2', |
|
1292 | - 'jquery' |
|
1293 | - ), $this->version, $this->is_bs3_compat() ); |
|
1294 | - // if in admin then add to footer for compatibility. |
|
1295 | - is_admin() ? wp_enqueue_script( 'bootstrap-js-bundle', '', null, null, true ) : wp_enqueue_script( 'bootstrap-js-bundle' ); |
|
1296 | - $script = $this->inline_script(); |
|
1297 | - wp_add_inline_script( 'bootstrap-js-bundle', $script ); |
|
1298 | - } elseif ( $this->settings[ $js_setting ] == 'popper' ) { |
|
1299 | - $url = $this->url . 'assets/js/popper.min.js'; |
|
1300 | - wp_register_script( 'bootstrap-js-popper', $url, array( 'select2', 'jquery' ), $this->version ); |
|
1301 | - wp_enqueue_script( 'bootstrap-js-popper' ); |
|
1302 | - $load_inline = true; |
|
1303 | - } else { |
|
1304 | - $load_inline = true; |
|
1305 | - } |
|
1281 | + // Bootstrap file browser |
|
1282 | + wp_register_script( 'aui-custom-file-input', $url = $this->url . 'assets/js/bs-custom-file-input.min.js', array( 'jquery' ), $this->select2_version ); |
|
1283 | + wp_add_inline_script( 'aui-custom-file-input', $this->inline_script_file_browser() ); |
|
1284 | + |
|
1285 | + $load_inline = false; |
|
1286 | + |
|
1287 | + if ( $this->settings[ $js_setting ] == 'core-popper' ) { |
|
1288 | + // Bootstrap bundle |
|
1289 | + $url = $this->url . 'assets/js/bootstrap.bundle.min.js'; |
|
1290 | + wp_register_script( 'bootstrap-js-bundle', $url, array( |
|
1291 | + 'select2', |
|
1292 | + 'jquery' |
|
1293 | + ), $this->version, $this->is_bs3_compat() ); |
|
1294 | + // if in admin then add to footer for compatibility. |
|
1295 | + is_admin() ? wp_enqueue_script( 'bootstrap-js-bundle', '', null, null, true ) : wp_enqueue_script( 'bootstrap-js-bundle' ); |
|
1296 | + $script = $this->inline_script(); |
|
1297 | + wp_add_inline_script( 'bootstrap-js-bundle', $script ); |
|
1298 | + } elseif ( $this->settings[ $js_setting ] == 'popper' ) { |
|
1299 | + $url = $this->url . 'assets/js/popper.min.js'; |
|
1300 | + wp_register_script( 'bootstrap-js-popper', $url, array( 'select2', 'jquery' ), $this->version ); |
|
1301 | + wp_enqueue_script( 'bootstrap-js-popper' ); |
|
1302 | + $load_inline = true; |
|
1303 | + } else { |
|
1304 | + $load_inline = true; |
|
1305 | + } |
|
1306 | 1306 | |
1307 | - // Load needed inline scripts by faking the loading of a script if the main script is not being loaded |
|
1308 | - if ( $load_inline ) { |
|
1309 | - wp_register_script( 'bootstrap-dummy', '', array( 'select2', 'jquery' ) ); |
|
1310 | - wp_enqueue_script( 'bootstrap-dummy' ); |
|
1311 | - $script = $this->inline_script(); |
|
1312 | - wp_add_inline_script( 'bootstrap-dummy', $script ); |
|
1313 | - } |
|
1314 | - } |
|
1307 | + // Load needed inline scripts by faking the loading of a script if the main script is not being loaded |
|
1308 | + if ( $load_inline ) { |
|
1309 | + wp_register_script( 'bootstrap-dummy', '', array( 'select2', 'jquery' ) ); |
|
1310 | + wp_enqueue_script( 'bootstrap-dummy' ); |
|
1311 | + $script = $this->inline_script(); |
|
1312 | + wp_add_inline_script( 'bootstrap-dummy', $script ); |
|
1313 | + } |
|
1314 | + } |
|
1315 | 1315 | |
1316 | - } |
|
1316 | + } |
|
1317 | 1317 | |
1318 | - /** |
|
1319 | - * Enqueue flatpickr if called. |
|
1320 | - */ |
|
1321 | - public function enqueue_flatpickr(){ |
|
1322 | - wp_enqueue_style( 'flatpickr' ); |
|
1323 | - wp_enqueue_script( 'flatpickr' ); |
|
1324 | - } |
|
1318 | + /** |
|
1319 | + * Enqueue flatpickr if called. |
|
1320 | + */ |
|
1321 | + public function enqueue_flatpickr(){ |
|
1322 | + wp_enqueue_style( 'flatpickr' ); |
|
1323 | + wp_enqueue_script( 'flatpickr' ); |
|
1324 | + } |
|
1325 | 1325 | |
1326 | - /** |
|
1327 | - * Enqueue iconpicker if called. |
|
1328 | - */ |
|
1329 | - public function enqueue_iconpicker(){ |
|
1330 | - wp_enqueue_style( 'iconpicker' ); |
|
1331 | - wp_enqueue_script( 'iconpicker' ); |
|
1332 | - } |
|
1326 | + /** |
|
1327 | + * Enqueue iconpicker if called. |
|
1328 | + */ |
|
1329 | + public function enqueue_iconpicker(){ |
|
1330 | + wp_enqueue_style( 'iconpicker' ); |
|
1331 | + wp_enqueue_script( 'iconpicker' ); |
|
1332 | + } |
|
1333 | 1333 | |
1334 | - /** |
|
1335 | - * Get the url path to the current folder. |
|
1336 | - * |
|
1337 | - * @return string |
|
1338 | - */ |
|
1339 | - public function get_url() { |
|
1334 | + /** |
|
1335 | + * Get the url path to the current folder. |
|
1336 | + * |
|
1337 | + * @return string |
|
1338 | + */ |
|
1339 | + public function get_url() { |
|
1340 | 1340 | |
1341 | - $url = ''; |
|
1342 | - // check if we are inside a plugin |
|
1343 | - $file_dir = str_replace( "/includes","", wp_normalize_path( dirname( __FILE__ ) ) ); |
|
1341 | + $url = ''; |
|
1342 | + // check if we are inside a plugin |
|
1343 | + $file_dir = str_replace( "/includes","", wp_normalize_path( dirname( __FILE__ ) ) ); |
|
1344 | 1344 | |
1345 | - // add check in-case user has changed wp-content dir name. |
|
1346 | - $wp_content_folder_name = basename(WP_CONTENT_DIR); |
|
1347 | - $dir_parts = explode("/$wp_content_folder_name/",$file_dir); |
|
1348 | - $url_parts = explode("/$wp_content_folder_name/",plugins_url()); |
|
1345 | + // add check in-case user has changed wp-content dir name. |
|
1346 | + $wp_content_folder_name = basename(WP_CONTENT_DIR); |
|
1347 | + $dir_parts = explode("/$wp_content_folder_name/",$file_dir); |
|
1348 | + $url_parts = explode("/$wp_content_folder_name/",plugins_url()); |
|
1349 | 1349 | |
1350 | - if(!empty($url_parts[0]) && !empty($dir_parts[1])){ |
|
1351 | - $url = trailingslashit( $url_parts[0]."/$wp_content_folder_name/".$dir_parts[1] ); |
|
1352 | - } |
|
1350 | + if(!empty($url_parts[0]) && !empty($dir_parts[1])){ |
|
1351 | + $url = trailingslashit( $url_parts[0]."/$wp_content_folder_name/".$dir_parts[1] ); |
|
1352 | + } |
|
1353 | 1353 | |
1354 | - return $url; |
|
1355 | - } |
|
1354 | + return $url; |
|
1355 | + } |
|
1356 | 1356 | |
1357 | - /** |
|
1358 | - * Register the database settings with WordPress. |
|
1359 | - */ |
|
1360 | - public function register_settings() { |
|
1361 | - register_setting( 'ayecode-ui-settings', 'ayecode-ui-settings' ); |
|
1362 | - } |
|
1357 | + /** |
|
1358 | + * Register the database settings with WordPress. |
|
1359 | + */ |
|
1360 | + public function register_settings() { |
|
1361 | + register_setting( 'ayecode-ui-settings', 'ayecode-ui-settings' ); |
|
1362 | + } |
|
1363 | 1363 | |
1364 | - /** |
|
1365 | - * Add the WordPress settings menu item. |
|
1366 | - * @since 1.0.10 Calling function name direct will fail theme check so we don't. |
|
1367 | - */ |
|
1368 | - public function menu_item() { |
|
1369 | - $menu_function = 'add' . '_' . 'options' . '_' . 'page'; // won't pass theme check if function name present in theme |
|
1370 | - call_user_func( $menu_function, $this->name, $this->name, 'manage_options', 'ayecode-ui-settings', array( |
|
1371 | - $this, |
|
1372 | - 'settings_page' |
|
1373 | - ) ); |
|
1374 | - } |
|
1364 | + /** |
|
1365 | + * Add the WordPress settings menu item. |
|
1366 | + * @since 1.0.10 Calling function name direct will fail theme check so we don't. |
|
1367 | + */ |
|
1368 | + public function menu_item() { |
|
1369 | + $menu_function = 'add' . '_' . 'options' . '_' . 'page'; // won't pass theme check if function name present in theme |
|
1370 | + call_user_func( $menu_function, $this->name, $this->name, 'manage_options', 'ayecode-ui-settings', array( |
|
1371 | + $this, |
|
1372 | + 'settings_page' |
|
1373 | + ) ); |
|
1374 | + } |
|
1375 | 1375 | |
1376 | - /** |
|
1377 | - * Get a list of themes and their default JS settings. |
|
1378 | - * |
|
1379 | - * @return array |
|
1380 | - */ |
|
1381 | - public function theme_js_settings(){ |
|
1382 | - return array( |
|
1383 | - 'ayetheme' => 'popper', |
|
1384 | - 'listimia' => 'required', |
|
1385 | - 'listimia_backend' => 'core-popper', |
|
1386 | - //'avada' => 'required', // removed as we now add compatibility |
|
1387 | - ); |
|
1388 | - } |
|
1376 | + /** |
|
1377 | + * Get a list of themes and their default JS settings. |
|
1378 | + * |
|
1379 | + * @return array |
|
1380 | + */ |
|
1381 | + public function theme_js_settings(){ |
|
1382 | + return array( |
|
1383 | + 'ayetheme' => 'popper', |
|
1384 | + 'listimia' => 'required', |
|
1385 | + 'listimia_backend' => 'core-popper', |
|
1386 | + //'avada' => 'required', // removed as we now add compatibility |
|
1387 | + ); |
|
1388 | + } |
|
1389 | 1389 | |
1390 | - /** |
|
1391 | - * Get the current Font Awesome output settings. |
|
1392 | - * |
|
1393 | - * @return array The array of settings. |
|
1394 | - */ |
|
1395 | - public function get_settings() { |
|
1396 | - |
|
1397 | - $db_settings = get_option( 'ayecode-ui-settings' ); |
|
1398 | - $js_default = 'core-popper'; |
|
1399 | - $js_default_backend = $js_default; |
|
1400 | - |
|
1401 | - // maybe set defaults (if no settings set) |
|
1402 | - if(empty($db_settings)){ |
|
1403 | - $active_theme = strtolower( get_template() ); // active parent theme. |
|
1404 | - $theme_js_settings = self::theme_js_settings(); |
|
1405 | - if(isset($theme_js_settings[$active_theme])){ |
|
1406 | - $js_default = $theme_js_settings[$active_theme]; |
|
1407 | - $js_default_backend = isset($theme_js_settings[$active_theme."_backend"]) ? $theme_js_settings[$active_theme."_backend"] : $js_default; |
|
1408 | - } |
|
1409 | - } |
|
1410 | - |
|
1411 | - $defaults = array( |
|
1412 | - 'css' => 'compatibility', // core, compatibility |
|
1413 | - 'js' => $js_default, // js to load, core-popper, popper |
|
1414 | - 'html_font_size' => '16', // js to load, core-popper, popper |
|
1415 | - 'css_backend' => 'compatibility', // core, compatibility |
|
1416 | - 'js_backend' => $js_default_backend, // js to load, core-popper, popper |
|
1417 | - 'disable_admin' => '', // URL snippets to disable loading on admin |
|
1418 | - ); |
|
1419 | - |
|
1420 | - $settings = wp_parse_args( $db_settings, $defaults ); |
|
1421 | - |
|
1422 | - /** |
|
1423 | - * Filter the Bootstrap settings. |
|
1424 | - * |
|
1425 | - * @todo if we add this filer people might use it and then it defeates the purpose of this class :/ |
|
1426 | - */ |
|
1427 | - return $this->settings = apply_filters( 'ayecode-ui-settings', $settings, $db_settings, $defaults ); |
|
1428 | - } |
|
1390 | + /** |
|
1391 | + * Get the current Font Awesome output settings. |
|
1392 | + * |
|
1393 | + * @return array The array of settings. |
|
1394 | + */ |
|
1395 | + public function get_settings() { |
|
1396 | + |
|
1397 | + $db_settings = get_option( 'ayecode-ui-settings' ); |
|
1398 | + $js_default = 'core-popper'; |
|
1399 | + $js_default_backend = $js_default; |
|
1400 | + |
|
1401 | + // maybe set defaults (if no settings set) |
|
1402 | + if(empty($db_settings)){ |
|
1403 | + $active_theme = strtolower( get_template() ); // active parent theme. |
|
1404 | + $theme_js_settings = self::theme_js_settings(); |
|
1405 | + if(isset($theme_js_settings[$active_theme])){ |
|
1406 | + $js_default = $theme_js_settings[$active_theme]; |
|
1407 | + $js_default_backend = isset($theme_js_settings[$active_theme."_backend"]) ? $theme_js_settings[$active_theme."_backend"] : $js_default; |
|
1408 | + } |
|
1409 | + } |
|
1410 | + |
|
1411 | + $defaults = array( |
|
1412 | + 'css' => 'compatibility', // core, compatibility |
|
1413 | + 'js' => $js_default, // js to load, core-popper, popper |
|
1414 | + 'html_font_size' => '16', // js to load, core-popper, popper |
|
1415 | + 'css_backend' => 'compatibility', // core, compatibility |
|
1416 | + 'js_backend' => $js_default_backend, // js to load, core-popper, popper |
|
1417 | + 'disable_admin' => '', // URL snippets to disable loading on admin |
|
1418 | + ); |
|
1419 | + |
|
1420 | + $settings = wp_parse_args( $db_settings, $defaults ); |
|
1421 | + |
|
1422 | + /** |
|
1423 | + * Filter the Bootstrap settings. |
|
1424 | + * |
|
1425 | + * @todo if we add this filer people might use it and then it defeates the purpose of this class :/ |
|
1426 | + */ |
|
1427 | + return $this->settings = apply_filters( 'ayecode-ui-settings', $settings, $db_settings, $defaults ); |
|
1428 | + } |
|
1429 | 1429 | |
1430 | 1430 | |
1431 | - /** |
|
1432 | - * The settings page html output. |
|
1433 | - */ |
|
1434 | - public function settings_page() { |
|
1435 | - if ( ! current_user_can( 'manage_options' ) ) { |
|
1436 | - wp_die( __( 'You do not have sufficient permissions to access this page.', 'aui' ) ); |
|
1437 | - } |
|
1438 | - ?> |
|
1431 | + /** |
|
1432 | + * The settings page html output. |
|
1433 | + */ |
|
1434 | + public function settings_page() { |
|
1435 | + if ( ! current_user_can( 'manage_options' ) ) { |
|
1436 | + wp_die( __( 'You do not have sufficient permissions to access this page.', 'aui' ) ); |
|
1437 | + } |
|
1438 | + ?> |
|
1439 | 1439 | <div class="wrap"> |
1440 | 1440 | <h1><?php echo $this->name; ?></h1> |
1441 | 1441 | <p><?php _e("Here you can adjust settings if you are having compatibility issues.",'aui');?></p> |
1442 | 1442 | <form method="post" action="options.php"> |
1443 | 1443 | <?php |
1444 | - settings_fields( 'ayecode-ui-settings' ); |
|
1445 | - do_settings_sections( 'ayecode-ui-settings' ); |
|
1446 | - ?> |
|
1444 | + settings_fields( 'ayecode-ui-settings' ); |
|
1445 | + do_settings_sections( 'ayecode-ui-settings' ); |
|
1446 | + ?> |
|
1447 | 1447 | |
1448 | 1448 | <h2><?php _e( 'Frontend', 'aui' ); ?></h2> |
1449 | 1449 | <table class="form-table wpbs-table-settings"> |
@@ -1523,60 +1523,60 @@ discard block |
||
1523 | 1523 | </table> |
1524 | 1524 | |
1525 | 1525 | <?php |
1526 | - submit_button(); |
|
1527 | - ?> |
|
1526 | + submit_button(); |
|
1527 | + ?> |
|
1528 | 1528 | </form> |
1529 | 1529 | |
1530 | 1530 | <div id="wpbs-version"><?php echo $this->version; ?></div> |
1531 | 1531 | </div> |
1532 | 1532 | |
1533 | 1533 | <?php |
1534 | - } |
|
1534 | + } |
|
1535 | 1535 | |
1536 | - public function customizer_settings($wp_customize){ |
|
1537 | - $wp_customize->add_section('aui_settings', array( |
|
1538 | - 'title' => __('AyeCode UI','aui'), |
|
1539 | - 'priority' => 120, |
|
1540 | - )); |
|
1541 | - |
|
1542 | - // ============================= |
|
1543 | - // = Color Picker = |
|
1544 | - // ============================= |
|
1545 | - $wp_customize->add_setting('aui_options[color_primary]', array( |
|
1546 | - 'default' => AUI_PRIMARY_COLOR, |
|
1547 | - 'sanitize_callback' => 'sanitize_hex_color', |
|
1548 | - 'capability' => 'edit_theme_options', |
|
1549 | - 'type' => 'option', |
|
1550 | - 'transport' => 'refresh', |
|
1551 | - )); |
|
1552 | - $wp_customize->add_control( new WP_Customize_Color_Control($wp_customize, 'color_primary', array( |
|
1553 | - 'label' => __('Primary Color','aui'), |
|
1554 | - 'section' => 'aui_settings', |
|
1555 | - 'settings' => 'aui_options[color_primary]', |
|
1556 | - ))); |
|
1557 | - |
|
1558 | - $wp_customize->add_setting('aui_options[color_secondary]', array( |
|
1559 | - 'default' => '#6c757d', |
|
1560 | - 'sanitize_callback' => 'sanitize_hex_color', |
|
1561 | - 'capability' => 'edit_theme_options', |
|
1562 | - 'type' => 'option', |
|
1563 | - 'transport' => 'refresh', |
|
1564 | - )); |
|
1565 | - $wp_customize->add_control( new WP_Customize_Color_Control($wp_customize, 'color_secondary', array( |
|
1566 | - 'label' => __('Secondary Color','aui'), |
|
1567 | - 'section' => 'aui_settings', |
|
1568 | - 'settings' => 'aui_options[color_secondary]', |
|
1569 | - ))); |
|
1570 | - } |
|
1536 | + public function customizer_settings($wp_customize){ |
|
1537 | + $wp_customize->add_section('aui_settings', array( |
|
1538 | + 'title' => __('AyeCode UI','aui'), |
|
1539 | + 'priority' => 120, |
|
1540 | + )); |
|
1541 | + |
|
1542 | + // ============================= |
|
1543 | + // = Color Picker = |
|
1544 | + // ============================= |
|
1545 | + $wp_customize->add_setting('aui_options[color_primary]', array( |
|
1546 | + 'default' => AUI_PRIMARY_COLOR, |
|
1547 | + 'sanitize_callback' => 'sanitize_hex_color', |
|
1548 | + 'capability' => 'edit_theme_options', |
|
1549 | + 'type' => 'option', |
|
1550 | + 'transport' => 'refresh', |
|
1551 | + )); |
|
1552 | + $wp_customize->add_control( new WP_Customize_Color_Control($wp_customize, 'color_primary', array( |
|
1553 | + 'label' => __('Primary Color','aui'), |
|
1554 | + 'section' => 'aui_settings', |
|
1555 | + 'settings' => 'aui_options[color_primary]', |
|
1556 | + ))); |
|
1557 | + |
|
1558 | + $wp_customize->add_setting('aui_options[color_secondary]', array( |
|
1559 | + 'default' => '#6c757d', |
|
1560 | + 'sanitize_callback' => 'sanitize_hex_color', |
|
1561 | + 'capability' => 'edit_theme_options', |
|
1562 | + 'type' => 'option', |
|
1563 | + 'transport' => 'refresh', |
|
1564 | + )); |
|
1565 | + $wp_customize->add_control( new WP_Customize_Color_Control($wp_customize, 'color_secondary', array( |
|
1566 | + 'label' => __('Secondary Color','aui'), |
|
1567 | + 'section' => 'aui_settings', |
|
1568 | + 'settings' => 'aui_options[color_secondary]', |
|
1569 | + ))); |
|
1570 | + } |
|
1571 | 1571 | |
1572 | - /** |
|
1573 | - * CSS to help with conflict issues with other plugins and themes using bootstrap v3. |
|
1574 | - * |
|
1575 | - * @return mixed |
|
1576 | - */ |
|
1577 | - public static function bs3_compat_css() { |
|
1578 | - ob_start(); |
|
1579 | - ?> |
|
1572 | + /** |
|
1573 | + * CSS to help with conflict issues with other plugins and themes using bootstrap v3. |
|
1574 | + * |
|
1575 | + * @return mixed |
|
1576 | + */ |
|
1577 | + public static function bs3_compat_css() { |
|
1578 | + ob_start(); |
|
1579 | + ?> |
|
1580 | 1580 | <style> |
1581 | 1581 | /* Bootstrap 3 compatibility */ |
1582 | 1582 | body.modal-open .modal-backdrop.show:not(.in) {opacity:0.5;} |
@@ -1605,583 +1605,583 @@ discard block |
||
1605 | 1605 | <?php } ?> |
1606 | 1606 | </style> |
1607 | 1607 | <?php |
1608 | - return str_replace( array( |
|
1609 | - '<style>', |
|
1610 | - '</style>' |
|
1611 | - ), '', self::minify_css( ob_get_clean() ) ); |
|
1612 | - } |
|
1608 | + return str_replace( array( |
|
1609 | + '<style>', |
|
1610 | + '</style>' |
|
1611 | + ), '', self::minify_css( ob_get_clean() ) ); |
|
1612 | + } |
|
1613 | 1613 | |
1614 | 1614 | |
1615 | - public static function custom_css($compatibility = true) { |
|
1616 | - $settings = get_option('aui_options'); |
|
1615 | + public static function custom_css($compatibility = true) { |
|
1616 | + $settings = get_option('aui_options'); |
|
1617 | 1617 | |
1618 | - ob_start(); |
|
1618 | + ob_start(); |
|
1619 | 1619 | |
1620 | - $primary_color = !empty($settings['color_primary']) ? $settings['color_primary'] : AUI_PRIMARY_COLOR; |
|
1621 | - $secondary_color = !empty($settings['color_secondary']) ? $settings['color_secondary'] : AUI_SECONDARY_COLOR; |
|
1622 | - //AUI_PRIMARY_COLOR_ORIGINAL |
|
1623 | - ?> |
|
1620 | + $primary_color = !empty($settings['color_primary']) ? $settings['color_primary'] : AUI_PRIMARY_COLOR; |
|
1621 | + $secondary_color = !empty($settings['color_secondary']) ? $settings['color_secondary'] : AUI_SECONDARY_COLOR; |
|
1622 | + //AUI_PRIMARY_COLOR_ORIGINAL |
|
1623 | + ?> |
|
1624 | 1624 | <style> |
1625 | 1625 | <?php |
1626 | 1626 | |
1627 | - // BS v3 compat |
|
1628 | - if( self::is_bs3_compat() ){ |
|
1629 | - echo self::bs3_compat_css(); |
|
1630 | - } |
|
1627 | + // BS v3 compat |
|
1628 | + if( self::is_bs3_compat() ){ |
|
1629 | + echo self::bs3_compat_css(); |
|
1630 | + } |
|
1631 | 1631 | |
1632 | - if(!is_admin() && $primary_color != AUI_PRIMARY_COLOR_ORIGINAL){ |
|
1633 | - echo self::css_primary($primary_color,$compatibility); |
|
1634 | - } |
|
1632 | + if(!is_admin() && $primary_color != AUI_PRIMARY_COLOR_ORIGINAL){ |
|
1633 | + echo self::css_primary($primary_color,$compatibility); |
|
1634 | + } |
|
1635 | 1635 | |
1636 | - if(!is_admin() && $secondary_color != AUI_SECONDARY_COLOR_ORIGINAL){ |
|
1637 | - echo self::css_secondary($settings['color_secondary'],$compatibility); |
|
1638 | - } |
|
1636 | + if(!is_admin() && $secondary_color != AUI_SECONDARY_COLOR_ORIGINAL){ |
|
1637 | + echo self::css_secondary($settings['color_secondary'],$compatibility); |
|
1638 | + } |
|
1639 | 1639 | |
1640 | - // Set admin bar z-index lower when modal is open. |
|
1641 | - echo ' body.modal-open #wpadminbar{z-index:999}.embed-responsive-16by9 .fluid-width-video-wrapper{padding:0 !important;position:initial}'; |
|
1640 | + // Set admin bar z-index lower when modal is open. |
|
1641 | + echo ' body.modal-open #wpadminbar{z-index:999}.embed-responsive-16by9 .fluid-width-video-wrapper{padding:0 !important;position:initial}'; |
|
1642 | 1642 | |
1643 | - if(is_admin()){ |
|
1644 | - echo ' body.modal-open #adminmenuwrap{z-index:999} body.modal-open #wpadminbar{z-index:1025}'; |
|
1645 | - } |
|
1643 | + if(is_admin()){ |
|
1644 | + echo ' body.modal-open #adminmenuwrap{z-index:999} body.modal-open #wpadminbar{z-index:1025}'; |
|
1645 | + } |
|
1646 | 1646 | ?> |
1647 | 1647 | </style> |
1648 | 1648 | <?php |
1649 | 1649 | |
1650 | 1650 | |
1651 | - /* |
|
1651 | + /* |
|
1652 | 1652 | * We only add the <script> tags for code highlighting, so we strip them from the output. |
1653 | 1653 | */ |
1654 | - return str_replace( array( |
|
1655 | - '<style>', |
|
1656 | - '</style>' |
|
1657 | - ), '', self::minify_css( ob_get_clean() ) ); |
|
1658 | - } |
|
1654 | + return str_replace( array( |
|
1655 | + '<style>', |
|
1656 | + '</style>' |
|
1657 | + ), '', self::minify_css( ob_get_clean() ) ); |
|
1658 | + } |
|
1659 | 1659 | |
1660 | - /** |
|
1661 | - * Check if we should add booststrap 3 compatibility changes. |
|
1662 | - * |
|
1663 | - * @return bool |
|
1664 | - */ |
|
1665 | - public static function is_bs3_compat(){ |
|
1666 | - return defined('AYECODE_UI_BS3_COMPAT') || defined('SVQ_THEME_VERSION') || defined('FUSION_BUILDER_VERSION'); |
|
1667 | - } |
|
1660 | + /** |
|
1661 | + * Check if we should add booststrap 3 compatibility changes. |
|
1662 | + * |
|
1663 | + * @return bool |
|
1664 | + */ |
|
1665 | + public static function is_bs3_compat(){ |
|
1666 | + return defined('AYECODE_UI_BS3_COMPAT') || defined('SVQ_THEME_VERSION') || defined('FUSION_BUILDER_VERSION'); |
|
1667 | + } |
|
1668 | 1668 | |
1669 | - public static function css_primary($color_code,$compatibility){; |
|
1670 | - $color_code = sanitize_hex_color($color_code); |
|
1671 | - if(!$color_code){return '';} |
|
1672 | - /** |
|
1673 | - * c = color, b = background color, o = border-color, f = fill |
|
1674 | - */ |
|
1675 | - $selectors = array( |
|
1676 | - 'a' => array('c'), |
|
1677 | - '.btn-primary' => array('b','o'), |
|
1678 | - '.btn-primary.disabled' => array('b','o'), |
|
1679 | - '.btn-primary:disabled' => array('b','o'), |
|
1680 | - '.btn-outline-primary' => array('c','o'), |
|
1681 | - '.btn-outline-primary:hover' => array('b','o'), |
|
1682 | - '.btn-outline-primary:not(:disabled):not(.disabled).active' => array('b','o'), |
|
1683 | - '.btn-outline-primary:not(:disabled):not(.disabled):active' => array('b','o'), |
|
1684 | - '.show>.btn-outline-primary.dropdown-toggle' => array('b','o'), |
|
1685 | - '.btn-link' => array('c'), |
|
1686 | - '.dropdown-item.active' => array('b'), |
|
1687 | - '.custom-control-input:checked~.custom-control-label::before' => array('b','o'), |
|
1688 | - '.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before' => array('b','o'), |
|
1669 | + public static function css_primary($color_code,$compatibility){; |
|
1670 | + $color_code = sanitize_hex_color($color_code); |
|
1671 | + if(!$color_code){return '';} |
|
1672 | + /** |
|
1673 | + * c = color, b = background color, o = border-color, f = fill |
|
1674 | + */ |
|
1675 | + $selectors = array( |
|
1676 | + 'a' => array('c'), |
|
1677 | + '.btn-primary' => array('b','o'), |
|
1678 | + '.btn-primary.disabled' => array('b','o'), |
|
1679 | + '.btn-primary:disabled' => array('b','o'), |
|
1680 | + '.btn-outline-primary' => array('c','o'), |
|
1681 | + '.btn-outline-primary:hover' => array('b','o'), |
|
1682 | + '.btn-outline-primary:not(:disabled):not(.disabled).active' => array('b','o'), |
|
1683 | + '.btn-outline-primary:not(:disabled):not(.disabled):active' => array('b','o'), |
|
1684 | + '.show>.btn-outline-primary.dropdown-toggle' => array('b','o'), |
|
1685 | + '.btn-link' => array('c'), |
|
1686 | + '.dropdown-item.active' => array('b'), |
|
1687 | + '.custom-control-input:checked~.custom-control-label::before' => array('b','o'), |
|
1688 | + '.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before' => array('b','o'), |
|
1689 | 1689 | // '.custom-range::-webkit-slider-thumb' => array('b'), // these break the inline rules... |
1690 | 1690 | // '.custom-range::-moz-range-thumb' => array('b'), |
1691 | 1691 | // '.custom-range::-ms-thumb' => array('b'), |
1692 | - '.nav-pills .nav-link.active' => array('b'), |
|
1693 | - '.nav-pills .show>.nav-link' => array('b'), |
|
1694 | - '.page-link' => array('c'), |
|
1695 | - '.page-item.active .page-link' => array('b','o'), |
|
1696 | - '.badge-primary' => array('b'), |
|
1697 | - '.alert-primary' => array('b','o'), |
|
1698 | - '.progress-bar' => array('b'), |
|
1699 | - '.list-group-item.active' => array('b','o'), |
|
1700 | - '.bg-primary' => array('b','f'), |
|
1701 | - '.btn-link.btn-primary' => array('c'), |
|
1702 | - '.select2-container .select2-results__option--highlighted.select2-results__option[aria-selected=true]' => array('b'), |
|
1703 | - ); |
|
1704 | - |
|
1705 | - $important_selectors = array( |
|
1706 | - '.bg-primary' => array('b','f'), |
|
1707 | - '.border-primary' => array('o'), |
|
1708 | - '.text-primary' => array('c'), |
|
1709 | - ); |
|
1710 | - |
|
1711 | - $color = array(); |
|
1712 | - $color_i = array(); |
|
1713 | - $background = array(); |
|
1714 | - $background_i = array(); |
|
1715 | - $border = array(); |
|
1716 | - $border_i = array(); |
|
1717 | - $fill = array(); |
|
1718 | - $fill_i = array(); |
|
1719 | - |
|
1720 | - $output = ''; |
|
1721 | - |
|
1722 | - // build rules into each type |
|
1723 | - foreach($selectors as $selector => $types){ |
|
1724 | - $selector = $compatibility ? ".bsui ".$selector : $selector; |
|
1725 | - $types = array_combine($types,$types); |
|
1726 | - if(isset($types['c'])){$color[] = $selector;} |
|
1727 | - if(isset($types['b'])){$background[] = $selector;} |
|
1728 | - if(isset($types['o'])){$border[] = $selector;} |
|
1729 | - if(isset($types['f'])){$fill[] = $selector;} |
|
1730 | - } |
|
1731 | - |
|
1732 | - // build rules into each type |
|
1733 | - foreach($important_selectors as $selector => $types){ |
|
1734 | - $selector = $compatibility ? ".bsui ".$selector : $selector; |
|
1735 | - $types = array_combine($types,$types); |
|
1736 | - if(isset($types['c'])){$color_i[] = $selector;} |
|
1737 | - if(isset($types['b'])){$background_i[] = $selector;} |
|
1738 | - if(isset($types['o'])){$border_i[] = $selector;} |
|
1739 | - if(isset($types['f'])){$fill_i[] = $selector;} |
|
1740 | - } |
|
1741 | - |
|
1742 | - // add any color rules |
|
1743 | - if(!empty($color)){ |
|
1744 | - $output .= implode(",",$color) . "{color: $color_code;} "; |
|
1745 | - } |
|
1746 | - if(!empty($color_i)){ |
|
1747 | - $output .= implode(",",$color_i) . "{color: $color_code !important;} "; |
|
1748 | - } |
|
1749 | - |
|
1750 | - // add any background color rules |
|
1751 | - if(!empty($background)){ |
|
1752 | - $output .= implode(",",$background) . "{background-color: $color_code;} "; |
|
1753 | - } |
|
1754 | - if(!empty($background_i)){ |
|
1755 | - $output .= implode(",",$background_i) . "{background-color: $color_code !important;} "; |
|
1756 | - } |
|
1757 | - |
|
1758 | - // add any border color rules |
|
1759 | - if(!empty($border)){ |
|
1760 | - $output .= implode(",",$border) . "{border-color: $color_code;} "; |
|
1761 | - } |
|
1762 | - if(!empty($border_i)){ |
|
1763 | - $output .= implode(",",$border_i) . "{border-color: $color_code !important;} "; |
|
1764 | - } |
|
1765 | - |
|
1766 | - // add any fill color rules |
|
1767 | - if(!empty($fill)){ |
|
1768 | - $output .= implode(",",$fill) . "{fill: $color_code;} "; |
|
1769 | - } |
|
1770 | - if(!empty($fill_i)){ |
|
1771 | - $output .= implode(",",$fill_i) . "{fill: $color_code !important;} "; |
|
1772 | - } |
|
1773 | - |
|
1774 | - |
|
1775 | - $prefix = $compatibility ? ".bsui " : ""; |
|
1776 | - |
|
1777 | - // darken |
|
1778 | - $darker_075 = self::css_hex_lighten_darken($color_code,"-0.075"); |
|
1779 | - $darker_10 = self::css_hex_lighten_darken($color_code,"-0.10"); |
|
1780 | - $darker_125 = self::css_hex_lighten_darken($color_code,"-0.125"); |
|
1781 | - |
|
1782 | - // lighten |
|
1783 | - $lighten_25 = self::css_hex_lighten_darken($color_code,"0.25"); |
|
1784 | - |
|
1785 | - // opacity see https://css-tricks.com/8-digit-hex-codes/ |
|
1786 | - $op_25 = $color_code."40"; // 25% opacity |
|
1787 | - |
|
1788 | - |
|
1789 | - // button states |
|
1790 | - $output .= $prefix ." .btn-primary:hover, $prefix .btn-primary:focus, $prefix .btn-primary.focus{background-color: ".$darker_075."; border-color: ".$darker_10.";} "; |
|
1791 | - $output .= $prefix ." .btn-outline-primary:not(:disabled):not(.disabled):active:focus, $prefix .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show>$prefix .btn-outline-primary.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem $op_25;} "; |
|
1792 | - $output .= $prefix ." .btn-primary:not(:disabled):not(.disabled):active, $prefix .btn-primary:not(:disabled):not(.disabled).active, .show>$prefix .btn-primary.dropdown-toggle{background-color: ".$darker_10."; border-color: ".$darker_125.";} "; |
|
1793 | - $output .= $prefix ." .btn-primary:not(:disabled):not(.disabled):active:focus, $prefix .btn-primary:not(:disabled):not(.disabled).active:focus, .show>$prefix .btn-primary.dropdown-toggle:focus {box-shadow: 0 0 0 0.2rem $op_25;} "; |
|
1794 | - |
|
1795 | - |
|
1796 | - // dropdown's |
|
1797 | - $output .= $prefix ." .dropdown-item.active, $prefix .dropdown-item:active{background-color: $color_code;} "; |
|
1798 | - |
|
1799 | - |
|
1800 | - // input states |
|
1801 | - $output .= $prefix ." .form-control:focus{border-color: ".$lighten_25.";box-shadow: 0 0 0 0.2rem $op_25;} "; |
|
1802 | - |
|
1803 | - // page link |
|
1804 | - $output .= $prefix ." .page-link:focus{box-shadow: 0 0 0 0.2rem $op_25;} "; |
|
1805 | - |
|
1806 | - return $output; |
|
1807 | - } |
|
1692 | + '.nav-pills .nav-link.active' => array('b'), |
|
1693 | + '.nav-pills .show>.nav-link' => array('b'), |
|
1694 | + '.page-link' => array('c'), |
|
1695 | + '.page-item.active .page-link' => array('b','o'), |
|
1696 | + '.badge-primary' => array('b'), |
|
1697 | + '.alert-primary' => array('b','o'), |
|
1698 | + '.progress-bar' => array('b'), |
|
1699 | + '.list-group-item.active' => array('b','o'), |
|
1700 | + '.bg-primary' => array('b','f'), |
|
1701 | + '.btn-link.btn-primary' => array('c'), |
|
1702 | + '.select2-container .select2-results__option--highlighted.select2-results__option[aria-selected=true]' => array('b'), |
|
1703 | + ); |
|
1704 | + |
|
1705 | + $important_selectors = array( |
|
1706 | + '.bg-primary' => array('b','f'), |
|
1707 | + '.border-primary' => array('o'), |
|
1708 | + '.text-primary' => array('c'), |
|
1709 | + ); |
|
1710 | + |
|
1711 | + $color = array(); |
|
1712 | + $color_i = array(); |
|
1713 | + $background = array(); |
|
1714 | + $background_i = array(); |
|
1715 | + $border = array(); |
|
1716 | + $border_i = array(); |
|
1717 | + $fill = array(); |
|
1718 | + $fill_i = array(); |
|
1719 | + |
|
1720 | + $output = ''; |
|
1721 | + |
|
1722 | + // build rules into each type |
|
1723 | + foreach($selectors as $selector => $types){ |
|
1724 | + $selector = $compatibility ? ".bsui ".$selector : $selector; |
|
1725 | + $types = array_combine($types,$types); |
|
1726 | + if(isset($types['c'])){$color[] = $selector;} |
|
1727 | + if(isset($types['b'])){$background[] = $selector;} |
|
1728 | + if(isset($types['o'])){$border[] = $selector;} |
|
1729 | + if(isset($types['f'])){$fill[] = $selector;} |
|
1730 | + } |
|
1808 | 1731 | |
1809 | - public static function css_secondary($color_code,$compatibility){; |
|
1810 | - $color_code = sanitize_hex_color($color_code); |
|
1811 | - if(!$color_code){return '';} |
|
1812 | - /** |
|
1813 | - * c = color, b = background color, o = border-color, f = fill |
|
1814 | - */ |
|
1815 | - $selectors = array( |
|
1816 | - '.btn-secondary' => array('b','o'), |
|
1817 | - '.btn-secondary.disabled' => array('b','o'), |
|
1818 | - '.btn-secondary:disabled' => array('b','o'), |
|
1819 | - '.btn-outline-secondary' => array('c','o'), |
|
1820 | - '.btn-outline-secondary:hover' => array('b','o'), |
|
1821 | - '.btn-outline-secondary.disabled' => array('c'), |
|
1822 | - '.btn-outline-secondary:disabled' => array('c'), |
|
1823 | - '.btn-outline-secondary:not(:disabled):not(.disabled):active' => array('b','o'), |
|
1824 | - '.btn-outline-secondary:not(:disabled):not(.disabled).active' => array('b','o'), |
|
1825 | - '.btn-outline-secondary.dropdown-toggle' => array('b','o'), |
|
1826 | - '.badge-secondary' => array('b'), |
|
1827 | - '.alert-secondary' => array('b','o'), |
|
1828 | - '.btn-link.btn-secondary' => array('c'), |
|
1829 | - ); |
|
1830 | - |
|
1831 | - $important_selectors = array( |
|
1832 | - '.bg-secondary' => array('b','f'), |
|
1833 | - '.border-secondary' => array('o'), |
|
1834 | - '.text-secondary' => array('c'), |
|
1835 | - ); |
|
1836 | - |
|
1837 | - $color = array(); |
|
1838 | - $color_i = array(); |
|
1839 | - $background = array(); |
|
1840 | - $background_i = array(); |
|
1841 | - $border = array(); |
|
1842 | - $border_i = array(); |
|
1843 | - $fill = array(); |
|
1844 | - $fill_i = array(); |
|
1845 | - |
|
1846 | - $output = ''; |
|
1847 | - |
|
1848 | - // build rules into each type |
|
1849 | - foreach($selectors as $selector => $types){ |
|
1850 | - $selector = $compatibility ? ".bsui ".$selector : $selector; |
|
1851 | - $types = array_combine($types,$types); |
|
1852 | - if(isset($types['c'])){$color[] = $selector;} |
|
1853 | - if(isset($types['b'])){$background[] = $selector;} |
|
1854 | - if(isset($types['o'])){$border[] = $selector;} |
|
1855 | - if(isset($types['f'])){$fill[] = $selector;} |
|
1856 | - } |
|
1857 | - |
|
1858 | - // build rules into each type |
|
1859 | - foreach($important_selectors as $selector => $types){ |
|
1860 | - $selector = $compatibility ? ".bsui ".$selector : $selector; |
|
1861 | - $types = array_combine($types,$types); |
|
1862 | - if(isset($types['c'])){$color_i[] = $selector;} |
|
1863 | - if(isset($types['b'])){$background_i[] = $selector;} |
|
1864 | - if(isset($types['o'])){$border_i[] = $selector;} |
|
1865 | - if(isset($types['f'])){$fill_i[] = $selector;} |
|
1866 | - } |
|
1867 | - |
|
1868 | - // add any color rules |
|
1869 | - if(!empty($color)){ |
|
1870 | - $output .= implode(",",$color) . "{color: $color_code;} "; |
|
1871 | - } |
|
1872 | - if(!empty($color_i)){ |
|
1873 | - $output .= implode(",",$color_i) . "{color: $color_code !important;} "; |
|
1874 | - } |
|
1875 | - |
|
1876 | - // add any background color rules |
|
1877 | - if(!empty($background)){ |
|
1878 | - $output .= implode(",",$background) . "{background-color: $color_code;} "; |
|
1879 | - } |
|
1880 | - if(!empty($background_i)){ |
|
1881 | - $output .= implode(",",$background_i) . "{background-color: $color_code !important;} "; |
|
1882 | - } |
|
1883 | - |
|
1884 | - // add any border color rules |
|
1885 | - if(!empty($border)){ |
|
1886 | - $output .= implode(",",$border) . "{border-color: $color_code;} "; |
|
1887 | - } |
|
1888 | - if(!empty($border_i)){ |
|
1889 | - $output .= implode(",",$border_i) . "{border-color: $color_code !important;} "; |
|
1890 | - } |
|
1891 | - |
|
1892 | - // add any fill color rules |
|
1893 | - if(!empty($fill)){ |
|
1894 | - $output .= implode(",",$fill) . "{fill: $color_code;} "; |
|
1895 | - } |
|
1896 | - if(!empty($fill_i)){ |
|
1897 | - $output .= implode(",",$fill_i) . "{fill: $color_code !important;} "; |
|
1898 | - } |
|
1899 | - |
|
1900 | - |
|
1901 | - $prefix = $compatibility ? ".bsui " : ""; |
|
1902 | - |
|
1903 | - // darken |
|
1904 | - $darker_075 = self::css_hex_lighten_darken($color_code,"-0.075"); |
|
1905 | - $darker_10 = self::css_hex_lighten_darken($color_code,"-0.10"); |
|
1906 | - $darker_125 = self::css_hex_lighten_darken($color_code,"-0.125"); |
|
1907 | - |
|
1908 | - // lighten |
|
1909 | - $lighten_25 = self::css_hex_lighten_darken($color_code,"0.25"); |
|
1910 | - |
|
1911 | - // opacity see https://css-tricks.com/8-digit-hex-codes/ |
|
1912 | - $op_25 = $color_code."40"; // 25% opacity |
|
1913 | - |
|
1914 | - |
|
1915 | - // button states |
|
1916 | - $output .= $prefix ." .btn-secondary:hover{background-color: ".$darker_075."; border-color: ".$darker_10.";} "; |
|
1917 | - $output .= $prefix ." .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, $prefix .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show>$prefix .btn-outline-secondary.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem $op_25;} "; |
|
1918 | - $output .= $prefix ." .btn-secondary:not(:disabled):not(.disabled):active, $prefix .btn-secondary:not(:disabled):not(.disabled).active, .show>$prefix .btn-secondary.dropdown-toggle{background-color: ".$darker_10."; border-color: ".$darker_125.";} "; |
|
1919 | - $output .= $prefix ." .btn-secondary:not(:disabled):not(.disabled):active:focus, $prefix .btn-secondary:not(:disabled):not(.disabled).active:focus, .show>$prefix .btn-secondary.dropdown-toggle:focus {box-shadow: 0 0 0 0.2rem $op_25;} "; |
|
1920 | - |
|
1921 | - |
|
1922 | - return $output; |
|
1923 | - } |
|
1732 | + // build rules into each type |
|
1733 | + foreach($important_selectors as $selector => $types){ |
|
1734 | + $selector = $compatibility ? ".bsui ".$selector : $selector; |
|
1735 | + $types = array_combine($types,$types); |
|
1736 | + if(isset($types['c'])){$color_i[] = $selector;} |
|
1737 | + if(isset($types['b'])){$background_i[] = $selector;} |
|
1738 | + if(isset($types['o'])){$border_i[] = $selector;} |
|
1739 | + if(isset($types['f'])){$fill_i[] = $selector;} |
|
1740 | + } |
|
1924 | 1741 | |
1925 | - /** |
|
1926 | - * Increases or decreases the brightness of a color by a percentage of the current brightness. |
|
1927 | - * |
|
1928 | - * @param string $hexCode Supported formats: `#FFF`, `#FFFFFF`, `FFF`, `FFFFFF` |
|
1929 | - * @param float $adjustPercent A number between -1 and 1. E.g. 0.3 = 30% lighter; -0.4 = 40% darker. |
|
1930 | - * |
|
1931 | - * @return string |
|
1932 | - */ |
|
1933 | - public static function css_hex_lighten_darken($hexCode, $adjustPercent) { |
|
1934 | - $hexCode = ltrim($hexCode, '#'); |
|
1742 | + // add any color rules |
|
1743 | + if(!empty($color)){ |
|
1744 | + $output .= implode(",",$color) . "{color: $color_code;} "; |
|
1745 | + } |
|
1746 | + if(!empty($color_i)){ |
|
1747 | + $output .= implode(",",$color_i) . "{color: $color_code !important;} "; |
|
1748 | + } |
|
1935 | 1749 | |
1936 | - if (strlen($hexCode) == 3) { |
|
1937 | - $hexCode = $hexCode[0] . $hexCode[0] . $hexCode[1] . $hexCode[1] . $hexCode[2] . $hexCode[2]; |
|
1938 | - } |
|
1750 | + // add any background color rules |
|
1751 | + if(!empty($background)){ |
|
1752 | + $output .= implode(",",$background) . "{background-color: $color_code;} "; |
|
1753 | + } |
|
1754 | + if(!empty($background_i)){ |
|
1755 | + $output .= implode(",",$background_i) . "{background-color: $color_code !important;} "; |
|
1756 | + } |
|
1939 | 1757 | |
1940 | - $hexCode = array_map('hexdec', str_split($hexCode, 2)); |
|
1758 | + // add any border color rules |
|
1759 | + if(!empty($border)){ |
|
1760 | + $output .= implode(",",$border) . "{border-color: $color_code;} "; |
|
1761 | + } |
|
1762 | + if(!empty($border_i)){ |
|
1763 | + $output .= implode(",",$border_i) . "{border-color: $color_code !important;} "; |
|
1764 | + } |
|
1941 | 1765 | |
1942 | - foreach ($hexCode as & $color) { |
|
1943 | - $adjustableLimit = $adjustPercent < 0 ? $color : 255 - $color; |
|
1944 | - $adjustAmount = ceil($adjustableLimit * $adjustPercent); |
|
1766 | + // add any fill color rules |
|
1767 | + if(!empty($fill)){ |
|
1768 | + $output .= implode(",",$fill) . "{fill: $color_code;} "; |
|
1769 | + } |
|
1770 | + if(!empty($fill_i)){ |
|
1771 | + $output .= implode(",",$fill_i) . "{fill: $color_code !important;} "; |
|
1772 | + } |
|
1945 | 1773 | |
1946 | - $color = str_pad(dechex($color + $adjustAmount), 2, '0', STR_PAD_LEFT); |
|
1947 | - } |
|
1948 | 1774 | |
1949 | - return '#' . implode($hexCode); |
|
1950 | - } |
|
1775 | + $prefix = $compatibility ? ".bsui " : ""; |
|
1951 | 1776 | |
1952 | - /** |
|
1953 | - * Check if we should display examples. |
|
1954 | - */ |
|
1955 | - public function maybe_show_examples(){ |
|
1956 | - if(current_user_can('manage_options') && isset($_REQUEST['preview-aui'])){ |
|
1957 | - echo "<head>"; |
|
1958 | - wp_head(); |
|
1959 | - echo "</head>"; |
|
1960 | - echo "<body>"; |
|
1961 | - echo $this->get_examples(); |
|
1962 | - echo "</body>"; |
|
1963 | - exit; |
|
1964 | - } |
|
1965 | - } |
|
1777 | + // darken |
|
1778 | + $darker_075 = self::css_hex_lighten_darken($color_code,"-0.075"); |
|
1779 | + $darker_10 = self::css_hex_lighten_darken($color_code,"-0.10"); |
|
1780 | + $darker_125 = self::css_hex_lighten_darken($color_code,"-0.125"); |
|
1966 | 1781 | |
1967 | - /** |
|
1968 | - * Get developer examples. |
|
1969 | - * |
|
1970 | - * @return string |
|
1971 | - */ |
|
1972 | - public function get_examples(){ |
|
1973 | - $output = ''; |
|
1974 | - |
|
1975 | - |
|
1976 | - // open form |
|
1977 | - $output .= "<form class='p-5 m-5 border rounded'>"; |
|
1978 | - |
|
1979 | - // input example |
|
1980 | - $output .= aui()->input(array( |
|
1981 | - 'type' => 'text', |
|
1982 | - 'id' => 'text-example', |
|
1983 | - 'name' => 'text-example', |
|
1984 | - 'placeholder' => 'text placeholder', |
|
1985 | - 'title' => 'Text input example', |
|
1986 | - 'value' => '', |
|
1987 | - 'required' => false, |
|
1988 | - 'help_text' => 'help text', |
|
1989 | - 'label' => 'Text input example label' |
|
1990 | - )); |
|
1991 | - |
|
1992 | - // input example |
|
1993 | - $output .= aui()->input(array( |
|
1994 | - 'type' => 'url', |
|
1995 | - 'id' => 'text-example2', |
|
1996 | - 'name' => 'text-example', |
|
1997 | - 'placeholder' => 'url placeholder', |
|
1998 | - 'title' => 'Text input example', |
|
1999 | - 'value' => '', |
|
2000 | - 'required' => false, |
|
2001 | - 'help_text' => 'help text', |
|
2002 | - 'label' => 'Text input example label' |
|
2003 | - )); |
|
2004 | - |
|
2005 | - // checkbox example |
|
2006 | - $output .= aui()->input(array( |
|
2007 | - 'type' => 'checkbox', |
|
2008 | - 'id' => 'checkbox-example', |
|
2009 | - 'name' => 'checkbox-example', |
|
2010 | - 'placeholder' => 'checkbox-example', |
|
2011 | - 'title' => 'Checkbox example', |
|
2012 | - 'value' => '1', |
|
2013 | - 'checked' => true, |
|
2014 | - 'required' => false, |
|
2015 | - 'help_text' => 'help text', |
|
2016 | - 'label' => 'Checkbox checked' |
|
2017 | - )); |
|
2018 | - |
|
2019 | - // checkbox example |
|
2020 | - $output .= aui()->input(array( |
|
2021 | - 'type' => 'checkbox', |
|
2022 | - 'id' => 'checkbox-example2', |
|
2023 | - 'name' => 'checkbox-example2', |
|
2024 | - 'placeholder' => 'checkbox-example', |
|
2025 | - 'title' => 'Checkbox example', |
|
2026 | - 'value' => '1', |
|
2027 | - 'checked' => false, |
|
2028 | - 'required' => false, |
|
2029 | - 'help_text' => 'help text', |
|
2030 | - 'label' => 'Checkbox un-checked' |
|
2031 | - )); |
|
2032 | - |
|
2033 | - // switch example |
|
2034 | - $output .= aui()->input(array( |
|
2035 | - 'type' => 'checkbox', |
|
2036 | - 'id' => 'switch-example', |
|
2037 | - 'name' => 'switch-example', |
|
2038 | - 'placeholder' => 'checkbox-example', |
|
2039 | - 'title' => 'Switch example', |
|
2040 | - 'value' => '1', |
|
2041 | - 'checked' => true, |
|
2042 | - 'switch' => true, |
|
2043 | - 'required' => false, |
|
2044 | - 'help_text' => 'help text', |
|
2045 | - 'label' => 'Switch on' |
|
2046 | - )); |
|
2047 | - |
|
2048 | - // switch example |
|
2049 | - $output .= aui()->input(array( |
|
2050 | - 'type' => 'checkbox', |
|
2051 | - 'id' => 'switch-example2', |
|
2052 | - 'name' => 'switch-example2', |
|
2053 | - 'placeholder' => 'checkbox-example', |
|
2054 | - 'title' => 'Switch example', |
|
2055 | - 'value' => '1', |
|
2056 | - 'checked' => false, |
|
2057 | - 'switch' => true, |
|
2058 | - 'required' => false, |
|
2059 | - 'help_text' => 'help text', |
|
2060 | - 'label' => 'Switch off' |
|
2061 | - )); |
|
2062 | - |
|
2063 | - // close form |
|
2064 | - $output .= "</form>"; |
|
2065 | - |
|
2066 | - return $output; |
|
2067 | - } |
|
1782 | + // lighten |
|
1783 | + $lighten_25 = self::css_hex_lighten_darken($color_code,"0.25"); |
|
2068 | 1784 | |
2069 | - /** |
|
2070 | - * Calendar params. |
|
2071 | - * |
|
2072 | - * @since 0.1.44 |
|
2073 | - * |
|
2074 | - * @return array Calendar params. |
|
2075 | - */ |
|
2076 | - public static function calendar_params() { |
|
2077 | - $params = array( |
|
2078 | - 'month_long_1' => __( 'January', 'aui' ), |
|
2079 | - 'month_long_2' => __( 'February', 'aui' ), |
|
2080 | - 'month_long_3' => __( 'March', 'aui' ), |
|
2081 | - 'month_long_4' => __( 'April', 'aui' ), |
|
2082 | - 'month_long_5' => __( 'May', 'aui' ), |
|
2083 | - 'month_long_6' => __( 'June', 'aui' ), |
|
2084 | - 'month_long_7' => __( 'July', 'aui' ), |
|
2085 | - 'month_long_8' => __( 'August', 'aui' ), |
|
2086 | - 'month_long_9' => __( 'September', 'aui' ), |
|
2087 | - 'month_long_10' => __( 'October', 'aui' ), |
|
2088 | - 'month_long_11' => __( 'November', 'aui' ), |
|
2089 | - 'month_long_12' => __( 'December', 'aui' ), |
|
2090 | - 'month_s_1' => _x( 'Jan', 'January abbreviation', 'aui' ), |
|
2091 | - 'month_s_2' => _x( 'Feb', 'February abbreviation', 'aui' ), |
|
2092 | - 'month_s_3' => _x( 'Mar', 'March abbreviation', 'aui' ), |
|
2093 | - 'month_s_4' => _x( 'Apr', 'April abbreviation', 'aui' ), |
|
2094 | - 'month_s_5' => _x( 'May', 'May abbreviation', 'aui' ), |
|
2095 | - 'month_s_6' => _x( 'Jun', 'June abbreviation', 'aui' ), |
|
2096 | - 'month_s_7' => _x( 'Jul', 'July abbreviation', 'aui' ), |
|
2097 | - 'month_s_8' => _x( 'Aug', 'August abbreviation', 'aui' ), |
|
2098 | - 'month_s_9' => _x( 'Sep', 'September abbreviation', 'aui' ), |
|
2099 | - 'month_s_10' => _x( 'Oct', 'October abbreviation', 'aui' ), |
|
2100 | - 'month_s_11' => _x( 'Nov', 'November abbreviation', 'aui' ), |
|
2101 | - 'month_s_12' => _x( 'Dec', 'December abbreviation', 'aui' ), |
|
2102 | - 'day_s1_1' => _x( 'S', 'Sunday initial', 'aui' ), |
|
2103 | - 'day_s1_2' => _x( 'M', 'Monday initial', 'aui' ), |
|
2104 | - 'day_s1_3' => _x( 'T', 'Tuesday initial', 'aui' ), |
|
2105 | - 'day_s1_4' => _x( 'W', 'Wednesday initial', 'aui' ), |
|
2106 | - 'day_s1_5' => _x( 'T', 'Friday initial', 'aui' ), |
|
2107 | - 'day_s1_6' => _x( 'F', 'Thursday initial', 'aui' ), |
|
2108 | - 'day_s1_7' => _x( 'S', 'Saturday initial', 'aui' ), |
|
2109 | - 'day_s2_1' => __( 'Su', 'aui' ), |
|
2110 | - 'day_s2_2' => __( 'Mo', 'aui' ), |
|
2111 | - 'day_s2_3' => __( 'Tu', 'aui' ), |
|
2112 | - 'day_s2_4' => __( 'We', 'aui' ), |
|
2113 | - 'day_s2_5' => __( 'Th', 'aui' ), |
|
2114 | - 'day_s2_6' => __( 'Fr', 'aui' ), |
|
2115 | - 'day_s2_7' => __( 'Sa', 'aui' ), |
|
2116 | - 'day_s3_1' => __( 'Sun', 'aui' ), |
|
2117 | - 'day_s3_2' => __( 'Mon', 'aui' ), |
|
2118 | - 'day_s3_3' => __( 'Tue', 'aui' ), |
|
2119 | - 'day_s3_4' => __( 'Wed', 'aui' ), |
|
2120 | - 'day_s3_5' => __( 'Thu', 'aui' ), |
|
2121 | - 'day_s3_6' => __( 'Fri', 'aui' ), |
|
2122 | - 'day_s3_7' => __( 'Sat', 'aui' ), |
|
2123 | - 'day_s5_1' => __( 'Sunday', 'aui' ), |
|
2124 | - 'day_s5_2' => __( 'Monday', 'aui' ), |
|
2125 | - 'day_s5_3' => __( 'Tuesday', 'aui' ), |
|
2126 | - 'day_s5_4' => __( 'Wednesday', 'aui' ), |
|
2127 | - 'day_s5_5' => __( 'Thursday', 'aui' ), |
|
2128 | - 'day_s5_6' => __( 'Friday', 'aui' ), |
|
2129 | - 'day_s5_7' => __( 'Saturday', 'aui' ), |
|
2130 | - 'am_lower' => __( 'am', 'aui' ), |
|
2131 | - 'pm_lower' => __( 'pm', 'aui' ), |
|
2132 | - 'am_upper' => __( 'AM', 'aui' ), |
|
2133 | - 'pm_upper' => __( 'PM', 'aui' ), |
|
2134 | - 'firstDayOfWeek' => (int) get_option( 'start_of_week' ), |
|
2135 | - 'time_24hr' => false, |
|
2136 | - 'year' => __( 'Year', 'aui' ), |
|
2137 | - 'hour' => __( 'Hour', 'aui' ), |
|
2138 | - 'minute' => __( 'Minute', 'aui' ), |
|
2139 | - 'weekAbbreviation' => __( 'Wk', 'aui' ), |
|
2140 | - 'rangeSeparator' => __( ' to ', 'aui' ), |
|
2141 | - 'scrollTitle' => __( 'Scroll to increment', 'aui' ), |
|
2142 | - 'toggleTitle' => __( 'Click to toggle', 'aui' ) |
|
2143 | - ); |
|
2144 | - |
|
2145 | - return apply_filters( 'ayecode_ui_calendar_params', $params ); |
|
2146 | - } |
|
1785 | + // opacity see https://css-tricks.com/8-digit-hex-codes/ |
|
1786 | + $op_25 = $color_code."40"; // 25% opacity |
|
2147 | 1787 | |
2148 | - /** |
|
2149 | - * Flatpickr calendar localize. |
|
2150 | - * |
|
2151 | - * @since 0.1.44 |
|
2152 | - * |
|
2153 | - * @return string Calendar locale. |
|
2154 | - */ |
|
2155 | - public static function flatpickr_locale() { |
|
2156 | - $params = self::calendar_params(); |
|
2157 | - |
|
2158 | - if ( is_string( $params ) ) { |
|
2159 | - $params = html_entity_decode( $params, ENT_QUOTES, 'UTF-8' ); |
|
2160 | - } else { |
|
2161 | - foreach ( (array) $params as $key => $value ) { |
|
2162 | - if ( ! is_scalar( $value ) ) { |
|
2163 | - continue; |
|
2164 | - } |
|
2165 | 1788 | |
2166 | - $params[ $key ] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8' ); |
|
2167 | - } |
|
2168 | - } |
|
1789 | + // button states |
|
1790 | + $output .= $prefix ." .btn-primary:hover, $prefix .btn-primary:focus, $prefix .btn-primary.focus{background-color: ".$darker_075."; border-color: ".$darker_10.";} "; |
|
1791 | + $output .= $prefix ." .btn-outline-primary:not(:disabled):not(.disabled):active:focus, $prefix .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show>$prefix .btn-outline-primary.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem $op_25;} "; |
|
1792 | + $output .= $prefix ." .btn-primary:not(:disabled):not(.disabled):active, $prefix .btn-primary:not(:disabled):not(.disabled).active, .show>$prefix .btn-primary.dropdown-toggle{background-color: ".$darker_10."; border-color: ".$darker_125.";} "; |
|
1793 | + $output .= $prefix ." .btn-primary:not(:disabled):not(.disabled):active:focus, $prefix .btn-primary:not(:disabled):not(.disabled).active:focus, .show>$prefix .btn-primary.dropdown-toggle:focus {box-shadow: 0 0 0 0.2rem $op_25;} "; |
|
1794 | + |
|
1795 | + |
|
1796 | + // dropdown's |
|
1797 | + $output .= $prefix ." .dropdown-item.active, $prefix .dropdown-item:active{background-color: $color_code;} "; |
|
1798 | + |
|
1799 | + |
|
1800 | + // input states |
|
1801 | + $output .= $prefix ." .form-control:focus{border-color: ".$lighten_25.";box-shadow: 0 0 0 0.2rem $op_25;} "; |
|
1802 | + |
|
1803 | + // page link |
|
1804 | + $output .= $prefix ." .page-link:focus{box-shadow: 0 0 0 0.2rem $op_25;} "; |
|
1805 | + |
|
1806 | + return $output; |
|
1807 | + } |
|
1808 | + |
|
1809 | + public static function css_secondary($color_code,$compatibility){; |
|
1810 | + $color_code = sanitize_hex_color($color_code); |
|
1811 | + if(!$color_code){return '';} |
|
1812 | + /** |
|
1813 | + * c = color, b = background color, o = border-color, f = fill |
|
1814 | + */ |
|
1815 | + $selectors = array( |
|
1816 | + '.btn-secondary' => array('b','o'), |
|
1817 | + '.btn-secondary.disabled' => array('b','o'), |
|
1818 | + '.btn-secondary:disabled' => array('b','o'), |
|
1819 | + '.btn-outline-secondary' => array('c','o'), |
|
1820 | + '.btn-outline-secondary:hover' => array('b','o'), |
|
1821 | + '.btn-outline-secondary.disabled' => array('c'), |
|
1822 | + '.btn-outline-secondary:disabled' => array('c'), |
|
1823 | + '.btn-outline-secondary:not(:disabled):not(.disabled):active' => array('b','o'), |
|
1824 | + '.btn-outline-secondary:not(:disabled):not(.disabled).active' => array('b','o'), |
|
1825 | + '.btn-outline-secondary.dropdown-toggle' => array('b','o'), |
|
1826 | + '.badge-secondary' => array('b'), |
|
1827 | + '.alert-secondary' => array('b','o'), |
|
1828 | + '.btn-link.btn-secondary' => array('c'), |
|
1829 | + ); |
|
1830 | + |
|
1831 | + $important_selectors = array( |
|
1832 | + '.bg-secondary' => array('b','f'), |
|
1833 | + '.border-secondary' => array('o'), |
|
1834 | + '.text-secondary' => array('c'), |
|
1835 | + ); |
|
1836 | + |
|
1837 | + $color = array(); |
|
1838 | + $color_i = array(); |
|
1839 | + $background = array(); |
|
1840 | + $background_i = array(); |
|
1841 | + $border = array(); |
|
1842 | + $border_i = array(); |
|
1843 | + $fill = array(); |
|
1844 | + $fill_i = array(); |
|
1845 | + |
|
1846 | + $output = ''; |
|
1847 | + |
|
1848 | + // build rules into each type |
|
1849 | + foreach($selectors as $selector => $types){ |
|
1850 | + $selector = $compatibility ? ".bsui ".$selector : $selector; |
|
1851 | + $types = array_combine($types,$types); |
|
1852 | + if(isset($types['c'])){$color[] = $selector;} |
|
1853 | + if(isset($types['b'])){$background[] = $selector;} |
|
1854 | + if(isset($types['o'])){$border[] = $selector;} |
|
1855 | + if(isset($types['f'])){$fill[] = $selector;} |
|
1856 | + } |
|
1857 | + |
|
1858 | + // build rules into each type |
|
1859 | + foreach($important_selectors as $selector => $types){ |
|
1860 | + $selector = $compatibility ? ".bsui ".$selector : $selector; |
|
1861 | + $types = array_combine($types,$types); |
|
1862 | + if(isset($types['c'])){$color_i[] = $selector;} |
|
1863 | + if(isset($types['b'])){$background_i[] = $selector;} |
|
1864 | + if(isset($types['o'])){$border_i[] = $selector;} |
|
1865 | + if(isset($types['f'])){$fill_i[] = $selector;} |
|
1866 | + } |
|
1867 | + |
|
1868 | + // add any color rules |
|
1869 | + if(!empty($color)){ |
|
1870 | + $output .= implode(",",$color) . "{color: $color_code;} "; |
|
1871 | + } |
|
1872 | + if(!empty($color_i)){ |
|
1873 | + $output .= implode(",",$color_i) . "{color: $color_code !important;} "; |
|
1874 | + } |
|
1875 | + |
|
1876 | + // add any background color rules |
|
1877 | + if(!empty($background)){ |
|
1878 | + $output .= implode(",",$background) . "{background-color: $color_code;} "; |
|
1879 | + } |
|
1880 | + if(!empty($background_i)){ |
|
1881 | + $output .= implode(",",$background_i) . "{background-color: $color_code !important;} "; |
|
1882 | + } |
|
1883 | + |
|
1884 | + // add any border color rules |
|
1885 | + if(!empty($border)){ |
|
1886 | + $output .= implode(",",$border) . "{border-color: $color_code;} "; |
|
1887 | + } |
|
1888 | + if(!empty($border_i)){ |
|
1889 | + $output .= implode(",",$border_i) . "{border-color: $color_code !important;} "; |
|
1890 | + } |
|
1891 | + |
|
1892 | + // add any fill color rules |
|
1893 | + if(!empty($fill)){ |
|
1894 | + $output .= implode(",",$fill) . "{fill: $color_code;} "; |
|
1895 | + } |
|
1896 | + if(!empty($fill_i)){ |
|
1897 | + $output .= implode(",",$fill_i) . "{fill: $color_code !important;} "; |
|
1898 | + } |
|
1899 | + |
|
1900 | + |
|
1901 | + $prefix = $compatibility ? ".bsui " : ""; |
|
1902 | + |
|
1903 | + // darken |
|
1904 | + $darker_075 = self::css_hex_lighten_darken($color_code,"-0.075"); |
|
1905 | + $darker_10 = self::css_hex_lighten_darken($color_code,"-0.10"); |
|
1906 | + $darker_125 = self::css_hex_lighten_darken($color_code,"-0.125"); |
|
1907 | + |
|
1908 | + // lighten |
|
1909 | + $lighten_25 = self::css_hex_lighten_darken($color_code,"0.25"); |
|
1910 | + |
|
1911 | + // opacity see https://css-tricks.com/8-digit-hex-codes/ |
|
1912 | + $op_25 = $color_code."40"; // 25% opacity |
|
2169 | 1913 | |
2170 | - $day_s3 = array(); |
|
2171 | - $day_s5 = array(); |
|
2172 | 1914 | |
2173 | - for ( $i = 1; $i <= 7; $i ++ ) { |
|
2174 | - $day_s3[] = addslashes( $params[ 'day_s3_' . $i ] ); |
|
2175 | - $day_s5[] = addslashes( $params[ 'day_s3_' . $i ] ); |
|
2176 | - } |
|
1915 | + // button states |
|
1916 | + $output .= $prefix ." .btn-secondary:hover{background-color: ".$darker_075."; border-color: ".$darker_10.";} "; |
|
1917 | + $output .= $prefix ." .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, $prefix .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show>$prefix .btn-outline-secondary.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem $op_25;} "; |
|
1918 | + $output .= $prefix ." .btn-secondary:not(:disabled):not(.disabled):active, $prefix .btn-secondary:not(:disabled):not(.disabled).active, .show>$prefix .btn-secondary.dropdown-toggle{background-color: ".$darker_10."; border-color: ".$darker_125.";} "; |
|
1919 | + $output .= $prefix ." .btn-secondary:not(:disabled):not(.disabled):active:focus, $prefix .btn-secondary:not(:disabled):not(.disabled).active:focus, .show>$prefix .btn-secondary.dropdown-toggle:focus {box-shadow: 0 0 0 0.2rem $op_25;} "; |
|
2177 | 1920 | |
2178 | - $month_s = array(); |
|
2179 | - $month_long = array(); |
|
2180 | 1921 | |
2181 | - for ( $i = 1; $i <= 12; $i ++ ) { |
|
2182 | - $month_s[] = addslashes( $params[ 'month_s_' . $i ] ); |
|
2183 | - $month_long[] = addslashes( $params[ 'month_long_' . $i ] ); |
|
2184 | - } |
|
1922 | + return $output; |
|
1923 | + } |
|
1924 | + |
|
1925 | + /** |
|
1926 | + * Increases or decreases the brightness of a color by a percentage of the current brightness. |
|
1927 | + * |
|
1928 | + * @param string $hexCode Supported formats: `#FFF`, `#FFFFFF`, `FFF`, `FFFFFF` |
|
1929 | + * @param float $adjustPercent A number between -1 and 1. E.g. 0.3 = 30% lighter; -0.4 = 40% darker. |
|
1930 | + * |
|
1931 | + * @return string |
|
1932 | + */ |
|
1933 | + public static function css_hex_lighten_darken($hexCode, $adjustPercent) { |
|
1934 | + $hexCode = ltrim($hexCode, '#'); |
|
1935 | + |
|
1936 | + if (strlen($hexCode) == 3) { |
|
1937 | + $hexCode = $hexCode[0] . $hexCode[0] . $hexCode[1] . $hexCode[1] . $hexCode[2] . $hexCode[2]; |
|
1938 | + } |
|
1939 | + |
|
1940 | + $hexCode = array_map('hexdec', str_split($hexCode, 2)); |
|
1941 | + |
|
1942 | + foreach ($hexCode as & $color) { |
|
1943 | + $adjustableLimit = $adjustPercent < 0 ? $color : 255 - $color; |
|
1944 | + $adjustAmount = ceil($adjustableLimit * $adjustPercent); |
|
1945 | + |
|
1946 | + $color = str_pad(dechex($color + $adjustAmount), 2, '0', STR_PAD_LEFT); |
|
1947 | + } |
|
1948 | + |
|
1949 | + return '#' . implode($hexCode); |
|
1950 | + } |
|
1951 | + |
|
1952 | + /** |
|
1953 | + * Check if we should display examples. |
|
1954 | + */ |
|
1955 | + public function maybe_show_examples(){ |
|
1956 | + if(current_user_can('manage_options') && isset($_REQUEST['preview-aui'])){ |
|
1957 | + echo "<head>"; |
|
1958 | + wp_head(); |
|
1959 | + echo "</head>"; |
|
1960 | + echo "<body>"; |
|
1961 | + echo $this->get_examples(); |
|
1962 | + echo "</body>"; |
|
1963 | + exit; |
|
1964 | + } |
|
1965 | + } |
|
1966 | + |
|
1967 | + /** |
|
1968 | + * Get developer examples. |
|
1969 | + * |
|
1970 | + * @return string |
|
1971 | + */ |
|
1972 | + public function get_examples(){ |
|
1973 | + $output = ''; |
|
1974 | + |
|
1975 | + |
|
1976 | + // open form |
|
1977 | + $output .= "<form class='p-5 m-5 border rounded'>"; |
|
1978 | + |
|
1979 | + // input example |
|
1980 | + $output .= aui()->input(array( |
|
1981 | + 'type' => 'text', |
|
1982 | + 'id' => 'text-example', |
|
1983 | + 'name' => 'text-example', |
|
1984 | + 'placeholder' => 'text placeholder', |
|
1985 | + 'title' => 'Text input example', |
|
1986 | + 'value' => '', |
|
1987 | + 'required' => false, |
|
1988 | + 'help_text' => 'help text', |
|
1989 | + 'label' => 'Text input example label' |
|
1990 | + )); |
|
1991 | + |
|
1992 | + // input example |
|
1993 | + $output .= aui()->input(array( |
|
1994 | + 'type' => 'url', |
|
1995 | + 'id' => 'text-example2', |
|
1996 | + 'name' => 'text-example', |
|
1997 | + 'placeholder' => 'url placeholder', |
|
1998 | + 'title' => 'Text input example', |
|
1999 | + 'value' => '', |
|
2000 | + 'required' => false, |
|
2001 | + 'help_text' => 'help text', |
|
2002 | + 'label' => 'Text input example label' |
|
2003 | + )); |
|
2004 | + |
|
2005 | + // checkbox example |
|
2006 | + $output .= aui()->input(array( |
|
2007 | + 'type' => 'checkbox', |
|
2008 | + 'id' => 'checkbox-example', |
|
2009 | + 'name' => 'checkbox-example', |
|
2010 | + 'placeholder' => 'checkbox-example', |
|
2011 | + 'title' => 'Checkbox example', |
|
2012 | + 'value' => '1', |
|
2013 | + 'checked' => true, |
|
2014 | + 'required' => false, |
|
2015 | + 'help_text' => 'help text', |
|
2016 | + 'label' => 'Checkbox checked' |
|
2017 | + )); |
|
2018 | + |
|
2019 | + // checkbox example |
|
2020 | + $output .= aui()->input(array( |
|
2021 | + 'type' => 'checkbox', |
|
2022 | + 'id' => 'checkbox-example2', |
|
2023 | + 'name' => 'checkbox-example2', |
|
2024 | + 'placeholder' => 'checkbox-example', |
|
2025 | + 'title' => 'Checkbox example', |
|
2026 | + 'value' => '1', |
|
2027 | + 'checked' => false, |
|
2028 | + 'required' => false, |
|
2029 | + 'help_text' => 'help text', |
|
2030 | + 'label' => 'Checkbox un-checked' |
|
2031 | + )); |
|
2032 | + |
|
2033 | + // switch example |
|
2034 | + $output .= aui()->input(array( |
|
2035 | + 'type' => 'checkbox', |
|
2036 | + 'id' => 'switch-example', |
|
2037 | + 'name' => 'switch-example', |
|
2038 | + 'placeholder' => 'checkbox-example', |
|
2039 | + 'title' => 'Switch example', |
|
2040 | + 'value' => '1', |
|
2041 | + 'checked' => true, |
|
2042 | + 'switch' => true, |
|
2043 | + 'required' => false, |
|
2044 | + 'help_text' => 'help text', |
|
2045 | + 'label' => 'Switch on' |
|
2046 | + )); |
|
2047 | + |
|
2048 | + // switch example |
|
2049 | + $output .= aui()->input(array( |
|
2050 | + 'type' => 'checkbox', |
|
2051 | + 'id' => 'switch-example2', |
|
2052 | + 'name' => 'switch-example2', |
|
2053 | + 'placeholder' => 'checkbox-example', |
|
2054 | + 'title' => 'Switch example', |
|
2055 | + 'value' => '1', |
|
2056 | + 'checked' => false, |
|
2057 | + 'switch' => true, |
|
2058 | + 'required' => false, |
|
2059 | + 'help_text' => 'help text', |
|
2060 | + 'label' => 'Switch off' |
|
2061 | + )); |
|
2062 | + |
|
2063 | + // close form |
|
2064 | + $output .= "</form>"; |
|
2065 | + |
|
2066 | + return $output; |
|
2067 | + } |
|
2068 | + |
|
2069 | + /** |
|
2070 | + * Calendar params. |
|
2071 | + * |
|
2072 | + * @since 0.1.44 |
|
2073 | + * |
|
2074 | + * @return array Calendar params. |
|
2075 | + */ |
|
2076 | + public static function calendar_params() { |
|
2077 | + $params = array( |
|
2078 | + 'month_long_1' => __( 'January', 'aui' ), |
|
2079 | + 'month_long_2' => __( 'February', 'aui' ), |
|
2080 | + 'month_long_3' => __( 'March', 'aui' ), |
|
2081 | + 'month_long_4' => __( 'April', 'aui' ), |
|
2082 | + 'month_long_5' => __( 'May', 'aui' ), |
|
2083 | + 'month_long_6' => __( 'June', 'aui' ), |
|
2084 | + 'month_long_7' => __( 'July', 'aui' ), |
|
2085 | + 'month_long_8' => __( 'August', 'aui' ), |
|
2086 | + 'month_long_9' => __( 'September', 'aui' ), |
|
2087 | + 'month_long_10' => __( 'October', 'aui' ), |
|
2088 | + 'month_long_11' => __( 'November', 'aui' ), |
|
2089 | + 'month_long_12' => __( 'December', 'aui' ), |
|
2090 | + 'month_s_1' => _x( 'Jan', 'January abbreviation', 'aui' ), |
|
2091 | + 'month_s_2' => _x( 'Feb', 'February abbreviation', 'aui' ), |
|
2092 | + 'month_s_3' => _x( 'Mar', 'March abbreviation', 'aui' ), |
|
2093 | + 'month_s_4' => _x( 'Apr', 'April abbreviation', 'aui' ), |
|
2094 | + 'month_s_5' => _x( 'May', 'May abbreviation', 'aui' ), |
|
2095 | + 'month_s_6' => _x( 'Jun', 'June abbreviation', 'aui' ), |
|
2096 | + 'month_s_7' => _x( 'Jul', 'July abbreviation', 'aui' ), |
|
2097 | + 'month_s_8' => _x( 'Aug', 'August abbreviation', 'aui' ), |
|
2098 | + 'month_s_9' => _x( 'Sep', 'September abbreviation', 'aui' ), |
|
2099 | + 'month_s_10' => _x( 'Oct', 'October abbreviation', 'aui' ), |
|
2100 | + 'month_s_11' => _x( 'Nov', 'November abbreviation', 'aui' ), |
|
2101 | + 'month_s_12' => _x( 'Dec', 'December abbreviation', 'aui' ), |
|
2102 | + 'day_s1_1' => _x( 'S', 'Sunday initial', 'aui' ), |
|
2103 | + 'day_s1_2' => _x( 'M', 'Monday initial', 'aui' ), |
|
2104 | + 'day_s1_3' => _x( 'T', 'Tuesday initial', 'aui' ), |
|
2105 | + 'day_s1_4' => _x( 'W', 'Wednesday initial', 'aui' ), |
|
2106 | + 'day_s1_5' => _x( 'T', 'Friday initial', 'aui' ), |
|
2107 | + 'day_s1_6' => _x( 'F', 'Thursday initial', 'aui' ), |
|
2108 | + 'day_s1_7' => _x( 'S', 'Saturday initial', 'aui' ), |
|
2109 | + 'day_s2_1' => __( 'Su', 'aui' ), |
|
2110 | + 'day_s2_2' => __( 'Mo', 'aui' ), |
|
2111 | + 'day_s2_3' => __( 'Tu', 'aui' ), |
|
2112 | + 'day_s2_4' => __( 'We', 'aui' ), |
|
2113 | + 'day_s2_5' => __( 'Th', 'aui' ), |
|
2114 | + 'day_s2_6' => __( 'Fr', 'aui' ), |
|
2115 | + 'day_s2_7' => __( 'Sa', 'aui' ), |
|
2116 | + 'day_s3_1' => __( 'Sun', 'aui' ), |
|
2117 | + 'day_s3_2' => __( 'Mon', 'aui' ), |
|
2118 | + 'day_s3_3' => __( 'Tue', 'aui' ), |
|
2119 | + 'day_s3_4' => __( 'Wed', 'aui' ), |
|
2120 | + 'day_s3_5' => __( 'Thu', 'aui' ), |
|
2121 | + 'day_s3_6' => __( 'Fri', 'aui' ), |
|
2122 | + 'day_s3_7' => __( 'Sat', 'aui' ), |
|
2123 | + 'day_s5_1' => __( 'Sunday', 'aui' ), |
|
2124 | + 'day_s5_2' => __( 'Monday', 'aui' ), |
|
2125 | + 'day_s5_3' => __( 'Tuesday', 'aui' ), |
|
2126 | + 'day_s5_4' => __( 'Wednesday', 'aui' ), |
|
2127 | + 'day_s5_5' => __( 'Thursday', 'aui' ), |
|
2128 | + 'day_s5_6' => __( 'Friday', 'aui' ), |
|
2129 | + 'day_s5_7' => __( 'Saturday', 'aui' ), |
|
2130 | + 'am_lower' => __( 'am', 'aui' ), |
|
2131 | + 'pm_lower' => __( 'pm', 'aui' ), |
|
2132 | + 'am_upper' => __( 'AM', 'aui' ), |
|
2133 | + 'pm_upper' => __( 'PM', 'aui' ), |
|
2134 | + 'firstDayOfWeek' => (int) get_option( 'start_of_week' ), |
|
2135 | + 'time_24hr' => false, |
|
2136 | + 'year' => __( 'Year', 'aui' ), |
|
2137 | + 'hour' => __( 'Hour', 'aui' ), |
|
2138 | + 'minute' => __( 'Minute', 'aui' ), |
|
2139 | + 'weekAbbreviation' => __( 'Wk', 'aui' ), |
|
2140 | + 'rangeSeparator' => __( ' to ', 'aui' ), |
|
2141 | + 'scrollTitle' => __( 'Scroll to increment', 'aui' ), |
|
2142 | + 'toggleTitle' => __( 'Click to toggle', 'aui' ) |
|
2143 | + ); |
|
2144 | + |
|
2145 | + return apply_filters( 'ayecode_ui_calendar_params', $params ); |
|
2146 | + } |
|
2147 | + |
|
2148 | + /** |
|
2149 | + * Flatpickr calendar localize. |
|
2150 | + * |
|
2151 | + * @since 0.1.44 |
|
2152 | + * |
|
2153 | + * @return string Calendar locale. |
|
2154 | + */ |
|
2155 | + public static function flatpickr_locale() { |
|
2156 | + $params = self::calendar_params(); |
|
2157 | + |
|
2158 | + if ( is_string( $params ) ) { |
|
2159 | + $params = html_entity_decode( $params, ENT_QUOTES, 'UTF-8' ); |
|
2160 | + } else { |
|
2161 | + foreach ( (array) $params as $key => $value ) { |
|
2162 | + if ( ! is_scalar( $value ) ) { |
|
2163 | + continue; |
|
2164 | + } |
|
2165 | + |
|
2166 | + $params[ $key ] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8' ); |
|
2167 | + } |
|
2168 | + } |
|
2169 | + |
|
2170 | + $day_s3 = array(); |
|
2171 | + $day_s5 = array(); |
|
2172 | + |
|
2173 | + for ( $i = 1; $i <= 7; $i ++ ) { |
|
2174 | + $day_s3[] = addslashes( $params[ 'day_s3_' . $i ] ); |
|
2175 | + $day_s5[] = addslashes( $params[ 'day_s3_' . $i ] ); |
|
2176 | + } |
|
2177 | + |
|
2178 | + $month_s = array(); |
|
2179 | + $month_long = array(); |
|
2180 | + |
|
2181 | + for ( $i = 1; $i <= 12; $i ++ ) { |
|
2182 | + $month_s[] = addslashes( $params[ 'month_s_' . $i ] ); |
|
2183 | + $month_long[] = addslashes( $params[ 'month_long_' . $i ] ); |
|
2184 | + } |
|
2185 | 2185 | |
2186 | 2186 | ob_start(); |
2187 | 2187 | if ( 0 ) { ?><script><?php } ?> |
@@ -2223,189 +2223,189 @@ discard block |
||
2223 | 2223 | } |
2224 | 2224 | <?php if ( 0 ) { ?></script><?php } ?> |
2225 | 2225 | <?php |
2226 | - $locale = ob_get_clean(); |
|
2226 | + $locale = ob_get_clean(); |
|
2227 | 2227 | |
2228 | - return apply_filters( 'ayecode_ui_flatpickr_locale', trim( $locale ) ); |
|
2229 | - } |
|
2228 | + return apply_filters( 'ayecode_ui_flatpickr_locale', trim( $locale ) ); |
|
2229 | + } |
|
2230 | 2230 | |
2231 | - /** |
|
2232 | - * Select2 JS params. |
|
2233 | - * |
|
2234 | - * @since 0.1.44 |
|
2235 | - * |
|
2236 | - * @return array Select2 JS params. |
|
2237 | - */ |
|
2238 | - public static function select2_params() { |
|
2239 | - $params = array( |
|
2240 | - 'i18n_select_state_text' => esc_attr__( 'Select an option…', 'aui' ), |
|
2241 | - 'i18n_no_matches' => _x( 'No matches found', 'enhanced select', 'aui' ), |
|
2242 | - 'i18n_ajax_error' => _x( 'Loading failed', 'enhanced select', 'aui' ), |
|
2243 | - 'i18n_input_too_short_1' => _x( 'Please enter 1 or more characters', 'enhanced select', 'aui' ), |
|
2244 | - 'i18n_input_too_short_n' => _x( 'Please enter %item% or more characters', 'enhanced select', 'aui' ), |
|
2245 | - 'i18n_input_too_long_1' => _x( 'Please delete 1 character', 'enhanced select', 'aui' ), |
|
2246 | - 'i18n_input_too_long_n' => _x( 'Please delete %item% characters', 'enhanced select', 'aui' ), |
|
2247 | - 'i18n_selection_too_long_1' => _x( 'You can only select 1 item', 'enhanced select', 'aui' ), |
|
2248 | - 'i18n_selection_too_long_n' => _x( 'You can only select %item% items', 'enhanced select', 'aui' ), |
|
2249 | - 'i18n_load_more' => _x( 'Loading more results…', 'enhanced select', 'aui' ), |
|
2250 | - 'i18n_searching' => _x( 'Searching…', 'enhanced select', 'aui' ) |
|
2251 | - ); |
|
2252 | - |
|
2253 | - return apply_filters( 'ayecode_ui_select2_params', $params ); |
|
2254 | - } |
|
2231 | + /** |
|
2232 | + * Select2 JS params. |
|
2233 | + * |
|
2234 | + * @since 0.1.44 |
|
2235 | + * |
|
2236 | + * @return array Select2 JS params. |
|
2237 | + */ |
|
2238 | + public static function select2_params() { |
|
2239 | + $params = array( |
|
2240 | + 'i18n_select_state_text' => esc_attr__( 'Select an option…', 'aui' ), |
|
2241 | + 'i18n_no_matches' => _x( 'No matches found', 'enhanced select', 'aui' ), |
|
2242 | + 'i18n_ajax_error' => _x( 'Loading failed', 'enhanced select', 'aui' ), |
|
2243 | + 'i18n_input_too_short_1' => _x( 'Please enter 1 or more characters', 'enhanced select', 'aui' ), |
|
2244 | + 'i18n_input_too_short_n' => _x( 'Please enter %item% or more characters', 'enhanced select', 'aui' ), |
|
2245 | + 'i18n_input_too_long_1' => _x( 'Please delete 1 character', 'enhanced select', 'aui' ), |
|
2246 | + 'i18n_input_too_long_n' => _x( 'Please delete %item% characters', 'enhanced select', 'aui' ), |
|
2247 | + 'i18n_selection_too_long_1' => _x( 'You can only select 1 item', 'enhanced select', 'aui' ), |
|
2248 | + 'i18n_selection_too_long_n' => _x( 'You can only select %item% items', 'enhanced select', 'aui' ), |
|
2249 | + 'i18n_load_more' => _x( 'Loading more results…', 'enhanced select', 'aui' ), |
|
2250 | + 'i18n_searching' => _x( 'Searching…', 'enhanced select', 'aui' ) |
|
2251 | + ); |
|
2252 | + |
|
2253 | + return apply_filters( 'ayecode_ui_select2_params', $params ); |
|
2254 | + } |
|
2255 | 2255 | |
2256 | - /** |
|
2257 | - * Select2 JS localize. |
|
2258 | - * |
|
2259 | - * @since 0.1.44 |
|
2260 | - * |
|
2261 | - * @return string Select2 JS locale. |
|
2262 | - */ |
|
2263 | - public static function select2_locale() { |
|
2264 | - $params = self::select2_params(); |
|
2265 | - |
|
2266 | - foreach ( (array) $params as $key => $value ) { |
|
2267 | - if ( ! is_scalar( $value ) ) { |
|
2268 | - continue; |
|
2269 | - } |
|
2256 | + /** |
|
2257 | + * Select2 JS localize. |
|
2258 | + * |
|
2259 | + * @since 0.1.44 |
|
2260 | + * |
|
2261 | + * @return string Select2 JS locale. |
|
2262 | + */ |
|
2263 | + public static function select2_locale() { |
|
2264 | + $params = self::select2_params(); |
|
2265 | + |
|
2266 | + foreach ( (array) $params as $key => $value ) { |
|
2267 | + if ( ! is_scalar( $value ) ) { |
|
2268 | + continue; |
|
2269 | + } |
|
2270 | 2270 | |
2271 | - $params[ $key ] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8' ); |
|
2272 | - } |
|
2271 | + $params[ $key ] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8' ); |
|
2272 | + } |
|
2273 | 2273 | |
2274 | - $locale = json_encode( $params ); |
|
2274 | + $locale = json_encode( $params ); |
|
2275 | 2275 | |
2276 | - return apply_filters( 'ayecode_ui_select2_locale', trim( $locale ) ); |
|
2277 | - } |
|
2276 | + return apply_filters( 'ayecode_ui_select2_locale', trim( $locale ) ); |
|
2277 | + } |
|
2278 | 2278 | |
2279 | - /** |
|
2280 | - * Time ago JS localize. |
|
2281 | - * |
|
2282 | - * @since 0.1.47 |
|
2283 | - * |
|
2284 | - * @return string Time ago JS locale. |
|
2285 | - */ |
|
2286 | - public static function timeago_locale() { |
|
2287 | - $params = array( |
|
2288 | - 'prefix_ago' => '', |
|
2289 | - 'suffix_ago' => ' ' . _x( 'ago', 'time ago', 'aui' ), |
|
2290 | - 'prefix_after' => _x( 'after', 'time ago', 'aui' ) . ' ', |
|
2291 | - 'suffix_after' => '', |
|
2292 | - 'seconds' => _x( 'less than a minute', 'time ago', 'aui' ), |
|
2293 | - 'minute' => _x( 'about a minute', 'time ago', 'aui' ), |
|
2294 | - 'minutes' => _x( '%d minutes', 'time ago', 'aui' ), |
|
2295 | - 'hour' => _x( 'about an hour', 'time ago', 'aui' ), |
|
2296 | - 'hours' => _x( 'about %d hours', 'time ago', 'aui' ), |
|
2297 | - 'day' => _x( 'a day', 'time ago', 'aui' ), |
|
2298 | - 'days' => _x( '%d days', 'time ago', 'aui' ), |
|
2299 | - 'month' => _x( 'about a month', 'time ago', 'aui' ), |
|
2300 | - 'months' => _x( '%d months', 'time ago', 'aui' ), |
|
2301 | - 'year' => _x( 'about a year', 'time ago', 'aui' ), |
|
2302 | - 'years' => _x( '%d years', 'time ago', 'aui' ), |
|
2303 | - ); |
|
2304 | - |
|
2305 | - $params = apply_filters( 'ayecode_ui_timeago_params', $params ); |
|
2306 | - |
|
2307 | - foreach ( (array) $params as $key => $value ) { |
|
2308 | - if ( ! is_scalar( $value ) ) { |
|
2309 | - continue; |
|
2310 | - } |
|
2279 | + /** |
|
2280 | + * Time ago JS localize. |
|
2281 | + * |
|
2282 | + * @since 0.1.47 |
|
2283 | + * |
|
2284 | + * @return string Time ago JS locale. |
|
2285 | + */ |
|
2286 | + public static function timeago_locale() { |
|
2287 | + $params = array( |
|
2288 | + 'prefix_ago' => '', |
|
2289 | + 'suffix_ago' => ' ' . _x( 'ago', 'time ago', 'aui' ), |
|
2290 | + 'prefix_after' => _x( 'after', 'time ago', 'aui' ) . ' ', |
|
2291 | + 'suffix_after' => '', |
|
2292 | + 'seconds' => _x( 'less than a minute', 'time ago', 'aui' ), |
|
2293 | + 'minute' => _x( 'about a minute', 'time ago', 'aui' ), |
|
2294 | + 'minutes' => _x( '%d minutes', 'time ago', 'aui' ), |
|
2295 | + 'hour' => _x( 'about an hour', 'time ago', 'aui' ), |
|
2296 | + 'hours' => _x( 'about %d hours', 'time ago', 'aui' ), |
|
2297 | + 'day' => _x( 'a day', 'time ago', 'aui' ), |
|
2298 | + 'days' => _x( '%d days', 'time ago', 'aui' ), |
|
2299 | + 'month' => _x( 'about a month', 'time ago', 'aui' ), |
|
2300 | + 'months' => _x( '%d months', 'time ago', 'aui' ), |
|
2301 | + 'year' => _x( 'about a year', 'time ago', 'aui' ), |
|
2302 | + 'years' => _x( '%d years', 'time ago', 'aui' ), |
|
2303 | + ); |
|
2304 | + |
|
2305 | + $params = apply_filters( 'ayecode_ui_timeago_params', $params ); |
|
2306 | + |
|
2307 | + foreach ( (array) $params as $key => $value ) { |
|
2308 | + if ( ! is_scalar( $value ) ) { |
|
2309 | + continue; |
|
2310 | + } |
|
2311 | 2311 | |
2312 | - $params[ $key ] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8' ); |
|
2313 | - } |
|
2312 | + $params[ $key ] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8' ); |
|
2313 | + } |
|
2314 | 2314 | |
2315 | - $locale = json_encode( $params ); |
|
2315 | + $locale = json_encode( $params ); |
|
2316 | 2316 | |
2317 | - return apply_filters( 'ayecode_ui_timeago_locale', trim( $locale ) ); |
|
2318 | - } |
|
2317 | + return apply_filters( 'ayecode_ui_timeago_locale', trim( $locale ) ); |
|
2318 | + } |
|
2319 | 2319 | |
2320 | - /** |
|
2321 | - * JavaScript Minifier |
|
2322 | - * |
|
2323 | - * @param $input |
|
2324 | - * |
|
2325 | - * @return mixed |
|
2326 | - */ |
|
2327 | - public static function minify_js($input) { |
|
2328 | - if(trim($input) === "") return $input; |
|
2329 | - return preg_replace( |
|
2330 | - array( |
|
2331 | - // Remove comment(s) |
|
2332 | - '#\s*("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\')\s*|\s*\/\*(?!\!|@cc_on)(?>[\s\S]*?\*\/)\s*|\s*(?<![\:\=])\/\/.*(?=[\n\r]|$)|^\s*|\s*$#', |
|
2333 | - // Remove white-space(s) outside the string and regex |
|
2334 | - '#("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\'|\/\*(?>.*?\*\/)|\/(?!\/)[^\n\r]*?\/(?=[\s.,;]|[gimuy]|$))|\s*([!%&*\(\)\-=+\[\]\{\}|;:,.<>?\/])\s*#s', |
|
2335 | - // Remove the last semicolon |
|
2336 | - '#;+\}#', |
|
2337 | - // Minify object attribute(s) except JSON attribute(s). From `{'foo':'bar'}` to `{foo:'bar'}` |
|
2338 | - '#([\{,])([\'])(\d+|[a-z_][a-z0-9_]*)\2(?=\:)#i', |
|
2339 | - // --ibid. From `foo['bar']` to `foo.bar` |
|
2340 | - '#([a-z0-9_\)\]])\[([\'"])([a-z_][a-z0-9_]*)\2\]#i' |
|
2341 | - ), |
|
2342 | - array( |
|
2343 | - '$1', |
|
2344 | - '$1$2', |
|
2345 | - '}', |
|
2346 | - '$1$3', |
|
2347 | - '$1.$3' |
|
2348 | - ), |
|
2349 | - $input); |
|
2350 | - } |
|
2320 | + /** |
|
2321 | + * JavaScript Minifier |
|
2322 | + * |
|
2323 | + * @param $input |
|
2324 | + * |
|
2325 | + * @return mixed |
|
2326 | + */ |
|
2327 | + public static function minify_js($input) { |
|
2328 | + if(trim($input) === "") return $input; |
|
2329 | + return preg_replace( |
|
2330 | + array( |
|
2331 | + // Remove comment(s) |
|
2332 | + '#\s*("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\')\s*|\s*\/\*(?!\!|@cc_on)(?>[\s\S]*?\*\/)\s*|\s*(?<![\:\=])\/\/.*(?=[\n\r]|$)|^\s*|\s*$#', |
|
2333 | + // Remove white-space(s) outside the string and regex |
|
2334 | + '#("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\'|\/\*(?>.*?\*\/)|\/(?!\/)[^\n\r]*?\/(?=[\s.,;]|[gimuy]|$))|\s*([!%&*\(\)\-=+\[\]\{\}|;:,.<>?\/])\s*#s', |
|
2335 | + // Remove the last semicolon |
|
2336 | + '#;+\}#', |
|
2337 | + // Minify object attribute(s) except JSON attribute(s). From `{'foo':'bar'}` to `{foo:'bar'}` |
|
2338 | + '#([\{,])([\'])(\d+|[a-z_][a-z0-9_]*)\2(?=\:)#i', |
|
2339 | + // --ibid. From `foo['bar']` to `foo.bar` |
|
2340 | + '#([a-z0-9_\)\]])\[([\'"])([a-z_][a-z0-9_]*)\2\]#i' |
|
2341 | + ), |
|
2342 | + array( |
|
2343 | + '$1', |
|
2344 | + '$1$2', |
|
2345 | + '}', |
|
2346 | + '$1$3', |
|
2347 | + '$1.$3' |
|
2348 | + ), |
|
2349 | + $input); |
|
2350 | + } |
|
2351 | 2351 | |
2352 | - /** |
|
2353 | - * Minify CSS |
|
2354 | - * |
|
2355 | - * @param $input |
|
2356 | - * |
|
2357 | - * @return mixed |
|
2358 | - */ |
|
2359 | - public static function minify_css($input) { |
|
2360 | - if(trim($input) === "") return $input; |
|
2361 | - return preg_replace( |
|
2362 | - array( |
|
2363 | - // Remove comment(s) |
|
2364 | - '#("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\')|\/\*(?!\!)(?>.*?\*\/)|^\s*|\s*$#s', |
|
2365 | - // Remove unused white-space(s) |
|
2366 | - '#("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\'|\/\*(?>.*?\*\/))|\s*+;\s*+(})\s*+|\s*+([*$~^|]?+=|[{};,>~]|\s(?![0-9\.])|!important\b)\s*+|([[(:])\s++|\s++([])])|\s++(:)\s*+(?!(?>[^{}"\']++|"(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\')*+{)|^\s++|\s++\z|(\s)\s+#si', |
|
2367 | - // Replace `0(cm|em|ex|in|mm|pc|pt|px|vh|vw|%)` with `0` |
|
2368 | - '#(?<=[\s:])(0)(cm|em|ex|in|mm|pc|pt|px|vh|vw|%)#si', |
|
2369 | - // Replace `:0 0 0 0` with `:0` |
|
2370 | - '#:(0\s+0|0\s+0\s+0\s+0)(?=[;\}]|\!important)#i', |
|
2371 | - // Replace `background-position:0` with `background-position:0 0` |
|
2372 | - '#(background-position):0(?=[;\}])#si', |
|
2373 | - // Replace `0.6` with `.6`, but only when preceded by `:`, `,`, `-` or a white-space |
|
2374 | - '#(?<=[\s:,\-])0+\.(\d+)#s', |
|
2375 | - // Minify string value |
|
2376 | - '#(\/\*(?>.*?\*\/))|(?<!content\:)([\'"])([a-z_][a-z0-9\-_]*?)\2(?=[\s\{\}\];,])#si', |
|
2377 | - '#(\/\*(?>.*?\*\/))|(\burl\()([\'"])([^\s]+?)\3(\))#si', |
|
2378 | - // Minify HEX color code |
|
2379 | - '#(?<=[\s:,\-]\#)([a-f0-6]+)\1([a-f0-6]+)\2([a-f0-6]+)\3#i', |
|
2380 | - // Replace `(border|outline):none` with `(border|outline):0` |
|
2381 | - '#(?<=[\{;])(border|outline):none(?=[;\}\!])#', |
|
2382 | - // Remove empty selector(s) |
|
2383 | - '#(\/\*(?>.*?\*\/))|(^|[\{\}])(?:[^\s\{\}]+)\{\}#s' |
|
2384 | - ), |
|
2385 | - array( |
|
2386 | - '$1', |
|
2387 | - '$1$2$3$4$5$6$7', |
|
2388 | - '$1', |
|
2389 | - ':0', |
|
2390 | - '$1:0 0', |
|
2391 | - '.$1', |
|
2392 | - '$1$3', |
|
2393 | - '$1$2$4$5', |
|
2394 | - '$1$2$3', |
|
2395 | - '$1:0', |
|
2396 | - '$1$2' |
|
2397 | - ), |
|
2398 | - $input); |
|
2399 | - } |
|
2352 | + /** |
|
2353 | + * Minify CSS |
|
2354 | + * |
|
2355 | + * @param $input |
|
2356 | + * |
|
2357 | + * @return mixed |
|
2358 | + */ |
|
2359 | + public static function minify_css($input) { |
|
2360 | + if(trim($input) === "") return $input; |
|
2361 | + return preg_replace( |
|
2362 | + array( |
|
2363 | + // Remove comment(s) |
|
2364 | + '#("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\')|\/\*(?!\!)(?>.*?\*\/)|^\s*|\s*$#s', |
|
2365 | + // Remove unused white-space(s) |
|
2366 | + '#("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\'|\/\*(?>.*?\*\/))|\s*+;\s*+(})\s*+|\s*+([*$~^|]?+=|[{};,>~]|\s(?![0-9\.])|!important\b)\s*+|([[(:])\s++|\s++([])])|\s++(:)\s*+(?!(?>[^{}"\']++|"(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\')*+{)|^\s++|\s++\z|(\s)\s+#si', |
|
2367 | + // Replace `0(cm|em|ex|in|mm|pc|pt|px|vh|vw|%)` with `0` |
|
2368 | + '#(?<=[\s:])(0)(cm|em|ex|in|mm|pc|pt|px|vh|vw|%)#si', |
|
2369 | + // Replace `:0 0 0 0` with `:0` |
|
2370 | + '#:(0\s+0|0\s+0\s+0\s+0)(?=[;\}]|\!important)#i', |
|
2371 | + // Replace `background-position:0` with `background-position:0 0` |
|
2372 | + '#(background-position):0(?=[;\}])#si', |
|
2373 | + // Replace `0.6` with `.6`, but only when preceded by `:`, `,`, `-` or a white-space |
|
2374 | + '#(?<=[\s:,\-])0+\.(\d+)#s', |
|
2375 | + // Minify string value |
|
2376 | + '#(\/\*(?>.*?\*\/))|(?<!content\:)([\'"])([a-z_][a-z0-9\-_]*?)\2(?=[\s\{\}\];,])#si', |
|
2377 | + '#(\/\*(?>.*?\*\/))|(\burl\()([\'"])([^\s]+?)\3(\))#si', |
|
2378 | + // Minify HEX color code |
|
2379 | + '#(?<=[\s:,\-]\#)([a-f0-6]+)\1([a-f0-6]+)\2([a-f0-6]+)\3#i', |
|
2380 | + // Replace `(border|outline):none` with `(border|outline):0` |
|
2381 | + '#(?<=[\{;])(border|outline):none(?=[;\}\!])#', |
|
2382 | + // Remove empty selector(s) |
|
2383 | + '#(\/\*(?>.*?\*\/))|(^|[\{\}])(?:[^\s\{\}]+)\{\}#s' |
|
2384 | + ), |
|
2385 | + array( |
|
2386 | + '$1', |
|
2387 | + '$1$2$3$4$5$6$7', |
|
2388 | + '$1', |
|
2389 | + ':0', |
|
2390 | + '$1:0 0', |
|
2391 | + '.$1', |
|
2392 | + '$1$3', |
|
2393 | + '$1$2$4$5', |
|
2394 | + '$1$2$3', |
|
2395 | + '$1:0', |
|
2396 | + '$1$2' |
|
2397 | + ), |
|
2398 | + $input); |
|
2399 | + } |
|
2400 | 2400 | |
2401 | - /** |
|
2402 | - * Get the conditional fields JavaScript. |
|
2403 | - * |
|
2404 | - * @return mixed |
|
2405 | - */ |
|
2406 | - public function conditional_fields_js() { |
|
2407 | - ob_start(); |
|
2408 | - ?> |
|
2401 | + /** |
|
2402 | + * Get the conditional fields JavaScript. |
|
2403 | + * |
|
2404 | + * @return mixed |
|
2405 | + */ |
|
2406 | + public function conditional_fields_js() { |
|
2407 | + ob_start(); |
|
2408 | + ?> |
|
2409 | 2409 | <script> |
2410 | 2410 | /** |
2411 | 2411 | * Conditional Fields |
@@ -2909,14 +2909,14 @@ discard block |
||
2909 | 2909 | <?php do_action( 'aui_conditional_fields_js', $this ); ?> |
2910 | 2910 | </script> |
2911 | 2911 | <?php |
2912 | - $output = ob_get_clean(); |
|
2912 | + $output = ob_get_clean(); |
|
2913 | 2913 | |
2914 | - return str_replace( array( '<script>', '</script>' ), '', self::minify_js( $output ) ); |
|
2915 | - } |
|
2916 | - } |
|
2914 | + return str_replace( array( '<script>', '</script>' ), '', self::minify_js( $output ) ); |
|
2915 | + } |
|
2916 | + } |
|
2917 | 2917 | |
2918 | - /** |
|
2919 | - * Run the class if found. |
|
2920 | - */ |
|
2921 | - AyeCode_UI_Settings::instance(); |
|
2918 | + /** |
|
2919 | + * Run the class if found. |
|
2920 | + */ |
|
2921 | + AyeCode_UI_Settings::instance(); |
|
2922 | 2922 | } |
2923 | 2923 | \ No newline at end of file |
@@ -13,17 +13,17 @@ discard block |
||
13 | 13 | class GetPaid_Notification_Email_Sender { |
14 | 14 | |
15 | 15 | /** |
16 | - * Whether or not we should inline CSS into the email. |
|
17 | - */ |
|
18 | - public $inline_css = true; |
|
16 | + * Whether or not we should inline CSS into the email. |
|
17 | + */ |
|
18 | + public $inline_css = true; |
|
19 | 19 | |
20 | 20 | /** |
21 | - * The wp_mail() data. |
|
22 | - */ |
|
21 | + * The wp_mail() data. |
|
22 | + */ |
|
23 | 23 | public $wp_mail_data = null; |
24 | 24 | |
25 | 25 | /** |
26 | - * Sends a new email. |
|
26 | + * Sends a new email. |
|
27 | 27 | * |
28 | 28 | * @param string|array $to The recipients email or an array of recipient emails. |
29 | 29 | * @param string $subject The email's subject. |
@@ -31,49 +31,49 @@ discard block |
||
31 | 31 | * @param array $attachments The email attachments. |
32 | 32 | * |
33 | 33 | * @return bool |
34 | - */ |
|
35 | - public function send( $to, $subject, $email, $attachments = array() ) { |
|
34 | + */ |
|
35 | + public function send( $to, $subject, $email, $attachments = array() ) { |
|
36 | 36 | |
37 | - /* |
|
37 | + /* |
|
38 | 38 | * Allow to filter data on per-email basis. |
39 | 39 | */ |
40 | - $data = apply_filters( |
|
41 | - 'getpaid_email_data', |
|
42 | - array( |
|
43 | - 'to' => array_filter( array_unique( wpinv_parse_list( $to ) ) ), |
|
44 | - 'subject' => htmlspecialchars_decode( strip_tags( $subject ), ENT_QUOTES ), |
|
45 | - 'email' => apply_filters( 'wpinv_mail_content', $email ), |
|
46 | - 'headers' => $this->get_headers(), |
|
47 | - 'attachments' => $attachments, |
|
48 | - ), |
|
49 | - $this |
|
50 | - ); |
|
40 | + $data = apply_filters( |
|
41 | + 'getpaid_email_data', |
|
42 | + array( |
|
43 | + 'to' => array_filter( array_unique( wpinv_parse_list( $to ) ) ), |
|
44 | + 'subject' => htmlspecialchars_decode( strip_tags( $subject ), ENT_QUOTES ), |
|
45 | + 'email' => apply_filters( 'wpinv_mail_content', $email ), |
|
46 | + 'headers' => $this->get_headers(), |
|
47 | + 'attachments' => $attachments, |
|
48 | + ), |
|
49 | + $this |
|
50 | + ); |
|
51 | 51 | |
52 | 52 | // Remove slashes. |
53 | 53 | $data = (array) wp_unslash( $data ); |
54 | 54 | |
55 | 55 | // Cache it. |
56 | - $this->wp_mail_data = $data; |
|
56 | + $this->wp_mail_data = $data; |
|
57 | 57 | |
58 | - // Attach our own hooks. |
|
59 | - $this->before_sending(); |
|
58 | + // Attach our own hooks. |
|
59 | + $this->before_sending(); |
|
60 | 60 | |
61 | 61 | $result = false; |
62 | 62 | |
63 | 63 | foreach ( $this->wp_mail_data['to'] as $to ) { |
64 | - $result = $this->_send( $to, $data ); |
|
64 | + $result = $this->_send( $to, $data ); |
|
65 | 65 | } |
66 | 66 | |
67 | - // Remove our hooks. |
|
68 | - $this->after_sending(); |
|
67 | + // Remove our hooks. |
|
68 | + $this->after_sending(); |
|
69 | 69 | |
70 | - $this->wp_mail_data = null; |
|
70 | + $this->wp_mail_data = null; |
|
71 | 71 | |
72 | - return $result; |
|
73 | - } |
|
72 | + return $result; |
|
73 | + } |
|
74 | 74 | |
75 | - /** |
|
76 | - * Does the actual sending. |
|
75 | + /** |
|
76 | + * Does the actual sending. |
|
77 | 77 | * |
78 | 78 | * @param string $to The recipient's email. |
79 | 79 | * @param array $data The email's data. |
@@ -81,81 +81,81 @@ discard block |
||
81 | 81 | * @param array $attachments The email attachments. |
82 | 82 | * |
83 | 83 | * @return bool |
84 | - */ |
|
85 | - protected function _send( $to, $data ) { |
|
86 | - |
|
87 | - // Prepare the sending function. |
|
88 | - $sending_function = apply_filters( 'getpaid_email_email_sending_function', 'wp_mail' ); |
|
89 | - |
|
90 | - // Send the actual email. |
|
91 | - $result = call_user_func( |
|
92 | - $sending_function, |
|
93 | - $to, |
|
94 | - html_entity_decode( $data['subject'], ENT_QUOTES, get_bloginfo( 'charset' ) ), |
|
95 | - $data['email'], |
|
96 | - $data['headers'], |
|
97 | - $data['attachments'] |
|
98 | - ); |
|
99 | - |
|
100 | - if ( ! $result ) { |
|
101 | - $log_message = wp_sprintf( __( "\nTime: %s\nTo: %s\nSubject: %s\n", 'invoicing' ), date_i18n( 'F j Y H:i:s', current_time( 'timestamp' ) ), $to, $data['subject'] ); |
|
102 | - wpinv_error_log( $log_message, __( 'Email from Invoicing plugin failed to send', 'invoicing' ), __FILE__, __LINE__ ); |
|
103 | - } |
|
104 | - |
|
105 | - return $result; |
|
106 | - } |
|
84 | + */ |
|
85 | + protected function _send( $to, $data ) { |
|
86 | + |
|
87 | + // Prepare the sending function. |
|
88 | + $sending_function = apply_filters( 'getpaid_email_email_sending_function', 'wp_mail' ); |
|
89 | + |
|
90 | + // Send the actual email. |
|
91 | + $result = call_user_func( |
|
92 | + $sending_function, |
|
93 | + $to, |
|
94 | + html_entity_decode( $data['subject'], ENT_QUOTES, get_bloginfo( 'charset' ) ), |
|
95 | + $data['email'], |
|
96 | + $data['headers'], |
|
97 | + $data['attachments'] |
|
98 | + ); |
|
99 | + |
|
100 | + if ( ! $result ) { |
|
101 | + $log_message = wp_sprintf( __( "\nTime: %s\nTo: %s\nSubject: %s\n", 'invoicing' ), date_i18n( 'F j Y H:i:s', current_time( 'timestamp' ) ), $to, $data['subject'] ); |
|
102 | + wpinv_error_log( $log_message, __( 'Email from Invoicing plugin failed to send', 'invoicing' ), __FILE__, __LINE__ ); |
|
103 | + } |
|
104 | + |
|
105 | + return $result; |
|
106 | + } |
|
107 | 107 | |
108 | 108 | /** |
109 | - * Retrieves email headers. |
|
110 | - */ |
|
111 | - public function get_headers() { |
|
109 | + * Retrieves email headers. |
|
110 | + */ |
|
111 | + public function get_headers() { |
|
112 | 112 | |
113 | - $name = $this->get_from_name(); |
|
114 | - $reply_to = $this->get_reply_to(); |
|
115 | - $headers = array( "Reply-To:$name <$reply_to>" ); |
|
113 | + $name = $this->get_from_name(); |
|
114 | + $reply_to = $this->get_reply_to(); |
|
115 | + $headers = array( "Reply-To:$name <$reply_to>" ); |
|
116 | 116 | |
117 | - return apply_filters( 'getpaid_email_headers', $headers, $this ); |
|
117 | + return apply_filters( 'getpaid_email_headers', $headers, $this ); |
|
118 | 118 | |
119 | - } |
|
119 | + } |
|
120 | 120 | |
121 | 121 | /** |
122 | - * Fires before an email is sent |
|
123 | - * |
|
124 | - * @since 1.0.0 |
|
125 | - */ |
|
126 | - public function before_sending() { |
|
122 | + * Fires before an email is sent |
|
123 | + * |
|
124 | + * @since 1.0.0 |
|
125 | + */ |
|
126 | + public function before_sending() { |
|
127 | 127 | |
128 | 128 | do_action( 'getpaid_before_send_email', $this ); |
129 | - add_filter( 'wp_mail_from', array( $this, 'get_from_address' ), 1000 ); |
|
130 | - add_filter( 'wp_mail_from_name', array( $this, 'get_from_name' ), 1000 ); |
|
131 | - add_filter( 'wp_mail_content_type', array( $this, 'get_content_type' ), 1000 ); |
|
132 | - add_filter( 'wp_mail', array( $this, 'ensure_email_content' ), 1000 ); |
|
129 | + add_filter( 'wp_mail_from', array( $this, 'get_from_address' ), 1000 ); |
|
130 | + add_filter( 'wp_mail_from_name', array( $this, 'get_from_name' ), 1000 ); |
|
131 | + add_filter( 'wp_mail_content_type', array( $this, 'get_content_type' ), 1000 ); |
|
132 | + add_filter( 'wp_mail', array( $this, 'ensure_email_content' ), 1000 ); |
|
133 | 133 | |
134 | - } |
|
134 | + } |
|
135 | 135 | |
136 | 136 | /** |
137 | - * Returns the from name. |
|
138 | - */ |
|
139 | - public function get_from_name() { |
|
137 | + * Returns the from name. |
|
138 | + */ |
|
139 | + public function get_from_name() { |
|
140 | 140 | |
141 | 141 | $from_name = wpinv_get_option( 'email_from_name', get_bloginfo( 'name' ) ); |
142 | 142 | |
143 | - if ( empty( $from_name ) ) { |
|
144 | - $from_name = get_bloginfo( 'name' ); |
|
143 | + if ( empty( $from_name ) ) { |
|
144 | + $from_name = get_bloginfo( 'name' ); |
|
145 | 145 | } |
146 | 146 | |
147 | - return wp_specialchars_decode( $from_name, ENT_QUOTES ); |
|
147 | + return wp_specialchars_decode( $from_name, ENT_QUOTES ); |
|
148 | 148 | } |
149 | 149 | |
150 | 150 | /** |
151 | - * Returns the from email. |
|
152 | - */ |
|
153 | - public function get_from_address() { |
|
151 | + * Returns the from email. |
|
152 | + */ |
|
153 | + public function get_from_address() { |
|
154 | 154 | |
155 | 155 | $from_address = wpinv_get_option( 'email_from', $this->default_from_address() ); |
156 | 156 | |
157 | - if ( ! is_email( $from_address ) ) { |
|
158 | - $from_address = $this->default_from_address(); |
|
157 | + if ( ! is_email( $from_address ) ) { |
|
158 | + $from_address = $this->default_from_address(); |
|
159 | 159 | } |
160 | 160 | |
161 | 161 | return $from_address; |
@@ -163,75 +163,75 @@ discard block |
||
163 | 163 | } |
164 | 164 | |
165 | 165 | /** |
166 | - * The default emails from address. |
|
167 | - * |
|
168 | - * Defaults to wordpress@$sitename |
|
169 | - * Some hosts will block outgoing mail from this address if it doesn't exist, |
|
170 | - * but there's no easy alternative. Defaulting to admin_email might appear to be |
|
171 | - * another option, but some hosts may refuse to relay mail from an unknown domain. |
|
172 | - * |
|
173 | - */ |
|
174 | - public function default_from_address() { |
|
175 | - |
|
176 | - // Get the site domain and get rid of www. |
|
177 | - $sitename = strtolower( $_SERVER['SERVER_NAME'] ); |
|
178 | - if ( substr( $sitename, 0, 4 ) == 'www.' ) { |
|
179 | - $sitename = substr( $sitename, 4 ); |
|
180 | - } |
|
181 | - |
|
182 | - $from_email = 'wordpress@' . $sitename; |
|
183 | - |
|
184 | - return apply_filters( 'getpaid_default_from_address', $from_email ); |
|
166 | + * The default emails from address. |
|
167 | + * |
|
168 | + * Defaults to wordpress@$sitename |
|
169 | + * Some hosts will block outgoing mail from this address if it doesn't exist, |
|
170 | + * but there's no easy alternative. Defaulting to admin_email might appear to be |
|
171 | + * another option, but some hosts may refuse to relay mail from an unknown domain. |
|
172 | + * |
|
173 | + */ |
|
174 | + public function default_from_address() { |
|
175 | + |
|
176 | + // Get the site domain and get rid of www. |
|
177 | + $sitename = strtolower( $_SERVER['SERVER_NAME'] ); |
|
178 | + if ( substr( $sitename, 0, 4 ) == 'www.' ) { |
|
179 | + $sitename = substr( $sitename, 4 ); |
|
180 | + } |
|
181 | + |
|
182 | + $from_email = 'wordpress@' . $sitename; |
|
183 | + |
|
184 | + return apply_filters( 'getpaid_default_from_address', $from_email ); |
|
185 | 185 | |
186 | 186 | } |
187 | 187 | |
188 | 188 | /** |
189 | - * Get the email reply-to. |
|
190 | - * |
|
191 | - * |
|
192 | - * @return string The email reply-to address. |
|
193 | - */ |
|
194 | - public function get_reply_to() { |
|
189 | + * Get the email reply-to. |
|
190 | + * |
|
191 | + * |
|
192 | + * @return string The email reply-to address. |
|
193 | + */ |
|
194 | + public function get_reply_to() { |
|
195 | 195 | |
196 | - $reply_to = wpinv_get_admin_email(); |
|
196 | + $reply_to = wpinv_get_admin_email(); |
|
197 | 197 | |
198 | - if ( ! is_email( $reply_to ) ) { |
|
199 | - $reply_to = get_option( 'admin_email' ); |
|
200 | - } |
|
198 | + if ( ! is_email( $reply_to ) ) { |
|
199 | + $reply_to = get_option( 'admin_email' ); |
|
200 | + } |
|
201 | 201 | |
202 | - return $reply_to; |
|
202 | + return $reply_to; |
|
203 | 203 | } |
204 | 204 | |
205 | 205 | /** |
206 | - * Get the email content type. |
|
207 | - * |
|
208 | - */ |
|
209 | - public function get_content_type() { |
|
210 | - return apply_filters( 'getpaid_email_content_type', 'text/html', $this ); |
|
206 | + * Get the email content type. |
|
207 | + * |
|
208 | + */ |
|
209 | + public function get_content_type() { |
|
210 | + return apply_filters( 'getpaid_email_content_type', 'text/html', $this ); |
|
211 | 211 | } |
212 | 212 | |
213 | 213 | /** |
214 | - * Ensures that our email messages are not messed up by template plugins. |
|
215 | - * |
|
216 | - * @return array wp_mail_data. |
|
217 | - */ |
|
218 | - public function ensure_email_content( $args ) { |
|
219 | - $args['message'] = $this->wp_mail_data['email']; |
|
220 | - return $args; |
|
214 | + * Ensures that our email messages are not messed up by template plugins. |
|
215 | + * |
|
216 | + * @return array wp_mail_data. |
|
217 | + */ |
|
218 | + public function ensure_email_content( $args ) { |
|
219 | + $args['message'] = $this->wp_mail_data['email']; |
|
220 | + return $args; |
|
221 | 221 | } |
222 | 222 | |
223 | 223 | /** |
224 | - * A little house keeping after an email is sent. |
|
225 | - * |
|
226 | - */ |
|
227 | - public function after_sending() { |
|
224 | + * A little house keeping after an email is sent. |
|
225 | + * |
|
226 | + */ |
|
227 | + public function after_sending() { |
|
228 | 228 | |
229 | 229 | do_action( 'getpaid_after_send_email', $this->wp_mail_data ); |
230 | - remove_filter( 'wp_mail_from', array( $this, 'get_from_address' ), 1000 ); |
|
231 | - remove_filter( 'wp_mail_from_name', array( $this, 'get_from_name' ), 1000 ); |
|
232 | - remove_filter( 'wp_mail_content_type', array( $this, 'get_content_type' ), 1000 ); |
|
233 | - remove_filter( 'wp_mail', array( $this, 'ensure_email_content' ), 1000 ); |
|
230 | + remove_filter( 'wp_mail_from', array( $this, 'get_from_address' ), 1000 ); |
|
231 | + remove_filter( 'wp_mail_from_name', array( $this, 'get_from_name' ), 1000 ); |
|
232 | + remove_filter( 'wp_mail_content_type', array( $this, 'get_content_type' ), 1000 ); |
|
233 | + remove_filter( 'wp_mail', array( $this, 'ensure_email_content' ), 1000 ); |
|
234 | 234 | |
235 | - } |
|
235 | + } |
|
236 | 236 | |
237 | 237 | } |
@@ -4,7 +4,7 @@ discard block |
||
4 | 4 | * |
5 | 5 | */ |
6 | 6 | |
7 | -defined( 'ABSPATH' ) || exit; |
|
7 | +defined('ABSPATH') || exit; |
|
8 | 8 | |
9 | 9 | /** |
10 | 10 | * This function is responsible for sending emails. |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | * |
33 | 33 | * @return bool |
34 | 34 | */ |
35 | - public function send( $to, $subject, $email, $attachments = array() ) { |
|
35 | + public function send($to, $subject, $email, $attachments = array()) { |
|
36 | 36 | |
37 | 37 | /* |
38 | 38 | * Allow to filter data on per-email basis. |
@@ -40,9 +40,9 @@ discard block |
||
40 | 40 | $data = apply_filters( |
41 | 41 | 'getpaid_email_data', |
42 | 42 | array( |
43 | - 'to' => array_filter( array_unique( wpinv_parse_list( $to ) ) ), |
|
44 | - 'subject' => htmlspecialchars_decode( strip_tags( $subject ), ENT_QUOTES ), |
|
45 | - 'email' => apply_filters( 'wpinv_mail_content', $email ), |
|
43 | + 'to' => array_filter(array_unique(wpinv_parse_list($to))), |
|
44 | + 'subject' => htmlspecialchars_decode(strip_tags($subject), ENT_QUOTES), |
|
45 | + 'email' => apply_filters('wpinv_mail_content', $email), |
|
46 | 46 | 'headers' => $this->get_headers(), |
47 | 47 | 'attachments' => $attachments, |
48 | 48 | ), |
@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | ); |
51 | 51 | |
52 | 52 | // Remove slashes. |
53 | - $data = (array) wp_unslash( $data ); |
|
53 | + $data = (array) wp_unslash($data); |
|
54 | 54 | |
55 | 55 | // Cache it. |
56 | 56 | $this->wp_mail_data = $data; |
@@ -60,8 +60,8 @@ discard block |
||
60 | 60 | |
61 | 61 | $result = false; |
62 | 62 | |
63 | - foreach ( $this->wp_mail_data['to'] as $to ) { |
|
64 | - $result = $this->_send( $to, $data ); |
|
63 | + foreach ($this->wp_mail_data['to'] as $to) { |
|
64 | + $result = $this->_send($to, $data); |
|
65 | 65 | } |
66 | 66 | |
67 | 67 | // Remove our hooks. |
@@ -82,24 +82,24 @@ discard block |
||
82 | 82 | * |
83 | 83 | * @return bool |
84 | 84 | */ |
85 | - protected function _send( $to, $data ) { |
|
85 | + protected function _send($to, $data) { |
|
86 | 86 | |
87 | 87 | // Prepare the sending function. |
88 | - $sending_function = apply_filters( 'getpaid_email_email_sending_function', 'wp_mail' ); |
|
88 | + $sending_function = apply_filters('getpaid_email_email_sending_function', 'wp_mail'); |
|
89 | 89 | |
90 | 90 | // Send the actual email. |
91 | 91 | $result = call_user_func( |
92 | 92 | $sending_function, |
93 | 93 | $to, |
94 | - html_entity_decode( $data['subject'], ENT_QUOTES, get_bloginfo( 'charset' ) ), |
|
94 | + html_entity_decode($data['subject'], ENT_QUOTES, get_bloginfo('charset')), |
|
95 | 95 | $data['email'], |
96 | 96 | $data['headers'], |
97 | 97 | $data['attachments'] |
98 | 98 | ); |
99 | 99 | |
100 | - if ( ! $result ) { |
|
101 | - $log_message = wp_sprintf( __( "\nTime: %s\nTo: %s\nSubject: %s\n", 'invoicing' ), date_i18n( 'F j Y H:i:s', current_time( 'timestamp' ) ), $to, $data['subject'] ); |
|
102 | - wpinv_error_log( $log_message, __( 'Email from Invoicing plugin failed to send', 'invoicing' ), __FILE__, __LINE__ ); |
|
100 | + if (!$result) { |
|
101 | + $log_message = wp_sprintf(__("\nTime: %s\nTo: %s\nSubject: %s\n", 'invoicing'), date_i18n('F j Y H:i:s', current_time('timestamp')), $to, $data['subject']); |
|
102 | + wpinv_error_log($log_message, __('Email from Invoicing plugin failed to send', 'invoicing'), __FILE__, __LINE__); |
|
103 | 103 | } |
104 | 104 | |
105 | 105 | return $result; |
@@ -112,9 +112,9 @@ discard block |
||
112 | 112 | |
113 | 113 | $name = $this->get_from_name(); |
114 | 114 | $reply_to = $this->get_reply_to(); |
115 | - $headers = array( "Reply-To:$name <$reply_to>" ); |
|
115 | + $headers = array("Reply-To:$name <$reply_to>"); |
|
116 | 116 | |
117 | - return apply_filters( 'getpaid_email_headers', $headers, $this ); |
|
117 | + return apply_filters('getpaid_email_headers', $headers, $this); |
|
118 | 118 | |
119 | 119 | } |
120 | 120 | |
@@ -125,11 +125,11 @@ discard block |
||
125 | 125 | */ |
126 | 126 | public function before_sending() { |
127 | 127 | |
128 | - do_action( 'getpaid_before_send_email', $this ); |
|
129 | - add_filter( 'wp_mail_from', array( $this, 'get_from_address' ), 1000 ); |
|
130 | - add_filter( 'wp_mail_from_name', array( $this, 'get_from_name' ), 1000 ); |
|
131 | - add_filter( 'wp_mail_content_type', array( $this, 'get_content_type' ), 1000 ); |
|
132 | - add_filter( 'wp_mail', array( $this, 'ensure_email_content' ), 1000 ); |
|
128 | + do_action('getpaid_before_send_email', $this); |
|
129 | + add_filter('wp_mail_from', array($this, 'get_from_address'), 1000); |
|
130 | + add_filter('wp_mail_from_name', array($this, 'get_from_name'), 1000); |
|
131 | + add_filter('wp_mail_content_type', array($this, 'get_content_type'), 1000); |
|
132 | + add_filter('wp_mail', array($this, 'ensure_email_content'), 1000); |
|
133 | 133 | |
134 | 134 | } |
135 | 135 | |
@@ -138,13 +138,13 @@ discard block |
||
138 | 138 | */ |
139 | 139 | public function get_from_name() { |
140 | 140 | |
141 | - $from_name = wpinv_get_option( 'email_from_name', get_bloginfo( 'name' ) ); |
|
141 | + $from_name = wpinv_get_option('email_from_name', get_bloginfo('name')); |
|
142 | 142 | |
143 | - if ( empty( $from_name ) ) { |
|
144 | - $from_name = get_bloginfo( 'name' ); |
|
143 | + if (empty($from_name)) { |
|
144 | + $from_name = get_bloginfo('name'); |
|
145 | 145 | } |
146 | 146 | |
147 | - return wp_specialchars_decode( $from_name, ENT_QUOTES ); |
|
147 | + return wp_specialchars_decode($from_name, ENT_QUOTES); |
|
148 | 148 | } |
149 | 149 | |
150 | 150 | /** |
@@ -152,10 +152,10 @@ discard block |
||
152 | 152 | */ |
153 | 153 | public function get_from_address() { |
154 | 154 | |
155 | - $from_address = wpinv_get_option( 'email_from', $this->default_from_address() ); |
|
155 | + $from_address = wpinv_get_option('email_from', $this->default_from_address()); |
|
156 | 156 | |
157 | - if ( ! is_email( $from_address ) ) { |
|
158 | - $from_address = $this->default_from_address(); |
|
157 | + if (!is_email($from_address)) { |
|
158 | + $from_address = $this->default_from_address(); |
|
159 | 159 | } |
160 | 160 | |
161 | 161 | return $from_address; |
@@ -174,14 +174,14 @@ discard block |
||
174 | 174 | public function default_from_address() { |
175 | 175 | |
176 | 176 | // Get the site domain and get rid of www. |
177 | - $sitename = strtolower( $_SERVER['SERVER_NAME'] ); |
|
178 | - if ( substr( $sitename, 0, 4 ) == 'www.' ) { |
|
179 | - $sitename = substr( $sitename, 4 ); |
|
177 | + $sitename = strtolower($_SERVER['SERVER_NAME']); |
|
178 | + if (substr($sitename, 0, 4) == 'www.') { |
|
179 | + $sitename = substr($sitename, 4); |
|
180 | 180 | } |
181 | 181 | |
182 | 182 | $from_email = 'wordpress@' . $sitename; |
183 | 183 | |
184 | - return apply_filters( 'getpaid_default_from_address', $from_email ); |
|
184 | + return apply_filters('getpaid_default_from_address', $from_email); |
|
185 | 185 | |
186 | 186 | } |
187 | 187 | |
@@ -195,8 +195,8 @@ discard block |
||
195 | 195 | |
196 | 196 | $reply_to = wpinv_get_admin_email(); |
197 | 197 | |
198 | - if ( ! is_email( $reply_to ) ) { |
|
199 | - $reply_to = get_option( 'admin_email' ); |
|
198 | + if (!is_email($reply_to)) { |
|
199 | + $reply_to = get_option('admin_email'); |
|
200 | 200 | } |
201 | 201 | |
202 | 202 | return $reply_to; |
@@ -207,7 +207,7 @@ discard block |
||
207 | 207 | * |
208 | 208 | */ |
209 | 209 | public function get_content_type() { |
210 | - return apply_filters( 'getpaid_email_content_type', 'text/html', $this ); |
|
210 | + return apply_filters('getpaid_email_content_type', 'text/html', $this); |
|
211 | 211 | } |
212 | 212 | |
213 | 213 | /** |
@@ -215,7 +215,7 @@ discard block |
||
215 | 215 | * |
216 | 216 | * @return array wp_mail_data. |
217 | 217 | */ |
218 | - public function ensure_email_content( $args ) { |
|
218 | + public function ensure_email_content($args) { |
|
219 | 219 | $args['message'] = $this->wp_mail_data['email']; |
220 | 220 | return $args; |
221 | 221 | } |
@@ -226,11 +226,11 @@ discard block |
||
226 | 226 | */ |
227 | 227 | public function after_sending() { |
228 | 228 | |
229 | - do_action( 'getpaid_after_send_email', $this->wp_mail_data ); |
|
230 | - remove_filter( 'wp_mail_from', array( $this, 'get_from_address' ), 1000 ); |
|
231 | - remove_filter( 'wp_mail_from_name', array( $this, 'get_from_name' ), 1000 ); |
|
232 | - remove_filter( 'wp_mail_content_type', array( $this, 'get_content_type' ), 1000 ); |
|
233 | - remove_filter( 'wp_mail', array( $this, 'ensure_email_content' ), 1000 ); |
|
229 | + do_action('getpaid_after_send_email', $this->wp_mail_data); |
|
230 | + remove_filter('wp_mail_from', array($this, 'get_from_address'), 1000); |
|
231 | + remove_filter('wp_mail_from_name', array($this, 'get_from_name'), 1000); |
|
232 | + remove_filter('wp_mail_content_type', array($this, 'get_content_type'), 1000); |
|
233 | + remove_filter('wp_mail', array($this, 'ensure_email_content'), 1000); |
|
234 | 234 | |
235 | 235 | } |
236 | 236 |
@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | */ |
51 | 51 | function getpaid_get_invoice_subscription_group( $invoice_id, $subscription_id ) { |
52 | 52 | $subscription_groups = getpaid_get_invoice_subscription_groups( $invoice_id ); |
53 | - $matching_group = wp_list_filter( $subscription_groups, compact( 'subscription_id' ) ); |
|
53 | + $matching_group = wp_list_filter( $subscription_groups, compact( 'subscription_id' ) ); |
|
54 | 54 | return reset( $matching_group ); |
55 | 55 | } |
56 | 56 | |
@@ -63,11 +63,11 @@ discard block |
||
63 | 63 | */ |
64 | 64 | function getpaid_get_subscription( $subscription ) { |
65 | 65 | |
66 | - if ( ! is_a( $subscription, 'WPInv_Subscription' ) ) { |
|
67 | - $subscription = new WPInv_Subscription( $subscription ); |
|
68 | - } |
|
66 | + if ( ! is_a( $subscription, 'WPInv_Subscription' ) ) { |
|
67 | + $subscription = new WPInv_Subscription( $subscription ); |
|
68 | + } |
|
69 | 69 | |
70 | - return $subscription->exists() ? $subscription : false; |
|
70 | + return $subscription->exists() ? $subscription : false; |
|
71 | 71 | } |
72 | 72 | |
73 | 73 | /** |
@@ -81,28 +81,28 @@ discard block |
||
81 | 81 | */ |
82 | 82 | function getpaid_get_subscriptions( $args = array(), $return = 'results' ) { |
83 | 83 | |
84 | - // Do not retrieve all fields if we just want the count. |
|
85 | - if ( 'count' == $return ) { |
|
86 | - $args['fields'] = 'id'; |
|
87 | - $args['number'] = 1; |
|
88 | - } |
|
84 | + // Do not retrieve all fields if we just want the count. |
|
85 | + if ( 'count' == $return ) { |
|
86 | + $args['fields'] = 'id'; |
|
87 | + $args['number'] = 1; |
|
88 | + } |
|
89 | 89 | |
90 | - // Do not count all matches if we just want the results. |
|
91 | - if ( 'results' == $return ) { |
|
92 | - $args['count_total'] = false; |
|
93 | - } |
|
90 | + // Do not count all matches if we just want the results. |
|
91 | + if ( 'results' == $return ) { |
|
92 | + $args['count_total'] = false; |
|
93 | + } |
|
94 | 94 | |
95 | - $query = new GetPaid_Subscriptions_Query( $args ); |
|
95 | + $query = new GetPaid_Subscriptions_Query( $args ); |
|
96 | 96 | |
97 | - if ( 'results' == $return ) { |
|
98 | - return $query->get_results(); |
|
99 | - } |
|
97 | + if ( 'results' == $return ) { |
|
98 | + return $query->get_results(); |
|
99 | + } |
|
100 | 100 | |
101 | - if ( 'count' == $return ) { |
|
102 | - return $query->get_total(); |
|
103 | - } |
|
101 | + if ( 'count' == $return ) { |
|
102 | + return $query->get_total(); |
|
103 | + } |
|
104 | 104 | |
105 | - return $query; |
|
105 | + return $query; |
|
106 | 106 | } |
107 | 107 | |
108 | 108 | /** |
@@ -112,18 +112,18 @@ discard block |
||
112 | 112 | */ |
113 | 113 | function getpaid_get_subscription_statuses() { |
114 | 114 | |
115 | - return apply_filters( |
|
116 | - 'getpaid_get_subscription_statuses', |
|
117 | - array( |
|
118 | - 'pending' => __( 'Pending', 'invoicing' ), |
|
119 | - 'trialling' => __( 'Trialing', 'invoicing' ), |
|
120 | - 'active' => __( 'Active', 'invoicing' ), |
|
121 | - 'failing' => __( 'Failing', 'invoicing' ), |
|
122 | - 'expired' => __( 'Expired', 'invoicing' ), |
|
123 | - 'completed' => __( 'Complete', 'invoicing' ), |
|
124 | - 'cancelled' => __( 'Cancelled', 'invoicing' ), |
|
125 | - ) |
|
126 | - ); |
|
115 | + return apply_filters( |
|
116 | + 'getpaid_get_subscription_statuses', |
|
117 | + array( |
|
118 | + 'pending' => __( 'Pending', 'invoicing' ), |
|
119 | + 'trialling' => __( 'Trialing', 'invoicing' ), |
|
120 | + 'active' => __( 'Active', 'invoicing' ), |
|
121 | + 'failing' => __( 'Failing', 'invoicing' ), |
|
122 | + 'expired' => __( 'Expired', 'invoicing' ), |
|
123 | + 'completed' => __( 'Complete', 'invoicing' ), |
|
124 | + 'cancelled' => __( 'Cancelled', 'invoicing' ), |
|
125 | + ) |
|
126 | + ); |
|
127 | 127 | |
128 | 128 | } |
129 | 129 | |
@@ -133,8 +133,8 @@ discard block |
||
133 | 133 | * @return string |
134 | 134 | */ |
135 | 135 | function getpaid_get_subscription_status_label( $status ) { |
136 | - $statuses = getpaid_get_subscription_statuses(); |
|
137 | - return isset( $statuses[ $status ] ) ? $statuses[ $status ] : ucfirst( sanitize_text_field( $status ) ); |
|
136 | + $statuses = getpaid_get_subscription_statuses(); |
|
137 | + return isset( $statuses[ $status ] ) ? $statuses[ $status ] : ucfirst( sanitize_text_field( $status ) ); |
|
138 | 138 | } |
139 | 139 | |
140 | 140 | /** |
@@ -144,18 +144,18 @@ discard block |
||
144 | 144 | */ |
145 | 145 | function getpaid_get_subscription_status_classes() { |
146 | 146 | |
147 | - return apply_filters( |
|
148 | - 'getpaid_get_subscription_status_classes', |
|
149 | - array( |
|
150 | - 'pending' => 'badge-dark', |
|
151 | - 'trialling' => 'badge-info', |
|
152 | - 'active' => 'badge-success', |
|
153 | - 'failing' => 'badge-warning', |
|
154 | - 'expired' => 'badge-danger', |
|
155 | - 'completed' => 'badge-primary', |
|
156 | - 'cancelled' => 'badge-secondary', |
|
157 | - ) |
|
158 | - ); |
|
147 | + return apply_filters( |
|
148 | + 'getpaid_get_subscription_status_classes', |
|
149 | + array( |
|
150 | + 'pending' => 'badge-dark', |
|
151 | + 'trialling' => 'badge-info', |
|
152 | + 'active' => 'badge-success', |
|
153 | + 'failing' => 'badge-warning', |
|
154 | + 'expired' => 'badge-danger', |
|
155 | + 'completed' => 'badge-primary', |
|
156 | + 'cancelled' => 'badge-secondary', |
|
157 | + ) |
|
158 | + ); |
|
159 | 159 | |
160 | 160 | } |
161 | 161 | |
@@ -166,15 +166,15 @@ discard block |
||
166 | 166 | */ |
167 | 167 | function getpaid_get_subscription_status_counts( $args = array() ) { |
168 | 168 | |
169 | - $statuses = array_keys( getpaid_get_subscription_statuses() ); |
|
170 | - $counts = array(); |
|
169 | + $statuses = array_keys( getpaid_get_subscription_statuses() ); |
|
170 | + $counts = array(); |
|
171 | 171 | |
172 | - foreach ( $statuses as $status ) { |
|
173 | - $_args = wp_parse_args( "status=$status", $args ); |
|
174 | - $counts[ $status ] = getpaid_get_subscriptions( $_args, 'count' ); |
|
175 | - } |
|
172 | + foreach ( $statuses as $status ) { |
|
173 | + $_args = wp_parse_args( "status=$status", $args ); |
|
174 | + $counts[ $status ] = getpaid_get_subscriptions( $_args, 'count' ); |
|
175 | + } |
|
176 | 176 | |
177 | - return $counts; |
|
177 | + return $counts; |
|
178 | 178 | |
179 | 179 | } |
180 | 180 | |
@@ -185,32 +185,32 @@ discard block |
||
185 | 185 | */ |
186 | 186 | function getpaid_get_subscription_periods() { |
187 | 187 | |
188 | - return apply_filters( |
|
189 | - 'getpaid_get_subscription_periods', |
|
190 | - array( |
|
188 | + return apply_filters( |
|
189 | + 'getpaid_get_subscription_periods', |
|
190 | + array( |
|
191 | 191 | |
192 | - 'day' => array( |
|
193 | - 'singular' => __( '%s day', 'invoicing' ), |
|
194 | - 'plural' => __( '%d days', 'invoicing' ), |
|
195 | - ), |
|
192 | + 'day' => array( |
|
193 | + 'singular' => __( '%s day', 'invoicing' ), |
|
194 | + 'plural' => __( '%d days', 'invoicing' ), |
|
195 | + ), |
|
196 | 196 | |
197 | - 'week' => array( |
|
198 | - 'singular' => __( '%s week', 'invoicing' ), |
|
199 | - 'plural' => __( '%d weeks', 'invoicing' ), |
|
200 | - ), |
|
197 | + 'week' => array( |
|
198 | + 'singular' => __( '%s week', 'invoicing' ), |
|
199 | + 'plural' => __( '%d weeks', 'invoicing' ), |
|
200 | + ), |
|
201 | 201 | |
202 | - 'month' => array( |
|
203 | - 'singular' => __( '%s month', 'invoicing' ), |
|
204 | - 'plural' => __( '%d months', 'invoicing' ), |
|
205 | - ), |
|
202 | + 'month' => array( |
|
203 | + 'singular' => __( '%s month', 'invoicing' ), |
|
204 | + 'plural' => __( '%d months', 'invoicing' ), |
|
205 | + ), |
|
206 | 206 | |
207 | - 'year' => array( |
|
208 | - 'singular' => __( '%s year', 'invoicing' ), |
|
209 | - 'plural' => __( '%d years', 'invoicing' ), |
|
210 | - ), |
|
207 | + 'year' => array( |
|
208 | + 'singular' => __( '%s year', 'invoicing' ), |
|
209 | + 'plural' => __( '%d years', 'invoicing' ), |
|
210 | + ), |
|
211 | 211 | |
212 | - ) |
|
213 | - ); |
|
212 | + ) |
|
213 | + ); |
|
214 | 214 | |
215 | 215 | } |
216 | 216 | |
@@ -221,7 +221,7 @@ discard block |
||
221 | 221 | * @return int |
222 | 222 | */ |
223 | 223 | function getpaid_get_subscription_trial_period_interval( $trial_period ) { |
224 | - return (int) preg_replace( '/[^0-9]/', '', $trial_period ); |
|
224 | + return (int) preg_replace( '/[^0-9]/', '', $trial_period ); |
|
225 | 225 | } |
226 | 226 | |
227 | 227 | /** |
@@ -231,7 +231,7 @@ discard block |
||
231 | 231 | * @return string |
232 | 232 | */ |
233 | 233 | function getpaid_get_subscription_trial_period_period( $trial_period ) { |
234 | - return preg_replace( '/[^a-z]/', '', strtolower( $trial_period ) ); |
|
234 | + return preg_replace( '/[^a-z]/', '', strtolower( $trial_period ) ); |
|
235 | 235 | } |
236 | 236 | |
237 | 237 | /** |
@@ -242,8 +242,8 @@ discard block |
||
242 | 242 | * @return string |
243 | 243 | */ |
244 | 244 | function getpaid_get_subscription_period_label( $period, $interval = 1, $singular_prefix = '1' ) { |
245 | - $label = (int) $interval > 1 ? getpaid_get_plural_subscription_period_label( $period, $interval ) : getpaid_get_singular_subscription_period_label( $period, $singular_prefix ); |
|
246 | - return strtolower( sanitize_text_field( $label ) ); |
|
245 | + $label = (int) $interval > 1 ? getpaid_get_plural_subscription_period_label( $period, $interval ) : getpaid_get_singular_subscription_period_label( $period, $singular_prefix ); |
|
246 | + return strtolower( sanitize_text_field( $label ) ); |
|
247 | 247 | } |
248 | 248 | |
249 | 249 | /** |
@@ -254,22 +254,22 @@ discard block |
||
254 | 254 | */ |
255 | 255 | function getpaid_get_singular_subscription_period_label( $period, $singular_prefix = '1' ) { |
256 | 256 | |
257 | - $periods = getpaid_get_subscription_periods(); |
|
258 | - $period = strtolower( $period ); |
|
257 | + $periods = getpaid_get_subscription_periods(); |
|
258 | + $period = strtolower( $period ); |
|
259 | 259 | |
260 | - if ( isset( $periods[ $period ] ) ) { |
|
261 | - return sprintf( $periods[ $period ]['singular'], $singular_prefix ); |
|
262 | - } |
|
260 | + if ( isset( $periods[ $period ] ) ) { |
|
261 | + return sprintf( $periods[ $period ]['singular'], $singular_prefix ); |
|
262 | + } |
|
263 | 263 | |
264 | - // Backwards compatibility. |
|
265 | - foreach ( $periods as $key => $data ) { |
|
266 | - if ( strpos( $key, $period ) === 0 ) { |
|
267 | - return sprintf( $data['singular'], $singular_prefix ); |
|
268 | - } |
|
269 | - } |
|
264 | + // Backwards compatibility. |
|
265 | + foreach ( $periods as $key => $data ) { |
|
266 | + if ( strpos( $key, $period ) === 0 ) { |
|
267 | + return sprintf( $data['singular'], $singular_prefix ); |
|
268 | + } |
|
269 | + } |
|
270 | 270 | |
271 | - // Invalid string. |
|
272 | - return ''; |
|
271 | + // Invalid string. |
|
272 | + return ''; |
|
273 | 273 | } |
274 | 274 | |
275 | 275 | /** |
@@ -281,22 +281,22 @@ discard block |
||
281 | 281 | */ |
282 | 282 | function getpaid_get_plural_subscription_period_label( $period, $interval ) { |
283 | 283 | |
284 | - $periods = getpaid_get_subscription_periods(); |
|
285 | - $period = strtolower( $period ); |
|
284 | + $periods = getpaid_get_subscription_periods(); |
|
285 | + $period = strtolower( $period ); |
|
286 | 286 | |
287 | - if ( isset( $periods[ $period ] ) ) { |
|
288 | - return sprintf( $periods[ $period ]['plural'], $interval ); |
|
289 | - } |
|
287 | + if ( isset( $periods[ $period ] ) ) { |
|
288 | + return sprintf( $periods[ $period ]['plural'], $interval ); |
|
289 | + } |
|
290 | 290 | |
291 | - // Backwards compatibility. |
|
292 | - foreach ( $periods as $key => $data ) { |
|
293 | - if ( strpos( $key, $period ) === 0 ) { |
|
294 | - return sprintf( $data['plural'], $interval ); |
|
295 | - } |
|
296 | - } |
|
291 | + // Backwards compatibility. |
|
292 | + foreach ( $periods as $key => $data ) { |
|
293 | + if ( strpos( $key, $period ) === 0 ) { |
|
294 | + return sprintf( $data['plural'], $interval ); |
|
295 | + } |
|
296 | + } |
|
297 | 297 | |
298 | - // Invalid string. |
|
299 | - return ''; |
|
298 | + // Invalid string. |
|
299 | + return ''; |
|
300 | 300 | } |
301 | 301 | |
302 | 302 | /** |
@@ -307,101 +307,101 @@ discard block |
||
307 | 307 | */ |
308 | 308 | function getpaid_get_formatted_subscription_amount( $subscription ) { |
309 | 309 | |
310 | - $initial = wpinv_price( $subscription->get_initial_amount(), $subscription->get_parent_payment()->get_currency() ); |
|
311 | - $recurring = wpinv_price( $subscription->get_recurring_amount(), $subscription->get_parent_payment()->get_currency() ); |
|
312 | - $period = getpaid_get_subscription_period_label( $subscription->get_period(), $subscription->get_frequency(), '' ); |
|
313 | - $bill_times = $subscription->get_bill_times(); |
|
310 | + $initial = wpinv_price( $subscription->get_initial_amount(), $subscription->get_parent_payment()->get_currency() ); |
|
311 | + $recurring = wpinv_price( $subscription->get_recurring_amount(), $subscription->get_parent_payment()->get_currency() ); |
|
312 | + $period = getpaid_get_subscription_period_label( $subscription->get_period(), $subscription->get_frequency(), '' ); |
|
313 | + $bill_times = $subscription->get_bill_times(); |
|
314 | 314 | |
315 | - if ( ! empty( $bill_times ) ) { |
|
316 | - $bill_times = $subscription->get_frequency() * $bill_times; |
|
317 | - $bill_times = getpaid_get_subscription_period_label( $subscription->get_period(), $bill_times ); |
|
318 | - } |
|
315 | + if ( ! empty( $bill_times ) ) { |
|
316 | + $bill_times = $subscription->get_frequency() * $bill_times; |
|
317 | + $bill_times = getpaid_get_subscription_period_label( $subscription->get_period(), $bill_times ); |
|
318 | + } |
|
319 | 319 | |
320 | - // Trial periods. |
|
321 | - if ( $subscription->has_trial_period() ) { |
|
320 | + // Trial periods. |
|
321 | + if ( $subscription->has_trial_period() ) { |
|
322 | 322 | |
323 | - $trial_period = getpaid_get_subscription_trial_period_period( $subscription->get_trial_period() ); |
|
324 | - $trial_interval = getpaid_get_subscription_trial_period_interval( $subscription->get_trial_period() ); |
|
323 | + $trial_period = getpaid_get_subscription_trial_period_period( $subscription->get_trial_period() ); |
|
324 | + $trial_interval = getpaid_get_subscription_trial_period_interval( $subscription->get_trial_period() ); |
|
325 | 325 | |
326 | - if ( empty( $bill_times ) ) { |
|
326 | + if ( empty( $bill_times ) ) { |
|
327 | 327 | |
328 | - return sprintf( |
|
328 | + return sprintf( |
|
329 | 329 | |
330 | - // translators: $1: is the initial amount, $2: is the trial period, $3: is the recurring amount, $4: is the recurring period |
|
331 | - _x( '%1$s trial for %2$s then %3$s / %4$s', 'Subscription amount. (e.g.: $10 trial for 1 month then $120 / year)', 'invoicing' ), |
|
332 | - $initial, |
|
333 | - getpaid_get_subscription_period_label( $trial_period, $trial_interval ), |
|
334 | - $recurring, |
|
335 | - $period |
|
330 | + // translators: $1: is the initial amount, $2: is the trial period, $3: is the recurring amount, $4: is the recurring period |
|
331 | + _x( '%1$s trial for %2$s then %3$s / %4$s', 'Subscription amount. (e.g.: $10 trial for 1 month then $120 / year)', 'invoicing' ), |
|
332 | + $initial, |
|
333 | + getpaid_get_subscription_period_label( $trial_period, $trial_interval ), |
|
334 | + $recurring, |
|
335 | + $period |
|
336 | 336 | |
337 | - ); |
|
337 | + ); |
|
338 | 338 | |
339 | - } |
|
339 | + } |
|
340 | 340 | |
341 | - return sprintf( |
|
341 | + return sprintf( |
|
342 | 342 | |
343 | - // translators: $1: is the initial amount, $2: is the trial period, $3: is the recurring amount, $4: is the recurring period, $5: is the bill times |
|
344 | - _x( '%1$s trial for %2$s then %3$s / %4$s for %5$s', 'Subscription amount. (e.g.: $10 trial for 1 month then $120 / year for 4 years)', 'invoicing' ), |
|
345 | - $initial, |
|
346 | - getpaid_get_subscription_period_label( $trial_period, $trial_interval ), |
|
347 | - $recurring, |
|
348 | - $period, |
|
349 | - $bill_times |
|
350 | - ); |
|
343 | + // translators: $1: is the initial amount, $2: is the trial period, $3: is the recurring amount, $4: is the recurring period, $5: is the bill times |
|
344 | + _x( '%1$s trial for %2$s then %3$s / %4$s for %5$s', 'Subscription amount. (e.g.: $10 trial for 1 month then $120 / year for 4 years)', 'invoicing' ), |
|
345 | + $initial, |
|
346 | + getpaid_get_subscription_period_label( $trial_period, $trial_interval ), |
|
347 | + $recurring, |
|
348 | + $period, |
|
349 | + $bill_times |
|
350 | + ); |
|
351 | 351 | |
352 | - } |
|
352 | + } |
|
353 | 353 | |
354 | - if ( $initial != $recurring ) { |
|
354 | + if ( $initial != $recurring ) { |
|
355 | 355 | |
356 | - if ( empty( $bill_times ) ) { |
|
356 | + if ( empty( $bill_times ) ) { |
|
357 | 357 | |
358 | - return sprintf( |
|
358 | + return sprintf( |
|
359 | 359 | |
360 | - // translators: $1: is the initial amount, $2: is the recurring amount, $3: is the recurring period |
|
361 | - _x( 'Initial payment of %1$s which renews at %2$s / %3$s', 'Subscription amount. (e.g.:Initial payment of $100 which renews at $120 / year)', 'invoicing' ), |
|
362 | - $initial, |
|
363 | - $recurring, |
|
364 | - $period |
|
360 | + // translators: $1: is the initial amount, $2: is the recurring amount, $3: is the recurring period |
|
361 | + _x( 'Initial payment of %1$s which renews at %2$s / %3$s', 'Subscription amount. (e.g.:Initial payment of $100 which renews at $120 / year)', 'invoicing' ), |
|
362 | + $initial, |
|
363 | + $recurring, |
|
364 | + $period |
|
365 | 365 | |
366 | - ); |
|
366 | + ); |
|
367 | 367 | |
368 | - } |
|
368 | + } |
|
369 | 369 | |
370 | - return sprintf( |
|
370 | + return sprintf( |
|
371 | 371 | |
372 | - // translators: $1: is the initial amount, $2: is the recurring amount, $3: is the recurring period, $4: is the bill times |
|
373 | - _x( 'Initial payment of %1$s which renews at %2$s / %3$s for %4$s', 'Subscription amount. (e.g.:Initial payment of $100 which renews at $120 / year for 5 years)', 'invoicing' ), |
|
374 | - $initial, |
|
375 | - $recurring, |
|
376 | - $period, |
|
377 | - $bill_times |
|
372 | + // translators: $1: is the initial amount, $2: is the recurring amount, $3: is the recurring period, $4: is the bill times |
|
373 | + _x( 'Initial payment of %1$s which renews at %2$s / %3$s for %4$s', 'Subscription amount. (e.g.:Initial payment of $100 which renews at $120 / year for 5 years)', 'invoicing' ), |
|
374 | + $initial, |
|
375 | + $recurring, |
|
376 | + $period, |
|
377 | + $bill_times |
|
378 | 378 | |
379 | - ); |
|
379 | + ); |
|
380 | 380 | |
381 | - } |
|
381 | + } |
|
382 | 382 | |
383 | - if ( empty( $bill_times ) ) { |
|
383 | + if ( empty( $bill_times ) ) { |
|
384 | 384 | |
385 | - return sprintf( |
|
385 | + return sprintf( |
|
386 | 386 | |
387 | - // translators: $1: is the recurring amount, $2: is the recurring period |
|
388 | - _x( '%1$s / %2$s', 'Subscription amount. (e.g.: $120 / year)', 'invoicing' ), |
|
389 | - $initial, |
|
390 | - $period |
|
387 | + // translators: $1: is the recurring amount, $2: is the recurring period |
|
388 | + _x( '%1$s / %2$s', 'Subscription amount. (e.g.: $120 / year)', 'invoicing' ), |
|
389 | + $initial, |
|
390 | + $period |
|
391 | 391 | |
392 | - ); |
|
392 | + ); |
|
393 | 393 | |
394 | - } |
|
394 | + } |
|
395 | 395 | |
396 | - return sprintf( |
|
396 | + return sprintf( |
|
397 | 397 | |
398 | - // translators: $1: is the bill times, $2: is the recurring amount, $3: is the recurring period |
|
399 | - _x( '%2$s / %3$s for %1$s', 'Subscription amount. (e.g.: $120 / year for 5 years)', 'invoicing' ), |
|
400 | - $bill_times, |
|
401 | - $initial, |
|
402 | - $period |
|
398 | + // translators: $1: is the bill times, $2: is the recurring amount, $3: is the recurring period |
|
399 | + _x( '%2$s / %3$s for %1$s', 'Subscription amount. (e.g.: $120 / year for 5 years)', 'invoicing' ), |
|
400 | + $bill_times, |
|
401 | + $initial, |
|
402 | + $period |
|
403 | 403 | |
404 | - ); |
|
404 | + ); |
|
405 | 405 | |
406 | 406 | } |
407 | 407 | |
@@ -412,7 +412,7 @@ discard block |
||
412 | 412 | * @return WPInv_Subscription|false |
413 | 413 | */ |
414 | 414 | function getpaid_get_invoice_subscription( $invoice ) { |
415 | - return getpaid_subscriptions()->get_invoice_subscription( $invoice ); |
|
415 | + return getpaid_subscriptions()->get_invoice_subscription( $invoice ); |
|
416 | 416 | } |
417 | 417 | |
418 | 418 | /** |
@@ -421,10 +421,10 @@ discard block |
||
421 | 421 | * @param WPInv_Invoice $invoice |
422 | 422 | */ |
423 | 423 | function getpaid_activate_invoice_subscription( $invoice ) { |
424 | - $subscription = getpaid_get_invoice_subscription( $invoice ); |
|
425 | - if ( is_a( $subscription, 'WPInv_Subscription' ) ) { |
|
426 | - $subscription->activate(); |
|
427 | - } |
|
424 | + $subscription = getpaid_get_invoice_subscription( $invoice ); |
|
425 | + if ( is_a( $subscription, 'WPInv_Subscription' ) ) { |
|
426 | + $subscription->activate(); |
|
427 | + } |
|
428 | 428 | } |
429 | 429 | |
430 | 430 | /** |
@@ -433,7 +433,7 @@ discard block |
||
433 | 433 | * @return WPInv_Subscriptions |
434 | 434 | */ |
435 | 435 | function getpaid_subscriptions() { |
436 | - return getpaid()->get( 'subscriptions' ); |
|
436 | + return getpaid()->get( 'subscriptions' ); |
|
437 | 437 | } |
438 | 438 | |
439 | 439 | /** |
@@ -452,15 +452,15 @@ discard block |
||
452 | 452 | return false; |
453 | 453 | } |
454 | 454 | |
455 | - // Fetch the invoice subscription. |
|
456 | - $subscription = getpaid_get_subscriptions( |
|
457 | - array( |
|
458 | - 'invoice_in' => $invoice->is_renewal() ? $invoice->get_parent_id() : $invoice->get_id(), |
|
459 | - 'number' => 1, |
|
460 | - ) |
|
461 | - ); |
|
455 | + // Fetch the invoice subscription. |
|
456 | + $subscription = getpaid_get_subscriptions( |
|
457 | + array( |
|
458 | + 'invoice_in' => $invoice->is_renewal() ? $invoice->get_parent_id() : $invoice->get_id(), |
|
459 | + 'number' => 1, |
|
460 | + ) |
|
461 | + ); |
|
462 | 462 | |
463 | - return empty( $subscription ) ? false : $subscription[0]; |
|
463 | + return empty( $subscription ) ? false : $subscription[0]; |
|
464 | 464 | |
465 | 465 | } |
466 | 466 | |
@@ -477,48 +477,48 @@ discard block |
||
477 | 477 | */ |
478 | 478 | function getpaid_get_recurring_item_key( $cart_item ) { |
479 | 479 | |
480 | - $cart_key = 'renews_'; |
|
481 | - $interval = $cart_item->get_recurring_interval(); |
|
482 | - $period = $cart_item->get_recurring_period( true ); |
|
483 | - $length = $cart_item->get_recurring_limit() * $interval; |
|
484 | - $trial_period = $cart_item->get_trial_period( true ); |
|
485 | - $trial_length = $cart_item->get_trial_interval(); |
|
486 | - |
|
487 | - // First start with the billing interval and period |
|
488 | - switch ( $interval ) { |
|
489 | - case 1 : |
|
490 | - if ( 'day' == $period ) { |
|
491 | - $cart_key .= 'daily'; |
|
492 | - } else { |
|
493 | - $cart_key .= sprintf( '%sly', $period ); |
|
494 | - } |
|
495 | - break; |
|
496 | - case 2 : |
|
497 | - $cart_key .= sprintf( 'every_2nd_%s', $period ); |
|
498 | - break; |
|
499 | - case 3 : |
|
500 | - $cart_key .= sprintf( 'every_3rd_%s', $period ); |
|
501 | - break; |
|
502 | - default: |
|
503 | - $cart_key .= sprintf( 'every_%dth_%s', $interval, $period ); |
|
504 | - break; |
|
505 | - } |
|
506 | - |
|
507 | - // Maybe add the optional maximum billing periods... |
|
508 | - if ( $length > 0 ) { |
|
509 | - $cart_key .= '_for_'; |
|
510 | - $cart_key .= sprintf( '%d_%s', $length, $period ); |
|
511 | - if ( $length > 1 ) { |
|
512 | - $cart_key .= 's'; |
|
513 | - } |
|
514 | - } |
|
515 | - |
|
516 | - // And an optional free trial. |
|
517 | - if ( $cart_item->has_free_trial() ) { |
|
518 | - $cart_key .= sprintf( '_after_a_%d_%s_trial', $trial_length, $trial_period ); |
|
519 | - } |
|
520 | - |
|
521 | - return apply_filters( 'getpaid_get_recurring_item_key', $cart_key, $cart_item ); |
|
480 | + $cart_key = 'renews_'; |
|
481 | + $interval = $cart_item->get_recurring_interval(); |
|
482 | + $period = $cart_item->get_recurring_period( true ); |
|
483 | + $length = $cart_item->get_recurring_limit() * $interval; |
|
484 | + $trial_period = $cart_item->get_trial_period( true ); |
|
485 | + $trial_length = $cart_item->get_trial_interval(); |
|
486 | + |
|
487 | + // First start with the billing interval and period |
|
488 | + switch ( $interval ) { |
|
489 | + case 1 : |
|
490 | + if ( 'day' == $period ) { |
|
491 | + $cart_key .= 'daily'; |
|
492 | + } else { |
|
493 | + $cart_key .= sprintf( '%sly', $period ); |
|
494 | + } |
|
495 | + break; |
|
496 | + case 2 : |
|
497 | + $cart_key .= sprintf( 'every_2nd_%s', $period ); |
|
498 | + break; |
|
499 | + case 3 : |
|
500 | + $cart_key .= sprintf( 'every_3rd_%s', $period ); |
|
501 | + break; |
|
502 | + default: |
|
503 | + $cart_key .= sprintf( 'every_%dth_%s', $interval, $period ); |
|
504 | + break; |
|
505 | + } |
|
506 | + |
|
507 | + // Maybe add the optional maximum billing periods... |
|
508 | + if ( $length > 0 ) { |
|
509 | + $cart_key .= '_for_'; |
|
510 | + $cart_key .= sprintf( '%d_%s', $length, $period ); |
|
511 | + if ( $length > 1 ) { |
|
512 | + $cart_key .= 's'; |
|
513 | + } |
|
514 | + } |
|
515 | + |
|
516 | + // And an optional free trial. |
|
517 | + if ( $cart_item->has_free_trial() ) { |
|
518 | + $cart_key .= sprintf( '_after_a_%d_%s_trial', $trial_length, $trial_period ); |
|
519 | + } |
|
520 | + |
|
521 | + return apply_filters( 'getpaid_get_recurring_item_key', $cart_key, $cart_item ); |
|
522 | 522 | } |
523 | 523 | |
524 | 524 | /** |
@@ -529,17 +529,17 @@ discard block |
||
529 | 529 | */ |
530 | 530 | function getpaid_get_subscription_groups( $invoice ) { |
531 | 531 | |
532 | - // Generate subscription groups. |
|
533 | - $subscription_groups = array(); |
|
534 | - foreach ( $invoice->get_items() as $item ) { |
|
532 | + // Generate subscription groups. |
|
533 | + $subscription_groups = array(); |
|
534 | + foreach ( $invoice->get_items() as $item ) { |
|
535 | 535 | |
536 | - if ( $item->is_recurring() ) { |
|
537 | - $subscription_groups[ getpaid_get_recurring_item_key( $item ) ][] = $item; |
|
538 | - } |
|
536 | + if ( $item->is_recurring() ) { |
|
537 | + $subscription_groups[ getpaid_get_recurring_item_key( $item ) ][] = $item; |
|
538 | + } |
|
539 | 539 | |
540 | - } |
|
540 | + } |
|
541 | 541 | |
542 | - return $subscription_groups; |
|
542 | + return $subscription_groups; |
|
543 | 543 | } |
544 | 544 | |
545 | 545 | /** |
@@ -553,57 +553,57 @@ discard block |
||
553 | 553 | */ |
554 | 554 | function getpaid_calculate_subscription_totals( $invoice ) { |
555 | 555 | |
556 | - // Generate subscription groups. |
|
557 | - $subscription_groups = getpaid_get_subscription_groups( $invoice ); |
|
556 | + // Generate subscription groups. |
|
557 | + $subscription_groups = getpaid_get_subscription_groups( $invoice ); |
|
558 | 558 | |
559 | - // Now let's calculate the totals for each group of subscriptions |
|
560 | - $subscription_totals = array(); |
|
559 | + // Now let's calculate the totals for each group of subscriptions |
|
560 | + $subscription_totals = array(); |
|
561 | 561 | |
562 | - foreach ( $subscription_groups as $subscription_key => $items ) { |
|
562 | + foreach ( $subscription_groups as $subscription_key => $items ) { |
|
563 | 563 | |
564 | - if ( empty( $subscription_totals[ $subscription_key ] ) ) { |
|
564 | + if ( empty( $subscription_totals[ $subscription_key ] ) ) { |
|
565 | 565 | |
566 | - $subscription_totals[ $subscription_key ] = array( |
|
567 | - 'initial_total' => 0, |
|
568 | - 'recurring_total' => 0, |
|
569 | - 'items' => array(), |
|
570 | - 'trialling' => false, |
|
571 | - ); |
|
566 | + $subscription_totals[ $subscription_key ] = array( |
|
567 | + 'initial_total' => 0, |
|
568 | + 'recurring_total' => 0, |
|
569 | + 'items' => array(), |
|
570 | + 'trialling' => false, |
|
571 | + ); |
|
572 | 572 | |
573 | - } |
|
573 | + } |
|
574 | 574 | |
575 | - /** |
|
576 | - * Get the totals of the group. |
|
577 | - * @var GetPaid_Form_Item $item |
|
578 | - */ |
|
579 | - foreach ( $items as $item ) { |
|
575 | + /** |
|
576 | + * Get the totals of the group. |
|
577 | + * @var GetPaid_Form_Item $item |
|
578 | + */ |
|
579 | + foreach ( $items as $item ) { |
|
580 | 580 | |
581 | - $subscription_totals[ $subscription_key ]['items'][$item->get_id()] = $item->prepare_data_for_saving(); |
|
582 | - $subscription_totals[ $subscription_key ]['item_id'] = $item->get_id(); |
|
583 | - $subscription_totals[ $subscription_key ]['period'] = $item->get_recurring_period( true ); |
|
584 | - $subscription_totals[ $subscription_key ]['interval'] = $item->get_recurring_interval(); |
|
585 | - $subscription_totals[ $subscription_key ]['initial_total'] += $item->get_sub_total() + $item->item_tax - $item->item_discount; |
|
586 | - $subscription_totals[ $subscription_key ]['recurring_total'] += $item->get_recurring_sub_total() + $item->item_tax - $item->recurring_item_discount; |
|
587 | - $subscription_totals[ $subscription_key ]['recurring_limit'] = $item->get_recurring_limit(); |
|
581 | + $subscription_totals[ $subscription_key ]['items'][$item->get_id()] = $item->prepare_data_for_saving(); |
|
582 | + $subscription_totals[ $subscription_key ]['item_id'] = $item->get_id(); |
|
583 | + $subscription_totals[ $subscription_key ]['period'] = $item->get_recurring_period( true ); |
|
584 | + $subscription_totals[ $subscription_key ]['interval'] = $item->get_recurring_interval(); |
|
585 | + $subscription_totals[ $subscription_key ]['initial_total'] += $item->get_sub_total() + $item->item_tax - $item->item_discount; |
|
586 | + $subscription_totals[ $subscription_key ]['recurring_total'] += $item->get_recurring_sub_total() + $item->item_tax - $item->recurring_item_discount; |
|
587 | + $subscription_totals[ $subscription_key ]['recurring_limit'] = $item->get_recurring_limit(); |
|
588 | 588 | |
589 | - // Calculate the next renewal date. |
|
590 | - $period = $item->get_recurring_period( true ); |
|
591 | - $interval = $item->get_recurring_interval(); |
|
589 | + // Calculate the next renewal date. |
|
590 | + $period = $item->get_recurring_period( true ); |
|
591 | + $interval = $item->get_recurring_interval(); |
|
592 | 592 | |
593 | - // If the subscription item has a trial period... |
|
594 | - if ( $item->has_free_trial() ) { |
|
595 | - $period = $item->get_trial_period( true ); |
|
596 | - $interval = $item->get_trial_interval(); |
|
597 | - $subscription_totals[ $subscription_key ]['trialling'] = $interval . ' ' . $period; |
|
598 | - } |
|
593 | + // If the subscription item has a trial period... |
|
594 | + if ( $item->has_free_trial() ) { |
|
595 | + $period = $item->get_trial_period( true ); |
|
596 | + $interval = $item->get_trial_interval(); |
|
597 | + $subscription_totals[ $subscription_key ]['trialling'] = $interval . ' ' . $period; |
|
598 | + } |
|
599 | 599 | |
600 | - $subscription_totals[ $subscription_key ]['renews_on'] = date( 'Y-m-d H:i:s', strtotime( "+$interval $period", current_time( 'timestamp' ) ) ); |
|
600 | + $subscription_totals[ $subscription_key ]['renews_on'] = date( 'Y-m-d H:i:s', strtotime( "+$interval $period", current_time( 'timestamp' ) ) ); |
|
601 | 601 | |
602 | - } |
|
602 | + } |
|
603 | 603 | |
604 | - } |
|
604 | + } |
|
605 | 605 | |
606 | - return apply_filters( 'getpaid_calculate_subscription_totals', $subscription_totals, $invoice ); |
|
606 | + return apply_filters( 'getpaid_calculate_subscription_totals', $subscription_totals, $invoice ); |
|
607 | 607 | } |
608 | 608 | |
609 | 609 | /** |
@@ -614,17 +614,17 @@ discard block |
||
614 | 614 | */ |
615 | 615 | function getpaid_should_group_subscriptions( $invoice ) { |
616 | 616 | |
617 | - $recurring_items = 0; |
|
617 | + $recurring_items = 0; |
|
618 | 618 | |
619 | - foreach ( $invoice->get_items() as $item ) { |
|
619 | + foreach ( $invoice->get_items() as $item ) { |
|
620 | 620 | |
621 | - if ( $item->is_recurring() ) { |
|
622 | - $recurring_items ++; |
|
623 | - } |
|
621 | + if ( $item->is_recurring() ) { |
|
622 | + $recurring_items ++; |
|
623 | + } |
|
624 | 624 | |
625 | - } |
|
625 | + } |
|
626 | 626 | |
627 | - return apply_filters( 'getpaid_should_group_subscriptions', $recurring_items > 1, $invoice ); |
|
627 | + return apply_filters( 'getpaid_should_group_subscriptions', $recurring_items > 1, $invoice ); |
|
628 | 628 | } |
629 | 629 | |
630 | 630 | /** |
@@ -635,40 +635,40 @@ discard block |
||
635 | 635 | * @return int |
636 | 636 | */ |
637 | 637 | function getpaid_count_subscription_invoices( $parent_invoice_id, $subscription_id = false ) { |
638 | - global $wpdb; |
|
638 | + global $wpdb; |
|
639 | 639 | |
640 | - $parent_invoice_id = (int) $parent_invoice_id; |
|
640 | + $parent_invoice_id = (int) $parent_invoice_id; |
|
641 | 641 | |
642 | - if ( false === $subscription_id || ! (bool) get_post_meta( $parent_invoice_id, '_wpinv_subscription_id', true ) ) { |
|
642 | + if ( false === $subscription_id || ! (bool) get_post_meta( $parent_invoice_id, '_wpinv_subscription_id', true ) ) { |
|
643 | 643 | |
644 | - return (int) $wpdb->get_var( |
|
645 | - $wpdb->prepare( |
|
646 | - "SELECT COUNT(ID) FROM $wpdb->posts WHERE ( post_parent=%d OR ID=%d ) AND post_status IN ( 'publish', 'wpi-processing', 'wpi-renewal' )", |
|
647 | - $parent_invoice_id, |
|
648 | - $parent_invoice_id |
|
649 | - ) |
|
650 | - ); |
|
644 | + return (int) $wpdb->get_var( |
|
645 | + $wpdb->prepare( |
|
646 | + "SELECT COUNT(ID) FROM $wpdb->posts WHERE ( post_parent=%d OR ID=%d ) AND post_status IN ( 'publish', 'wpi-processing', 'wpi-renewal' )", |
|
647 | + $parent_invoice_id, |
|
648 | + $parent_invoice_id |
|
649 | + ) |
|
650 | + ); |
|
651 | 651 | |
652 | - } |
|
652 | + } |
|
653 | 653 | |
654 | - $invoice_ids = $wpdb->get_col( |
|
655 | - $wpdb->prepare( |
|
656 | - "SELECT ID FROM $wpdb->posts WHERE ( post_parent=%d OR ID=%d ) AND post_status IN ( 'publish', 'wpi-processing', 'wpi-renewal' )", |
|
657 | - $parent_invoice_id, |
|
658 | - $parent_invoice_id |
|
659 | - ) |
|
660 | - ); |
|
654 | + $invoice_ids = $wpdb->get_col( |
|
655 | + $wpdb->prepare( |
|
656 | + "SELECT ID FROM $wpdb->posts WHERE ( post_parent=%d OR ID=%d ) AND post_status IN ( 'publish', 'wpi-processing', 'wpi-renewal' )", |
|
657 | + $parent_invoice_id, |
|
658 | + $parent_invoice_id |
|
659 | + ) |
|
660 | + ); |
|
661 | 661 | |
662 | - $count = 0; |
|
662 | + $count = 0; |
|
663 | 663 | |
664 | - foreach ( wp_parse_id_list( $invoice_ids ) as $invoice_id ) { |
|
664 | + foreach ( wp_parse_id_list( $invoice_ids ) as $invoice_id ) { |
|
665 | 665 | |
666 | - if ( $invoice_id == $parent_invoice_id || $subscription_id == (int) get_post_meta( $invoice_id, '_wpinv_subscription_id', true ) ) { |
|
667 | - $count ++; |
|
668 | - continue; |
|
669 | - } |
|
666 | + if ( $invoice_id == $parent_invoice_id || $subscription_id == (int) get_post_meta( $invoice_id, '_wpinv_subscription_id', true ) ) { |
|
667 | + $count ++; |
|
668 | + continue; |
|
669 | + } |
|
670 | 670 | |
671 | - } |
|
671 | + } |
|
672 | 672 | |
673 | - return $count; |
|
673 | + return $count; |
|
674 | 674 | } |
@@ -13,18 +13,18 @@ discard block |
||
13 | 13 | * @return WPInv_Subscription[]|WPInv_Subscription|false |
14 | 14 | * @since 2.3.0 |
15 | 15 | */ |
16 | -function getpaid_get_invoice_subscriptions( $invoice ) { |
|
16 | +function getpaid_get_invoice_subscriptions($invoice) { |
|
17 | 17 | |
18 | 18 | // Retrieve subscription groups. |
19 | - $subscription_ids = wp_list_pluck( getpaid_get_invoice_subscription_groups( $invoice->get_id() ), 'subscription_id' ); |
|
19 | + $subscription_ids = wp_list_pluck(getpaid_get_invoice_subscription_groups($invoice->get_id()), 'subscription_id'); |
|
20 | 20 | |
21 | 21 | // No subscription groups, normal subscription. |
22 | - if ( empty( $subscription_ids ) ) { |
|
23 | - return getpaid_subscriptions()->get_invoice_subscription( $invoice ); |
|
22 | + if (empty($subscription_ids)) { |
|
23 | + return getpaid_subscriptions()->get_invoice_subscription($invoice); |
|
24 | 24 | } |
25 | 25 | |
26 | 26 | // Subscription groups. |
27 | - return array_filter( array_map( 'getpaid_get_subscription', $subscription_ids ) ); |
|
27 | + return array_filter(array_map('getpaid_get_subscription', $subscription_ids)); |
|
28 | 28 | |
29 | 29 | } |
30 | 30 | |
@@ -35,9 +35,9 @@ discard block |
||
35 | 35 | * @return array |
36 | 36 | * @since 2.3.0 |
37 | 37 | */ |
38 | -function getpaid_get_invoice_subscription_groups( $invoice_id ) { |
|
39 | - $subscription_groups = get_post_meta( $invoice_id, 'getpaid_subscription_groups', true ); |
|
40 | - return empty( $subscription_groups ) ? array() : $subscription_groups; |
|
38 | +function getpaid_get_invoice_subscription_groups($invoice_id) { |
|
39 | + $subscription_groups = get_post_meta($invoice_id, 'getpaid_subscription_groups', true); |
|
40 | + return empty($subscription_groups) ? array() : $subscription_groups; |
|
41 | 41 | } |
42 | 42 | |
43 | 43 | /** |
@@ -48,10 +48,10 @@ discard block |
||
48 | 48 | * @return array|false |
49 | 49 | * @since 2.3.0 |
50 | 50 | */ |
51 | -function getpaid_get_invoice_subscription_group( $invoice_id, $subscription_id ) { |
|
52 | - $subscription_groups = getpaid_get_invoice_subscription_groups( $invoice_id ); |
|
53 | - $matching_group = wp_list_filter( $subscription_groups, compact( 'subscription_id' ) ); |
|
54 | - return reset( $matching_group ); |
|
51 | +function getpaid_get_invoice_subscription_group($invoice_id, $subscription_id) { |
|
52 | + $subscription_groups = getpaid_get_invoice_subscription_groups($invoice_id); |
|
53 | + $matching_group = wp_list_filter($subscription_groups, compact('subscription_id')); |
|
54 | + return reset($matching_group); |
|
55 | 55 | } |
56 | 56 | |
57 | 57 | /** |
@@ -61,10 +61,10 @@ discard block |
||
61 | 61 | * @since 2.3.0 |
62 | 62 | * @return WPInv_Subscription|false |
63 | 63 | */ |
64 | -function getpaid_get_subscription( $subscription ) { |
|
64 | +function getpaid_get_subscription($subscription) { |
|
65 | 65 | |
66 | - if ( ! is_a( $subscription, 'WPInv_Subscription' ) ) { |
|
67 | - $subscription = new WPInv_Subscription( $subscription ); |
|
66 | + if (!is_a($subscription, 'WPInv_Subscription')) { |
|
67 | + $subscription = new WPInv_Subscription($subscription); |
|
68 | 68 | } |
69 | 69 | |
70 | 70 | return $subscription->exists() ? $subscription : false; |
@@ -79,26 +79,26 @@ discard block |
||
79 | 79 | * |
80 | 80 | * @return int|array|WPInv_Subscription[]|GetPaid_Subscriptions_Query |
81 | 81 | */ |
82 | -function getpaid_get_subscriptions( $args = array(), $return = 'results' ) { |
|
82 | +function getpaid_get_subscriptions($args = array(), $return = 'results') { |
|
83 | 83 | |
84 | 84 | // Do not retrieve all fields if we just want the count. |
85 | - if ( 'count' == $return ) { |
|
85 | + if ('count' == $return) { |
|
86 | 86 | $args['fields'] = 'id'; |
87 | 87 | $args['number'] = 1; |
88 | 88 | } |
89 | 89 | |
90 | 90 | // Do not count all matches if we just want the results. |
91 | - if ( 'results' == $return ) { |
|
91 | + if ('results' == $return) { |
|
92 | 92 | $args['count_total'] = false; |
93 | 93 | } |
94 | 94 | |
95 | - $query = new GetPaid_Subscriptions_Query( $args ); |
|
95 | + $query = new GetPaid_Subscriptions_Query($args); |
|
96 | 96 | |
97 | - if ( 'results' == $return ) { |
|
97 | + if ('results' == $return) { |
|
98 | 98 | return $query->get_results(); |
99 | 99 | } |
100 | 100 | |
101 | - if ( 'count' == $return ) { |
|
101 | + if ('count' == $return) { |
|
102 | 102 | return $query->get_total(); |
103 | 103 | } |
104 | 104 | |
@@ -115,13 +115,13 @@ discard block |
||
115 | 115 | return apply_filters( |
116 | 116 | 'getpaid_get_subscription_statuses', |
117 | 117 | array( |
118 | - 'pending' => __( 'Pending', 'invoicing' ), |
|
119 | - 'trialling' => __( 'Trialing', 'invoicing' ), |
|
120 | - 'active' => __( 'Active', 'invoicing' ), |
|
121 | - 'failing' => __( 'Failing', 'invoicing' ), |
|
122 | - 'expired' => __( 'Expired', 'invoicing' ), |
|
123 | - 'completed' => __( 'Complete', 'invoicing' ), |
|
124 | - 'cancelled' => __( 'Cancelled', 'invoicing' ), |
|
118 | + 'pending' => __('Pending', 'invoicing'), |
|
119 | + 'trialling' => __('Trialing', 'invoicing'), |
|
120 | + 'active' => __('Active', 'invoicing'), |
|
121 | + 'failing' => __('Failing', 'invoicing'), |
|
122 | + 'expired' => __('Expired', 'invoicing'), |
|
123 | + 'completed' => __('Complete', 'invoicing'), |
|
124 | + 'cancelled' => __('Cancelled', 'invoicing'), |
|
125 | 125 | ) |
126 | 126 | ); |
127 | 127 | |
@@ -132,9 +132,9 @@ discard block |
||
132 | 132 | * |
133 | 133 | * @return string |
134 | 134 | */ |
135 | -function getpaid_get_subscription_status_label( $status ) { |
|
135 | +function getpaid_get_subscription_status_label($status) { |
|
136 | 136 | $statuses = getpaid_get_subscription_statuses(); |
137 | - return isset( $statuses[ $status ] ) ? $statuses[ $status ] : ucfirst( sanitize_text_field( $status ) ); |
|
137 | + return isset($statuses[$status]) ? $statuses[$status] : ucfirst(sanitize_text_field($status)); |
|
138 | 138 | } |
139 | 139 | |
140 | 140 | /** |
@@ -164,14 +164,14 @@ discard block |
||
164 | 164 | * |
165 | 165 | * @return array |
166 | 166 | */ |
167 | -function getpaid_get_subscription_status_counts( $args = array() ) { |
|
167 | +function getpaid_get_subscription_status_counts($args = array()) { |
|
168 | 168 | |
169 | - $statuses = array_keys( getpaid_get_subscription_statuses() ); |
|
169 | + $statuses = array_keys(getpaid_get_subscription_statuses()); |
|
170 | 170 | $counts = array(); |
171 | 171 | |
172 | - foreach ( $statuses as $status ) { |
|
173 | - $_args = wp_parse_args( "status=$status", $args ); |
|
174 | - $counts[ $status ] = getpaid_get_subscriptions( $_args, 'count' ); |
|
172 | + foreach ($statuses as $status) { |
|
173 | + $_args = wp_parse_args("status=$status", $args); |
|
174 | + $counts[$status] = getpaid_get_subscriptions($_args, 'count'); |
|
175 | 175 | } |
176 | 176 | |
177 | 177 | return $counts; |
@@ -190,23 +190,23 @@ discard block |
||
190 | 190 | array( |
191 | 191 | |
192 | 192 | 'day' => array( |
193 | - 'singular' => __( '%s day', 'invoicing' ), |
|
194 | - 'plural' => __( '%d days', 'invoicing' ), |
|
193 | + 'singular' => __('%s day', 'invoicing'), |
|
194 | + 'plural' => __('%d days', 'invoicing'), |
|
195 | 195 | ), |
196 | 196 | |
197 | 197 | 'week' => array( |
198 | - 'singular' => __( '%s week', 'invoicing' ), |
|
199 | - 'plural' => __( '%d weeks', 'invoicing' ), |
|
198 | + 'singular' => __('%s week', 'invoicing'), |
|
199 | + 'plural' => __('%d weeks', 'invoicing'), |
|
200 | 200 | ), |
201 | 201 | |
202 | 202 | 'month' => array( |
203 | - 'singular' => __( '%s month', 'invoicing' ), |
|
204 | - 'plural' => __( '%d months', 'invoicing' ), |
|
203 | + 'singular' => __('%s month', 'invoicing'), |
|
204 | + 'plural' => __('%d months', 'invoicing'), |
|
205 | 205 | ), |
206 | 206 | |
207 | 207 | 'year' => array( |
208 | - 'singular' => __( '%s year', 'invoicing' ), |
|
209 | - 'plural' => __( '%d years', 'invoicing' ), |
|
208 | + 'singular' => __('%s year', 'invoicing'), |
|
209 | + 'plural' => __('%d years', 'invoicing'), |
|
210 | 210 | ), |
211 | 211 | |
212 | 212 | ) |
@@ -220,8 +220,8 @@ discard block |
||
220 | 220 | * @param string $trial_period |
221 | 221 | * @return int |
222 | 222 | */ |
223 | -function getpaid_get_subscription_trial_period_interval( $trial_period ) { |
|
224 | - return (int) preg_replace( '/[^0-9]/', '', $trial_period ); |
|
223 | +function getpaid_get_subscription_trial_period_interval($trial_period) { |
|
224 | + return (int) preg_replace('/[^0-9]/', '', $trial_period); |
|
225 | 225 | } |
226 | 226 | |
227 | 227 | /** |
@@ -230,8 +230,8 @@ discard block |
||
230 | 230 | * @param string $trial_period |
231 | 231 | * @return string |
232 | 232 | */ |
233 | -function getpaid_get_subscription_trial_period_period( $trial_period ) { |
|
234 | - return preg_replace( '/[^a-z]/', '', strtolower( $trial_period ) ); |
|
233 | +function getpaid_get_subscription_trial_period_period($trial_period) { |
|
234 | + return preg_replace('/[^a-z]/', '', strtolower($trial_period)); |
|
235 | 235 | } |
236 | 236 | |
237 | 237 | /** |
@@ -241,9 +241,9 @@ discard block |
||
241 | 241 | * @param int $interval |
242 | 242 | * @return string |
243 | 243 | */ |
244 | -function getpaid_get_subscription_period_label( $period, $interval = 1, $singular_prefix = '1' ) { |
|
245 | - $label = (int) $interval > 1 ? getpaid_get_plural_subscription_period_label( $period, $interval ) : getpaid_get_singular_subscription_period_label( $period, $singular_prefix ); |
|
246 | - return strtolower( sanitize_text_field( $label ) ); |
|
244 | +function getpaid_get_subscription_period_label($period, $interval = 1, $singular_prefix = '1') { |
|
245 | + $label = (int) $interval > 1 ? getpaid_get_plural_subscription_period_label($period, $interval) : getpaid_get_singular_subscription_period_label($period, $singular_prefix); |
|
246 | + return strtolower(sanitize_text_field($label)); |
|
247 | 247 | } |
248 | 248 | |
249 | 249 | /** |
@@ -252,19 +252,19 @@ discard block |
||
252 | 252 | * @param string $period |
253 | 253 | * @return string |
254 | 254 | */ |
255 | -function getpaid_get_singular_subscription_period_label( $period, $singular_prefix = '1' ) { |
|
255 | +function getpaid_get_singular_subscription_period_label($period, $singular_prefix = '1') { |
|
256 | 256 | |
257 | 257 | $periods = getpaid_get_subscription_periods(); |
258 | - $period = strtolower( $period ); |
|
258 | + $period = strtolower($period); |
|
259 | 259 | |
260 | - if ( isset( $periods[ $period ] ) ) { |
|
261 | - return sprintf( $periods[ $period ]['singular'], $singular_prefix ); |
|
260 | + if (isset($periods[$period])) { |
|
261 | + return sprintf($periods[$period]['singular'], $singular_prefix); |
|
262 | 262 | } |
263 | 263 | |
264 | 264 | // Backwards compatibility. |
265 | - foreach ( $periods as $key => $data ) { |
|
266 | - if ( strpos( $key, $period ) === 0 ) { |
|
267 | - return sprintf( $data['singular'], $singular_prefix ); |
|
265 | + foreach ($periods as $key => $data) { |
|
266 | + if (strpos($key, $period) === 0) { |
|
267 | + return sprintf($data['singular'], $singular_prefix); |
|
268 | 268 | } |
269 | 269 | } |
270 | 270 | |
@@ -279,19 +279,19 @@ discard block |
||
279 | 279 | * @param int $interval |
280 | 280 | * @return string |
281 | 281 | */ |
282 | -function getpaid_get_plural_subscription_period_label( $period, $interval ) { |
|
282 | +function getpaid_get_plural_subscription_period_label($period, $interval) { |
|
283 | 283 | |
284 | 284 | $periods = getpaid_get_subscription_periods(); |
285 | - $period = strtolower( $period ); |
|
285 | + $period = strtolower($period); |
|
286 | 286 | |
287 | - if ( isset( $periods[ $period ] ) ) { |
|
288 | - return sprintf( $periods[ $period ]['plural'], $interval ); |
|
287 | + if (isset($periods[$period])) { |
|
288 | + return sprintf($periods[$period]['plural'], $interval); |
|
289 | 289 | } |
290 | 290 | |
291 | 291 | // Backwards compatibility. |
292 | - foreach ( $periods as $key => $data ) { |
|
293 | - if ( strpos( $key, $period ) === 0 ) { |
|
294 | - return sprintf( $data['plural'], $interval ); |
|
292 | + foreach ($periods as $key => $data) { |
|
293 | + if (strpos($key, $period) === 0) { |
|
294 | + return sprintf($data['plural'], $interval); |
|
295 | 295 | } |
296 | 296 | } |
297 | 297 | |
@@ -305,32 +305,32 @@ discard block |
||
305 | 305 | * @param WPInv_Subscription $subscription |
306 | 306 | * @return string |
307 | 307 | */ |
308 | -function getpaid_get_formatted_subscription_amount( $subscription ) { |
|
308 | +function getpaid_get_formatted_subscription_amount($subscription) { |
|
309 | 309 | |
310 | - $initial = wpinv_price( $subscription->get_initial_amount(), $subscription->get_parent_payment()->get_currency() ); |
|
311 | - $recurring = wpinv_price( $subscription->get_recurring_amount(), $subscription->get_parent_payment()->get_currency() ); |
|
312 | - $period = getpaid_get_subscription_period_label( $subscription->get_period(), $subscription->get_frequency(), '' ); |
|
310 | + $initial = wpinv_price($subscription->get_initial_amount(), $subscription->get_parent_payment()->get_currency()); |
|
311 | + $recurring = wpinv_price($subscription->get_recurring_amount(), $subscription->get_parent_payment()->get_currency()); |
|
312 | + $period = getpaid_get_subscription_period_label($subscription->get_period(), $subscription->get_frequency(), ''); |
|
313 | 313 | $bill_times = $subscription->get_bill_times(); |
314 | 314 | |
315 | - if ( ! empty( $bill_times ) ) { |
|
315 | + if (!empty($bill_times)) { |
|
316 | 316 | $bill_times = $subscription->get_frequency() * $bill_times; |
317 | - $bill_times = getpaid_get_subscription_period_label( $subscription->get_period(), $bill_times ); |
|
317 | + $bill_times = getpaid_get_subscription_period_label($subscription->get_period(), $bill_times); |
|
318 | 318 | } |
319 | 319 | |
320 | 320 | // Trial periods. |
321 | - if ( $subscription->has_trial_period() ) { |
|
321 | + if ($subscription->has_trial_period()) { |
|
322 | 322 | |
323 | - $trial_period = getpaid_get_subscription_trial_period_period( $subscription->get_trial_period() ); |
|
324 | - $trial_interval = getpaid_get_subscription_trial_period_interval( $subscription->get_trial_period() ); |
|
323 | + $trial_period = getpaid_get_subscription_trial_period_period($subscription->get_trial_period()); |
|
324 | + $trial_interval = getpaid_get_subscription_trial_period_interval($subscription->get_trial_period()); |
|
325 | 325 | |
326 | - if ( empty( $bill_times ) ) { |
|
326 | + if (empty($bill_times)) { |
|
327 | 327 | |
328 | 328 | return sprintf( |
329 | 329 | |
330 | 330 | // translators: $1: is the initial amount, $2: is the trial period, $3: is the recurring amount, $4: is the recurring period |
331 | - _x( '%1$s trial for %2$s then %3$s / %4$s', 'Subscription amount. (e.g.: $10 trial for 1 month then $120 / year)', 'invoicing' ), |
|
331 | + _x('%1$s trial for %2$s then %3$s / %4$s', 'Subscription amount. (e.g.: $10 trial for 1 month then $120 / year)', 'invoicing'), |
|
332 | 332 | $initial, |
333 | - getpaid_get_subscription_period_label( $trial_period, $trial_interval ), |
|
333 | + getpaid_get_subscription_period_label($trial_period, $trial_interval), |
|
334 | 334 | $recurring, |
335 | 335 | $period |
336 | 336 | |
@@ -341,9 +341,9 @@ discard block |
||
341 | 341 | return sprintf( |
342 | 342 | |
343 | 343 | // translators: $1: is the initial amount, $2: is the trial period, $3: is the recurring amount, $4: is the recurring period, $5: is the bill times |
344 | - _x( '%1$s trial for %2$s then %3$s / %4$s for %5$s', 'Subscription amount. (e.g.: $10 trial for 1 month then $120 / year for 4 years)', 'invoicing' ), |
|
344 | + _x('%1$s trial for %2$s then %3$s / %4$s for %5$s', 'Subscription amount. (e.g.: $10 trial for 1 month then $120 / year for 4 years)', 'invoicing'), |
|
345 | 345 | $initial, |
346 | - getpaid_get_subscription_period_label( $trial_period, $trial_interval ), |
|
346 | + getpaid_get_subscription_period_label($trial_period, $trial_interval), |
|
347 | 347 | $recurring, |
348 | 348 | $period, |
349 | 349 | $bill_times |
@@ -351,14 +351,14 @@ discard block |
||
351 | 351 | |
352 | 352 | } |
353 | 353 | |
354 | - if ( $initial != $recurring ) { |
|
354 | + if ($initial != $recurring) { |
|
355 | 355 | |
356 | - if ( empty( $bill_times ) ) { |
|
356 | + if (empty($bill_times)) { |
|
357 | 357 | |
358 | 358 | return sprintf( |
359 | 359 | |
360 | 360 | // translators: $1: is the initial amount, $2: is the recurring amount, $3: is the recurring period |
361 | - _x( 'Initial payment of %1$s which renews at %2$s / %3$s', 'Subscription amount. (e.g.:Initial payment of $100 which renews at $120 / year)', 'invoicing' ), |
|
361 | + _x('Initial payment of %1$s which renews at %2$s / %3$s', 'Subscription amount. (e.g.:Initial payment of $100 which renews at $120 / year)', 'invoicing'), |
|
362 | 362 | $initial, |
363 | 363 | $recurring, |
364 | 364 | $period |
@@ -370,7 +370,7 @@ discard block |
||
370 | 370 | return sprintf( |
371 | 371 | |
372 | 372 | // translators: $1: is the initial amount, $2: is the recurring amount, $3: is the recurring period, $4: is the bill times |
373 | - _x( 'Initial payment of %1$s which renews at %2$s / %3$s for %4$s', 'Subscription amount. (e.g.:Initial payment of $100 which renews at $120 / year for 5 years)', 'invoicing' ), |
|
373 | + _x('Initial payment of %1$s which renews at %2$s / %3$s for %4$s', 'Subscription amount. (e.g.:Initial payment of $100 which renews at $120 / year for 5 years)', 'invoicing'), |
|
374 | 374 | $initial, |
375 | 375 | $recurring, |
376 | 376 | $period, |
@@ -380,12 +380,12 @@ discard block |
||
380 | 380 | |
381 | 381 | } |
382 | 382 | |
383 | - if ( empty( $bill_times ) ) { |
|
383 | + if (empty($bill_times)) { |
|
384 | 384 | |
385 | 385 | return sprintf( |
386 | 386 | |
387 | 387 | // translators: $1: is the recurring amount, $2: is the recurring period |
388 | - _x( '%1$s / %2$s', 'Subscription amount. (e.g.: $120 / year)', 'invoicing' ), |
|
388 | + _x('%1$s / %2$s', 'Subscription amount. (e.g.: $120 / year)', 'invoicing'), |
|
389 | 389 | $initial, |
390 | 390 | $period |
391 | 391 | |
@@ -396,7 +396,7 @@ discard block |
||
396 | 396 | return sprintf( |
397 | 397 | |
398 | 398 | // translators: $1: is the bill times, $2: is the recurring amount, $3: is the recurring period |
399 | - _x( '%2$s / %3$s for %1$s', 'Subscription amount. (e.g.: $120 / year for 5 years)', 'invoicing' ), |
|
399 | + _x('%2$s / %3$s for %1$s', 'Subscription amount. (e.g.: $120 / year for 5 years)', 'invoicing'), |
|
400 | 400 | $bill_times, |
401 | 401 | $initial, |
402 | 402 | $period |
@@ -411,8 +411,8 @@ discard block |
||
411 | 411 | * @param WPInv_Invoice $invoice |
412 | 412 | * @return WPInv_Subscription|false |
413 | 413 | */ |
414 | -function getpaid_get_invoice_subscription( $invoice ) { |
|
415 | - return getpaid_subscriptions()->get_invoice_subscription( $invoice ); |
|
414 | +function getpaid_get_invoice_subscription($invoice) { |
|
415 | + return getpaid_subscriptions()->get_invoice_subscription($invoice); |
|
416 | 416 | } |
417 | 417 | |
418 | 418 | /** |
@@ -420,9 +420,9 @@ discard block |
||
420 | 420 | * |
421 | 421 | * @param WPInv_Invoice $invoice |
422 | 422 | */ |
423 | -function getpaid_activate_invoice_subscription( $invoice ) { |
|
424 | - $subscription = getpaid_get_invoice_subscription( $invoice ); |
|
425 | - if ( is_a( $subscription, 'WPInv_Subscription' ) ) { |
|
423 | +function getpaid_activate_invoice_subscription($invoice) { |
|
424 | + $subscription = getpaid_get_invoice_subscription($invoice); |
|
425 | + if (is_a($subscription, 'WPInv_Subscription')) { |
|
426 | 426 | $subscription->activate(); |
427 | 427 | } |
428 | 428 | } |
@@ -433,7 +433,7 @@ discard block |
||
433 | 433 | * @return WPInv_Subscriptions |
434 | 434 | */ |
435 | 435 | function getpaid_subscriptions() { |
436 | - return getpaid()->get( 'subscriptions' ); |
|
436 | + return getpaid()->get('subscriptions'); |
|
437 | 437 | } |
438 | 438 | |
439 | 439 | /** |
@@ -442,13 +442,13 @@ discard block |
||
442 | 442 | * @since 2.3.0 |
443 | 443 | * @return WPInv_Subscription|bool |
444 | 444 | */ |
445 | -function wpinv_get_invoice_subscription( $invoice ) { |
|
445 | +function wpinv_get_invoice_subscription($invoice) { |
|
446 | 446 | |
447 | 447 | // Retrieve the invoice. |
448 | - $invoice = new WPInv_Invoice( $invoice ); |
|
448 | + $invoice = new WPInv_Invoice($invoice); |
|
449 | 449 | |
450 | 450 | // Ensure it is a recurring invoice. |
451 | - if ( ! $invoice->is_recurring() ) { |
|
451 | + if (!$invoice->is_recurring()) { |
|
452 | 452 | return false; |
453 | 453 | } |
454 | 454 | |
@@ -460,7 +460,7 @@ discard block |
||
460 | 460 | ) |
461 | 461 | ); |
462 | 462 | |
463 | - return empty( $subscription ) ? false : $subscription[0]; |
|
463 | + return empty($subscription) ? false : $subscription[0]; |
|
464 | 464 | |
465 | 465 | } |
466 | 466 | |
@@ -475,50 +475,50 @@ discard block |
||
475 | 475 | * @param GetPaid_Form_Item|WPInv_Item $cart_item |
476 | 476 | * @return string |
477 | 477 | */ |
478 | -function getpaid_get_recurring_item_key( $cart_item ) { |
|
478 | +function getpaid_get_recurring_item_key($cart_item) { |
|
479 | 479 | |
480 | 480 | $cart_key = 'renews_'; |
481 | 481 | $interval = $cart_item->get_recurring_interval(); |
482 | - $period = $cart_item->get_recurring_period( true ); |
|
482 | + $period = $cart_item->get_recurring_period(true); |
|
483 | 483 | $length = $cart_item->get_recurring_limit() * $interval; |
484 | - $trial_period = $cart_item->get_trial_period( true ); |
|
484 | + $trial_period = $cart_item->get_trial_period(true); |
|
485 | 485 | $trial_length = $cart_item->get_trial_interval(); |
486 | 486 | |
487 | 487 | // First start with the billing interval and period |
488 | - switch ( $interval ) { |
|
488 | + switch ($interval) { |
|
489 | 489 | case 1 : |
490 | - if ( 'day' == $period ) { |
|
490 | + if ('day' == $period) { |
|
491 | 491 | $cart_key .= 'daily'; |
492 | 492 | } else { |
493 | - $cart_key .= sprintf( '%sly', $period ); |
|
493 | + $cart_key .= sprintf('%sly', $period); |
|
494 | 494 | } |
495 | 495 | break; |
496 | 496 | case 2 : |
497 | - $cart_key .= sprintf( 'every_2nd_%s', $period ); |
|
497 | + $cart_key .= sprintf('every_2nd_%s', $period); |
|
498 | 498 | break; |
499 | 499 | case 3 : |
500 | - $cart_key .= sprintf( 'every_3rd_%s', $period ); |
|
500 | + $cart_key .= sprintf('every_3rd_%s', $period); |
|
501 | 501 | break; |
502 | 502 | default: |
503 | - $cart_key .= sprintf( 'every_%dth_%s', $interval, $period ); |
|
503 | + $cart_key .= sprintf('every_%dth_%s', $interval, $period); |
|
504 | 504 | break; |
505 | 505 | } |
506 | 506 | |
507 | 507 | // Maybe add the optional maximum billing periods... |
508 | - if ( $length > 0 ) { |
|
508 | + if ($length > 0) { |
|
509 | 509 | $cart_key .= '_for_'; |
510 | - $cart_key .= sprintf( '%d_%s', $length, $period ); |
|
511 | - if ( $length > 1 ) { |
|
510 | + $cart_key .= sprintf('%d_%s', $length, $period); |
|
511 | + if ($length > 1) { |
|
512 | 512 | $cart_key .= 's'; |
513 | 513 | } |
514 | 514 | } |
515 | 515 | |
516 | 516 | // And an optional free trial. |
517 | - if ( $cart_item->has_free_trial() ) { |
|
518 | - $cart_key .= sprintf( '_after_a_%d_%s_trial', $trial_length, $trial_period ); |
|
517 | + if ($cart_item->has_free_trial()) { |
|
518 | + $cart_key .= sprintf('_after_a_%d_%s_trial', $trial_length, $trial_period); |
|
519 | 519 | } |
520 | 520 | |
521 | - return apply_filters( 'getpaid_get_recurring_item_key', $cart_key, $cart_item ); |
|
521 | + return apply_filters('getpaid_get_recurring_item_key', $cart_key, $cart_item); |
|
522 | 522 | } |
523 | 523 | |
524 | 524 | /** |
@@ -527,14 +527,14 @@ discard block |
||
527 | 527 | * @param WPInv_Invoice|GetPaid_Payment_Form_Submission|GetPaid_Payment_Form $invoice |
528 | 528 | * @return array |
529 | 529 | */ |
530 | -function getpaid_get_subscription_groups( $invoice ) { |
|
530 | +function getpaid_get_subscription_groups($invoice) { |
|
531 | 531 | |
532 | 532 | // Generate subscription groups. |
533 | 533 | $subscription_groups = array(); |
534 | - foreach ( $invoice->get_items() as $item ) { |
|
534 | + foreach ($invoice->get_items() as $item) { |
|
535 | 535 | |
536 | - if ( $item->is_recurring() ) { |
|
537 | - $subscription_groups[ getpaid_get_recurring_item_key( $item ) ][] = $item; |
|
536 | + if ($item->is_recurring()) { |
|
537 | + $subscription_groups[getpaid_get_recurring_item_key($item)][] = $item; |
|
538 | 538 | } |
539 | 539 | |
540 | 540 | } |
@@ -551,19 +551,19 @@ discard block |
||
551 | 551 | * @param WPInv_Invoice|GetPaid_Payment_Form_Submission|GetPaid_Payment_Form $invoice |
552 | 552 | * @return array |
553 | 553 | */ |
554 | -function getpaid_calculate_subscription_totals( $invoice ) { |
|
554 | +function getpaid_calculate_subscription_totals($invoice) { |
|
555 | 555 | |
556 | 556 | // Generate subscription groups. |
557 | - $subscription_groups = getpaid_get_subscription_groups( $invoice ); |
|
557 | + $subscription_groups = getpaid_get_subscription_groups($invoice); |
|
558 | 558 | |
559 | 559 | // Now let's calculate the totals for each group of subscriptions |
560 | 560 | $subscription_totals = array(); |
561 | 561 | |
562 | - foreach ( $subscription_groups as $subscription_key => $items ) { |
|
562 | + foreach ($subscription_groups as $subscription_key => $items) { |
|
563 | 563 | |
564 | - if ( empty( $subscription_totals[ $subscription_key ] ) ) { |
|
564 | + if (empty($subscription_totals[$subscription_key])) { |
|
565 | 565 | |
566 | - $subscription_totals[ $subscription_key ] = array( |
|
566 | + $subscription_totals[$subscription_key] = array( |
|
567 | 567 | 'initial_total' => 0, |
568 | 568 | 'recurring_total' => 0, |
569 | 569 | 'items' => array(), |
@@ -576,34 +576,34 @@ discard block |
||
576 | 576 | * Get the totals of the group. |
577 | 577 | * @var GetPaid_Form_Item $item |
578 | 578 | */ |
579 | - foreach ( $items as $item ) { |
|
579 | + foreach ($items as $item) { |
|
580 | 580 | |
581 | - $subscription_totals[ $subscription_key ]['items'][$item->get_id()] = $item->prepare_data_for_saving(); |
|
582 | - $subscription_totals[ $subscription_key ]['item_id'] = $item->get_id(); |
|
583 | - $subscription_totals[ $subscription_key ]['period'] = $item->get_recurring_period( true ); |
|
584 | - $subscription_totals[ $subscription_key ]['interval'] = $item->get_recurring_interval(); |
|
585 | - $subscription_totals[ $subscription_key ]['initial_total'] += $item->get_sub_total() + $item->item_tax - $item->item_discount; |
|
586 | - $subscription_totals[ $subscription_key ]['recurring_total'] += $item->get_recurring_sub_total() + $item->item_tax - $item->recurring_item_discount; |
|
587 | - $subscription_totals[ $subscription_key ]['recurring_limit'] = $item->get_recurring_limit(); |
|
581 | + $subscription_totals[$subscription_key]['items'][$item->get_id()] = $item->prepare_data_for_saving(); |
|
582 | + $subscription_totals[$subscription_key]['item_id'] = $item->get_id(); |
|
583 | + $subscription_totals[$subscription_key]['period'] = $item->get_recurring_period(true); |
|
584 | + $subscription_totals[$subscription_key]['interval'] = $item->get_recurring_interval(); |
|
585 | + $subscription_totals[$subscription_key]['initial_total'] += $item->get_sub_total() + $item->item_tax - $item->item_discount; |
|
586 | + $subscription_totals[$subscription_key]['recurring_total'] += $item->get_recurring_sub_total() + $item->item_tax - $item->recurring_item_discount; |
|
587 | + $subscription_totals[$subscription_key]['recurring_limit'] = $item->get_recurring_limit(); |
|
588 | 588 | |
589 | 589 | // Calculate the next renewal date. |
590 | - $period = $item->get_recurring_period( true ); |
|
590 | + $period = $item->get_recurring_period(true); |
|
591 | 591 | $interval = $item->get_recurring_interval(); |
592 | 592 | |
593 | 593 | // If the subscription item has a trial period... |
594 | - if ( $item->has_free_trial() ) { |
|
595 | - $period = $item->get_trial_period( true ); |
|
594 | + if ($item->has_free_trial()) { |
|
595 | + $period = $item->get_trial_period(true); |
|
596 | 596 | $interval = $item->get_trial_interval(); |
597 | - $subscription_totals[ $subscription_key ]['trialling'] = $interval . ' ' . $period; |
|
597 | + $subscription_totals[$subscription_key]['trialling'] = $interval . ' ' . $period; |
|
598 | 598 | } |
599 | 599 | |
600 | - $subscription_totals[ $subscription_key ]['renews_on'] = date( 'Y-m-d H:i:s', strtotime( "+$interval $period", current_time( 'timestamp' ) ) ); |
|
600 | + $subscription_totals[$subscription_key]['renews_on'] = date('Y-m-d H:i:s', strtotime("+$interval $period", current_time('timestamp'))); |
|
601 | 601 | |
602 | 602 | } |
603 | 603 | |
604 | 604 | } |
605 | 605 | |
606 | - return apply_filters( 'getpaid_calculate_subscription_totals', $subscription_totals, $invoice ); |
|
606 | + return apply_filters('getpaid_calculate_subscription_totals', $subscription_totals, $invoice); |
|
607 | 607 | } |
608 | 608 | |
609 | 609 | /** |
@@ -612,19 +612,19 @@ discard block |
||
612 | 612 | * @param WPInv_Invoice|GetPaid_Payment_Form_Submission|GetPaid_Payment_Form $invoice |
613 | 613 | * @return array |
614 | 614 | */ |
615 | -function getpaid_should_group_subscriptions( $invoice ) { |
|
615 | +function getpaid_should_group_subscriptions($invoice) { |
|
616 | 616 | |
617 | 617 | $recurring_items = 0; |
618 | 618 | |
619 | - foreach ( $invoice->get_items() as $item ) { |
|
619 | + foreach ($invoice->get_items() as $item) { |
|
620 | 620 | |
621 | - if ( $item->is_recurring() ) { |
|
622 | - $recurring_items ++; |
|
621 | + if ($item->is_recurring()) { |
|
622 | + $recurring_items++; |
|
623 | 623 | } |
624 | 624 | |
625 | 625 | } |
626 | 626 | |
627 | - return apply_filters( 'getpaid_should_group_subscriptions', $recurring_items > 1, $invoice ); |
|
627 | + return apply_filters('getpaid_should_group_subscriptions', $recurring_items > 1, $invoice); |
|
628 | 628 | } |
629 | 629 | |
630 | 630 | /** |
@@ -634,12 +634,12 @@ discard block |
||
634 | 634 | * @param int|false $subscription_id |
635 | 635 | * @return int |
636 | 636 | */ |
637 | -function getpaid_count_subscription_invoices( $parent_invoice_id, $subscription_id = false ) { |
|
637 | +function getpaid_count_subscription_invoices($parent_invoice_id, $subscription_id = false) { |
|
638 | 638 | global $wpdb; |
639 | 639 | |
640 | 640 | $parent_invoice_id = (int) $parent_invoice_id; |
641 | 641 | |
642 | - if ( false === $subscription_id || ! (bool) get_post_meta( $parent_invoice_id, '_wpinv_subscription_id', true ) ) { |
|
642 | + if (false === $subscription_id || !(bool) get_post_meta($parent_invoice_id, '_wpinv_subscription_id', true)) { |
|
643 | 643 | |
644 | 644 | return (int) $wpdb->get_var( |
645 | 645 | $wpdb->prepare( |
@@ -661,10 +661,10 @@ discard block |
||
661 | 661 | |
662 | 662 | $count = 0; |
663 | 663 | |
664 | - foreach ( wp_parse_id_list( $invoice_ids ) as $invoice_id ) { |
|
664 | + foreach (wp_parse_id_list($invoice_ids) as $invoice_id) { |
|
665 | 665 | |
666 | - if ( $invoice_id == $parent_invoice_id || $subscription_id == (int) get_post_meta( $invoice_id, '_wpinv_subscription_id', true ) ) { |
|
667 | - $count ++; |
|
666 | + if ($invoice_id == $parent_invoice_id || $subscription_id == (int) get_post_meta($invoice_id, '_wpinv_subscription_id', true)) { |
|
667 | + $count++; |
|
668 | 668 | continue; |
669 | 669 | } |
670 | 670 |
@@ -239,7 +239,7 @@ |
||
239 | 239 | do_action( 'getpaid_checkout_invoice_exception', $invoice ); |
240 | 240 | } |
241 | 241 | |
242 | - // Do we have any errors? |
|
242 | + // Do we have any errors? |
|
243 | 243 | if ( wpinv_get_errors() ) { |
244 | 244 | $response['data'] = getpaid_get_errors_html( true, false ); |
245 | 245 | } else { |
@@ -1,155 +1,155 @@ discard block |
||
1 | 1 | <?php |
2 | -function wpinv_is_subscription_payment( $invoice = '' ) { |
|
3 | - if ( empty( $invoice ) ) { |
|
2 | +function wpinv_is_subscription_payment($invoice = '') { |
|
3 | + if (empty($invoice)) { |
|
4 | 4 | return false; |
5 | 5 | } |
6 | 6 | |
7 | - if ( !is_object( $invoice ) && is_scalar( $invoice ) ) { |
|
8 | - $invoice = wpinv_get_invoice( $invoice ); |
|
7 | + if (!is_object($invoice) && is_scalar($invoice)) { |
|
8 | + $invoice = wpinv_get_invoice($invoice); |
|
9 | 9 | } |
10 | 10 | |
11 | - if ( empty( $invoice ) ) { |
|
11 | + if (empty($invoice)) { |
|
12 | 12 | return false; |
13 | 13 | } |
14 | 14 | |
15 | - if ( $invoice->is_renewal() ) { |
|
15 | + if ($invoice->is_renewal()) { |
|
16 | 16 | return true; |
17 | 17 | } |
18 | 18 | |
19 | 19 | return false; |
20 | 20 | } |
21 | 21 | |
22 | -function wpinv_payment_link_transaction_id( $invoice = '' ) { |
|
23 | - if ( empty( $invoice ) ) { |
|
22 | +function wpinv_payment_link_transaction_id($invoice = '') { |
|
23 | + if (empty($invoice)) { |
|
24 | 24 | return false; |
25 | 25 | } |
26 | 26 | |
27 | - if ( !is_object( $invoice ) && is_scalar( $invoice ) ) { |
|
28 | - $invoice = wpinv_get_invoice( $invoice ); |
|
27 | + if (!is_object($invoice) && is_scalar($invoice)) { |
|
28 | + $invoice = wpinv_get_invoice($invoice); |
|
29 | 29 | } |
30 | 30 | |
31 | - if ( empty( $invoice ) ) { |
|
31 | + if (empty($invoice)) { |
|
32 | 32 | return false; |
33 | 33 | } |
34 | 34 | |
35 | - return apply_filters( 'wpinv_payment_details_transaction_id-' . $invoice->gateway, $invoice->get_transaction_id(), $invoice->ID, $invoice ); |
|
35 | + return apply_filters('wpinv_payment_details_transaction_id-' . $invoice->gateway, $invoice->get_transaction_id(), $invoice->ID, $invoice); |
|
36 | 36 | } |
37 | 37 | |
38 | -function wpinv_subscription_initial_payment_desc( $amount, $period, $interval, $trial_period = '', $trial_interval = 0 ) { |
|
39 | - $interval = (int)$interval > 0 ? (int)$interval : 1; |
|
38 | +function wpinv_subscription_initial_payment_desc($amount, $period, $interval, $trial_period = '', $trial_interval = 0) { |
|
39 | + $interval = (int) $interval > 0 ? (int) $interval : 1; |
|
40 | 40 | |
41 | - if ( $trial_interval > 0 && !empty( $trial_period ) ) { |
|
42 | - $amount = __( 'Free', 'invoicing' ); |
|
41 | + if ($trial_interval > 0 && !empty($trial_period)) { |
|
42 | + $amount = __('Free', 'invoicing'); |
|
43 | 43 | $interval = $trial_interval; |
44 | 44 | $period = $trial_period; |
45 | 45 | } |
46 | 46 | |
47 | 47 | $description = ''; |
48 | - switch ( $period ) { |
|
48 | + switch ($period) { |
|
49 | 49 | case 'D' : |
50 | 50 | case 'day' : |
51 | - $description = wp_sprintf( _n( '%s for the first day.', '%s for the first %d days.', $interval, 'invoicing' ), $amount, $interval ); |
|
51 | + $description = wp_sprintf(_n('%s for the first day.', '%s for the first %d days.', $interval, 'invoicing'), $amount, $interval); |
|
52 | 52 | break; |
53 | 53 | case 'W' : |
54 | 54 | case 'week' : |
55 | - $description = wp_sprintf( _n( '%s for the first week.', '%s for the first %d weeks.', $interval, 'invoicing' ), $amount, $interval ); |
|
55 | + $description = wp_sprintf(_n('%s for the first week.', '%s for the first %d weeks.', $interval, 'invoicing'), $amount, $interval); |
|
56 | 56 | break; |
57 | 57 | case 'M' : |
58 | 58 | case 'month' : |
59 | - $description = wp_sprintf( _n( '%s for the first month.', '%s for the first %d months.', $interval, 'invoicing' ), $amount, $interval ); |
|
59 | + $description = wp_sprintf(_n('%s for the first month.', '%s for the first %d months.', $interval, 'invoicing'), $amount, $interval); |
|
60 | 60 | break; |
61 | 61 | case 'Y' : |
62 | 62 | case 'year' : |
63 | - $description = wp_sprintf( _n( '%s for the first year.', '%s for the first %d years.', $interval, 'invoicing' ), $amount, $interval ); |
|
63 | + $description = wp_sprintf(_n('%s for the first year.', '%s for the first %d years.', $interval, 'invoicing'), $amount, $interval); |
|
64 | 64 | break; |
65 | 65 | } |
66 | 66 | |
67 | - return apply_filters( 'wpinv_subscription_initial_payment_desc', $description, $amount, $period, $interval, $trial_period, $trial_interval ); |
|
67 | + return apply_filters('wpinv_subscription_initial_payment_desc', $description, $amount, $period, $interval, $trial_period, $trial_interval); |
|
68 | 68 | } |
69 | 69 | |
70 | -function wpinv_subscription_recurring_payment_desc( $amount, $period, $interval, $bill_times = 0, $trial_period = '', $trial_interval = 0 ) { |
|
71 | - $interval = (int)$interval > 0 ? (int)$interval : 1; |
|
72 | - $bill_times = (int)$bill_times > 0 ? (int)$bill_times : 0; |
|
70 | +function wpinv_subscription_recurring_payment_desc($amount, $period, $interval, $bill_times = 0, $trial_period = '', $trial_interval = 0) { |
|
71 | + $interval = (int) $interval > 0 ? (int) $interval : 1; |
|
72 | + $bill_times = (int) $bill_times > 0 ? (int) $bill_times : 0; |
|
73 | 73 | |
74 | 74 | $description = ''; |
75 | - switch ( $period ) { |
|
75 | + switch ($period) { |
|
76 | 76 | case 'D' : |
77 | 77 | case 'day' : |
78 | - if ( (int)$bill_times > 0 ) { |
|
79 | - if ( $interval > 1 ) { |
|
80 | - if ( $bill_times > 1 ) { |
|
81 | - $description = wp_sprintf( __( '%s for each %d days, for %d installments.', 'invoicing' ), $amount, $interval, $bill_times ); |
|
78 | + if ((int) $bill_times > 0) { |
|
79 | + if ($interval > 1) { |
|
80 | + if ($bill_times > 1) { |
|
81 | + $description = wp_sprintf(__('%s for each %d days, for %d installments.', 'invoicing'), $amount, $interval, $bill_times); |
|
82 | 82 | } else { |
83 | - $description = wp_sprintf( __( '%s for %d days.', 'invoicing' ), $amount, $interval ); |
|
83 | + $description = wp_sprintf(__('%s for %d days.', 'invoicing'), $amount, $interval); |
|
84 | 84 | } |
85 | 85 | } else { |
86 | - $description = wp_sprintf( _n( '%s for one day.', '%s for each day, for %d installments.', $bill_times, 'invoicing' ), $amount, $bill_times ); |
|
86 | + $description = wp_sprintf(_n('%s for one day.', '%s for each day, for %d installments.', $bill_times, 'invoicing'), $amount, $bill_times); |
|
87 | 87 | } |
88 | 88 | } else { |
89 | - $description = wp_sprintf( _n( '%s for each day.', '%s for each %d days.', $interval, 'invoicing'), $amount, $interval ); |
|
89 | + $description = wp_sprintf(_n('%s for each day.', '%s for each %d days.', $interval, 'invoicing'), $amount, $interval); |
|
90 | 90 | } |
91 | 91 | break; |
92 | 92 | case 'W' : |
93 | 93 | case 'week' : |
94 | - if ( (int)$bill_times > 0 ) { |
|
95 | - if ( $interval > 1 ) { |
|
96 | - if ( $bill_times > 1 ) { |
|
97 | - $description = wp_sprintf( __( '%s for each %d weeks, for %d installments.', 'invoicing' ), $amount, $interval, $bill_times ); |
|
94 | + if ((int) $bill_times > 0) { |
|
95 | + if ($interval > 1) { |
|
96 | + if ($bill_times > 1) { |
|
97 | + $description = wp_sprintf(__('%s for each %d weeks, for %d installments.', 'invoicing'), $amount, $interval, $bill_times); |
|
98 | 98 | } else { |
99 | - $description = wp_sprintf( __( '%s for %d weeks.', 'invoicing' ), $amount, $interval ); |
|
99 | + $description = wp_sprintf(__('%s for %d weeks.', 'invoicing'), $amount, $interval); |
|
100 | 100 | } |
101 | 101 | } else { |
102 | - $description = wp_sprintf( _n( '%s for one week.', '%s for each week, for %d installments.', $bill_times, 'invoicing' ), $amount, $bill_times ); |
|
102 | + $description = wp_sprintf(_n('%s for one week.', '%s for each week, for %d installments.', $bill_times, 'invoicing'), $amount, $bill_times); |
|
103 | 103 | } |
104 | 104 | } else { |
105 | - $description = wp_sprintf( _n( '%s for each week.', '%s for each %d weeks.', $interval, 'invoicing' ), $amount, $interval ); |
|
105 | + $description = wp_sprintf(_n('%s for each week.', '%s for each %d weeks.', $interval, 'invoicing'), $amount, $interval); |
|
106 | 106 | } |
107 | 107 | break; |
108 | 108 | case 'M' : |
109 | 109 | case 'month' : |
110 | - if ( (int)$bill_times > 0 ) { |
|
111 | - if ( $interval > 1 ) { |
|
112 | - if ( $bill_times > 1 ) { |
|
113 | - $description = wp_sprintf( __( '%s for each %d months, for %d installments.', 'invoicing' ), $amount, $interval, $bill_times ); |
|
110 | + if ((int) $bill_times > 0) { |
|
111 | + if ($interval > 1) { |
|
112 | + if ($bill_times > 1) { |
|
113 | + $description = wp_sprintf(__('%s for each %d months, for %d installments.', 'invoicing'), $amount, $interval, $bill_times); |
|
114 | 114 | } else { |
115 | - $description = wp_sprintf( __( '%s for %d months.', 'invoicing' ), $amount, $interval ); |
|
115 | + $description = wp_sprintf(__('%s for %d months.', 'invoicing'), $amount, $interval); |
|
116 | 116 | } |
117 | 117 | } else { |
118 | - $description = wp_sprintf( _n( '%s for one month.', '%s for each month, for %d installments.', $bill_times, 'invoicing' ), $amount, $bill_times ); |
|
118 | + $description = wp_sprintf(_n('%s for one month.', '%s for each month, for %d installments.', $bill_times, 'invoicing'), $amount, $bill_times); |
|
119 | 119 | } |
120 | 120 | } else { |
121 | - $description = wp_sprintf( _n( '%s for each month.', '%s for each %d months.', $interval, 'invoicing' ), $amount, $interval ); |
|
121 | + $description = wp_sprintf(_n('%s for each month.', '%s for each %d months.', $interval, 'invoicing'), $amount, $interval); |
|
122 | 122 | } |
123 | 123 | break; |
124 | 124 | case 'Y' : |
125 | 125 | case 'year' : |
126 | - if ( (int)$bill_times > 0 ) { |
|
127 | - if ( $interval > 1 ) { |
|
128 | - if ( $bill_times > 1 ) { |
|
129 | - $description = wp_sprintf( __( '%s for each %d years, for %d installments.', 'invoicing' ), $amount, $interval, $bill_times ); |
|
126 | + if ((int) $bill_times > 0) { |
|
127 | + if ($interval > 1) { |
|
128 | + if ($bill_times > 1) { |
|
129 | + $description = wp_sprintf(__('%s for each %d years, for %d installments.', 'invoicing'), $amount, $interval, $bill_times); |
|
130 | 130 | } else { |
131 | - $description = wp_sprintf( __( '%s for %d years.', 'invoicing'), $amount, $interval ); |
|
131 | + $description = wp_sprintf(__('%s for %d years.', 'invoicing'), $amount, $interval); |
|
132 | 132 | } |
133 | 133 | } else { |
134 | - $description = wp_sprintf( _n( '%s for one year.', '%s for each year, for %d installments.', $bill_times, 'invoicing' ), $amount, $bill_times ); |
|
134 | + $description = wp_sprintf(_n('%s for one year.', '%s for each year, for %d installments.', $bill_times, 'invoicing'), $amount, $bill_times); |
|
135 | 135 | } |
136 | 136 | } else { |
137 | - $description = wp_sprintf( _n( '%s for each year.', '%s for each %d years.', $interval, 'invoicing' ), $amount, $interval ); |
|
137 | + $description = wp_sprintf(_n('%s for each year.', '%s for each %d years.', $interval, 'invoicing'), $amount, $interval); |
|
138 | 138 | } |
139 | 139 | break; |
140 | 140 | } |
141 | 141 | |
142 | - return apply_filters( 'wpinv_subscription_recurring_payment_desc', $description, $amount, $period, $interval, $bill_times, $trial_period, $trial_interval ); |
|
142 | + return apply_filters('wpinv_subscription_recurring_payment_desc', $description, $amount, $period, $interval, $bill_times, $trial_period, $trial_interval); |
|
143 | 143 | } |
144 | 144 | |
145 | -function wpinv_subscription_payment_desc( $invoice ) { |
|
146 | - if ( empty( $invoice ) ) { |
|
145 | +function wpinv_subscription_payment_desc($invoice) { |
|
146 | + if (empty($invoice)) { |
|
147 | 147 | return NULL; |
148 | 148 | } |
149 | 149 | |
150 | 150 | $description = ''; |
151 | - if ( $invoice->is_parent() && $item = $invoice->get_recurring( true ) ) { |
|
152 | - if ( $item->has_free_trial() ) { |
|
151 | + if ($invoice->is_parent() && $item = $invoice->get_recurring(true)) { |
|
152 | + if ($item->has_free_trial()) { |
|
153 | 153 | $trial_period = $item->get_trial_period(); |
154 | 154 | $trial_interval = $item->get_trial_interval(); |
155 | 155 | } else { |
@@ -157,40 +157,40 @@ discard block |
||
157 | 157 | $trial_interval = 0; |
158 | 158 | } |
159 | 159 | |
160 | - $description = wpinv_get_billing_cycle( $invoice->get_total(), $invoice->get_recurring_details( 'total' ), $item->get_recurring_period(), $item->get_recurring_interval(), $item->get_recurring_limit(), $trial_period, $trial_interval, $invoice->get_currency() ); |
|
160 | + $description = wpinv_get_billing_cycle($invoice->get_total(), $invoice->get_recurring_details('total'), $item->get_recurring_period(), $item->get_recurring_interval(), $item->get_recurring_limit(), $trial_period, $trial_interval, $invoice->get_currency()); |
|
161 | 161 | } |
162 | 162 | |
163 | - return apply_filters( 'wpinv_subscription_payment_desc', $description, $invoice ); |
|
163 | + return apply_filters('wpinv_subscription_payment_desc', $description, $invoice); |
|
164 | 164 | } |
165 | 165 | |
166 | -function wpinv_get_billing_cycle( $initial, $recurring, $period, $interval, $bill_times, $trial_period = '', $trial_interval = 0, $currency = '' ) { |
|
167 | - $initial_total = wpinv_round_amount( $initial ); |
|
168 | - $recurring_total = wpinv_round_amount( $recurring ); |
|
166 | +function wpinv_get_billing_cycle($initial, $recurring, $period, $interval, $bill_times, $trial_period = '', $trial_interval = 0, $currency = '') { |
|
167 | + $initial_total = wpinv_round_amount($initial); |
|
168 | + $recurring_total = wpinv_round_amount($recurring); |
|
169 | 169 | |
170 | - if ( $trial_interval > 0 && !empty( $trial_period ) ) { |
|
170 | + if ($trial_interval > 0 && !empty($trial_period)) { |
|
171 | 171 | // Free trial |
172 | 172 | } else { |
173 | - if ( $bill_times == 1 ) { |
|
173 | + if ($bill_times == 1) { |
|
174 | 174 | $recurring_total = $initial_total; |
175 | - } else if ( $bill_times > 1 && $initial_total != $recurring_total ) { |
|
175 | + } else if ($bill_times > 1 && $initial_total != $recurring_total) { |
|
176 | 176 | $bill_times--; |
177 | 177 | } |
178 | 178 | } |
179 | 179 | |
180 | - $initial_amount = wpinv_price( $initial_total, $currency ); |
|
181 | - $recurring_amount = wpinv_price( $recurring_total, $currency ); |
|
180 | + $initial_amount = wpinv_price($initial_total, $currency); |
|
181 | + $recurring_amount = wpinv_price($recurring_total, $currency); |
|
182 | 182 | |
183 | - $recurring = wpinv_subscription_recurring_payment_desc( $recurring_amount, $period, $interval, $bill_times, $trial_period, $trial_interval ); |
|
183 | + $recurring = wpinv_subscription_recurring_payment_desc($recurring_amount, $period, $interval, $bill_times, $trial_period, $trial_interval); |
|
184 | 184 | |
185 | - if ( $initial_total != $recurring_total ) { |
|
186 | - $initial = wpinv_subscription_initial_payment_desc( $initial_amount, $period, $interval, $trial_period, $trial_interval ); |
|
185 | + if ($initial_total != $recurring_total) { |
|
186 | + $initial = wpinv_subscription_initial_payment_desc($initial_amount, $period, $interval, $trial_period, $trial_interval); |
|
187 | 187 | |
188 | - $description = wp_sprintf( __( '%s Then %s', 'invoicing' ), $initial, $recurring ); |
|
188 | + $description = wp_sprintf(__('%s Then %s', 'invoicing'), $initial, $recurring); |
|
189 | 189 | } else { |
190 | 190 | $description = $recurring; |
191 | 191 | } |
192 | 192 | |
193 | - return apply_filters( 'wpinv_get_billing_cycle', $description, $initial, $recurring, $period, $interval, $bill_times, $trial_period, $trial_interval, $currency ); |
|
193 | + return apply_filters('wpinv_get_billing_cycle', $description, $initial, $recurring, $period, $interval, $bill_times, $trial_period, $trial_interval, $currency); |
|
194 | 194 | } |
195 | 195 | |
196 | 196 | /** |
@@ -200,27 +200,27 @@ discard block |
||
200 | 200 | * @param string $card_number Card number. |
201 | 201 | * @return string |
202 | 202 | */ |
203 | -function getpaid_get_card_name( $card_number ) { |
|
203 | +function getpaid_get_card_name($card_number) { |
|
204 | 204 | |
205 | 205 | // Known regexes. |
206 | 206 | $regexes = array( |
207 | - '/^4/' => __( 'Visa', 'invoicing' ), |
|
208 | - '/^5[1-5]/' => __( 'Mastercard', 'invoicing' ), |
|
209 | - '/^3[47]/' => __( 'Amex', 'invoicing' ), |
|
210 | - '/^3(?:0[0-5]|[68])/' => __( 'Diners Club', 'invoicing' ), |
|
211 | - '/^6(?:011|5)/' => __( 'Discover', 'invoicing' ), |
|
212 | - '/^(?:2131|1800|35\d{3})/' => __( 'JCB', 'invoicing' ), |
|
207 | + '/^4/' => __('Visa', 'invoicing'), |
|
208 | + '/^5[1-5]/' => __('Mastercard', 'invoicing'), |
|
209 | + '/^3[47]/' => __('Amex', 'invoicing'), |
|
210 | + '/^3(?:0[0-5]|[68])/' => __('Diners Club', 'invoicing'), |
|
211 | + '/^6(?:011|5)/' => __('Discover', 'invoicing'), |
|
212 | + '/^(?:2131|1800|35\d{3})/' => __('JCB', 'invoicing'), |
|
213 | 213 | ); |
214 | 214 | |
215 | 215 | // Confirm if one matches. |
216 | - foreach ( $regexes as $regex => $card ) { |
|
217 | - if ( preg_match ( $regex, $card_number ) >= 1 ) { |
|
216 | + foreach ($regexes as $regex => $card) { |
|
217 | + if (preg_match($regex, $card_number) >= 1) { |
|
218 | 218 | return $card; |
219 | 219 | } |
220 | 220 | } |
221 | 221 | |
222 | 222 | // None matched. |
223 | - return __( 'Card', 'invoicing' ); |
|
223 | + return __('Card', 'invoicing'); |
|
224 | 224 | |
225 | 225 | } |
226 | 226 | |
@@ -229,23 +229,23 @@ discard block |
||
229 | 229 | * |
230 | 230 | * @param WPInv_Invoice|int|null $invoice |
231 | 231 | */ |
232 | -function wpinv_send_back_to_checkout( $invoice = null ) { |
|
233 | - $response = array( 'success' => false ); |
|
234 | - $invoice = wpinv_get_invoice( $invoice ); |
|
232 | +function wpinv_send_back_to_checkout($invoice = null) { |
|
233 | + $response = array('success' => false); |
|
234 | + $invoice = wpinv_get_invoice($invoice); |
|
235 | 235 | |
236 | 236 | // Was an invoice created? |
237 | - if ( ! empty( $invoice ) ) { |
|
238 | - $invoice = is_scalar( $invoice ) ? new WPInv_Invoice( $invoice ) : $invoice; |
|
237 | + if (!empty($invoice)) { |
|
238 | + $invoice = is_scalar($invoice) ? new WPInv_Invoice($invoice) : $invoice; |
|
239 | 239 | $response['invoice'] = $invoice->get_id(); |
240 | - do_action( 'getpaid_checkout_invoice_exception', $invoice ); |
|
240 | + do_action('getpaid_checkout_invoice_exception', $invoice); |
|
241 | 241 | } |
242 | 242 | |
243 | 243 | // Do we have any errors? |
244 | - if ( wpinv_get_errors() ) { |
|
245 | - $response['data'] = getpaid_get_errors_html( true, false ); |
|
244 | + if (wpinv_get_errors()) { |
|
245 | + $response['data'] = getpaid_get_errors_html(true, false); |
|
246 | 246 | } else { |
247 | - $response['data'] = __( 'An error occured while processing your payment. Please try again.', 'invoicing' ); |
|
247 | + $response['data'] = __('An error occured while processing your payment. Please try again.', 'invoicing'); |
|
248 | 248 | } |
249 | 249 | |
250 | - wp_send_json( $response ); |
|
250 | + wp_send_json($response); |
|
251 | 251 | } |
@@ -24,14 +24,14 @@ |
||
24 | 24 | } |
25 | 25 | |
26 | 26 | /** |
27 | - * Highlights sub menus. |
|
28 | - */ |
|
29 | - public function set_admin_menu_class() { |
|
30 | - global $current_screen, $parent_file, $submenu_file; |
|
27 | + * Highlights sub menus. |
|
28 | + */ |
|
29 | + public function set_admin_menu_class() { |
|
30 | + global $current_screen, $parent_file, $submenu_file; |
|
31 | 31 | |
32 | 32 | if ( ! empty( $current_screen->id ) && in_array( $current_screen->id , array( 'wpi_discount', 'wpi_payment_form', 'wpi_invoice' ) ) ) { |
33 | - $parent_file = 'wpinv'; |
|
34 | - $submenu_file = 'edit.php?post_type=' . $current_screen->id; |
|
33 | + $parent_file = 'wpinv'; |
|
34 | + $submenu_file = 'edit.php?post_type=' . $current_screen->id; |
|
35 | 35 | } |
36 | 36 | |
37 | 37 | } |
@@ -3,7 +3,7 @@ discard block |
||
3 | 3 | * Setup menus in WP admin. |
4 | 4 | */ |
5 | 5 | |
6 | -defined( 'ABSPATH' ) || exit; |
|
6 | +defined('ABSPATH') || exit; |
|
7 | 7 | |
8 | 8 | /** |
9 | 9 | * WC_Admin_Menus Class. |
@@ -13,14 +13,14 @@ discard block |
||
13 | 13 | * Hook in tabs. |
14 | 14 | */ |
15 | 15 | public function __construct() { |
16 | - add_action( 'admin_head', array( $this, 'set_admin_menu_class' ) ); |
|
17 | - add_action( 'admin_menu', array( $this, 'admin_menu' ), 10 ); |
|
18 | - add_action( 'admin_menu', array( $this, 'add_customers_menu' ), 18 ); |
|
19 | - add_action( 'admin_menu', array( $this, 'add_subscriptions_menu' ), 40 ); |
|
20 | - add_action( 'admin_menu', array( $this, 'add_addons_menu' ), 100 ); |
|
21 | - add_action( 'admin_menu', array( $this, 'add_settings_menu' ), 60 ); |
|
22 | - add_action( 'admin_menu', array( $this, 'remove_admin_submenus' ), 10 ); |
|
23 | - add_action( 'admin_head-nav-menus.php', array( $this, 'add_nav_menu_meta_boxes' ) ); |
|
16 | + add_action('admin_head', array($this, 'set_admin_menu_class')); |
|
17 | + add_action('admin_menu', array($this, 'admin_menu'), 10); |
|
18 | + add_action('admin_menu', array($this, 'add_customers_menu'), 18); |
|
19 | + add_action('admin_menu', array($this, 'add_subscriptions_menu'), 40); |
|
20 | + add_action('admin_menu', array($this, 'add_addons_menu'), 100); |
|
21 | + add_action('admin_menu', array($this, 'add_settings_menu'), 60); |
|
22 | + add_action('admin_menu', array($this, 'remove_admin_submenus'), 10); |
|
23 | + add_action('admin_head-nav-menus.php', array($this, 'add_nav_menu_meta_boxes')); |
|
24 | 24 | } |
25 | 25 | |
26 | 26 | /** |
@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | public function set_admin_menu_class() { |
30 | 30 | global $current_screen, $parent_file, $submenu_file; |
31 | 31 | |
32 | - if ( ! empty( $current_screen->id ) && in_array( $current_screen->id , array( 'wpi_discount', 'wpi_payment_form', 'wpi_invoice' ) ) ) { |
|
32 | + if (!empty($current_screen->id) && in_array($current_screen->id, array('wpi_discount', 'wpi_payment_form', 'wpi_invoice'))) { |
|
33 | 33 | $parent_file = 'wpinv'; |
34 | 34 | $submenu_file = 'edit.php?post_type=' . $current_screen->id; |
35 | 35 | } |
@@ -38,14 +38,14 @@ discard block |
||
38 | 38 | |
39 | 39 | public function admin_menu() { |
40 | 40 | |
41 | - $capability = apply_filters( 'invoicing_capability', wpinv_get_capability() ); |
|
41 | + $capability = apply_filters('invoicing_capability', wpinv_get_capability()); |
|
42 | 42 | add_menu_page( |
43 | - __( 'GetPaid', 'invoicing' ), |
|
44 | - __( 'GetPaid', 'invoicing' ), |
|
43 | + __('GetPaid', 'invoicing'), |
|
44 | + __('GetPaid', 'invoicing'), |
|
45 | 45 | $capability, |
46 | 46 | 'wpinv', |
47 | 47 | null, |
48 | - 'data:image/svg+xml;base64,' . base64_encode( file_get_contents( WPINV_PLUGIN_DIR . 'assets/images/GetPaid.svg' ) ), |
|
48 | + 'data:image/svg+xml;base64,' . base64_encode(file_get_contents(WPINV_PLUGIN_DIR . 'assets/images/GetPaid.svg')), |
|
49 | 49 | '54.123460' |
50 | 50 | ); |
51 | 51 | |
@@ -57,11 +57,11 @@ discard block |
||
57 | 57 | public function add_customers_menu() { |
58 | 58 | add_submenu_page( |
59 | 59 | 'wpinv', |
60 | - __( 'Customers', 'invoicing' ), |
|
61 | - __( 'Customers', 'invoicing' ), |
|
60 | + __('Customers', 'invoicing'), |
|
61 | + __('Customers', 'invoicing'), |
|
62 | 62 | wpinv_get_capability(), |
63 | 63 | 'wpinv-customers', |
64 | - array( $this, 'customers_page' ) |
|
64 | + array($this, 'customers_page') |
|
65 | 65 | ); |
66 | 66 | } |
67 | 67 | |
@@ -71,8 +71,8 @@ discard block |
||
71 | 71 | public function add_subscriptions_menu() { |
72 | 72 | add_submenu_page( |
73 | 73 | 'wpinv', |
74 | - __( 'Subscriptions', 'invoicing' ), |
|
75 | - __( 'Subscriptions', 'invoicing' ), |
|
74 | + __('Subscriptions', 'invoicing'), |
|
75 | + __('Subscriptions', 'invoicing'), |
|
76 | 76 | wpinv_get_capability(), |
77 | 77 | 'wpinv-subscriptions', |
78 | 78 | 'wpinv_subscriptions_page' |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | * Displays the customers page. |
84 | 84 | */ |
85 | 85 | public function customers_page() { |
86 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/class-wpinv-customers-table.php' ); |
|
86 | + require_once(WPINV_PLUGIN_DIR . 'includes/admin/class-wpinv-customers-table.php'); |
|
87 | 87 | ?> |
88 | 88 | <div class="wrap wpi-customers-wrap"> |
89 | 89 | <style> |
@@ -91,12 +91,12 @@ discard block |
||
91 | 91 | width: 30%; |
92 | 92 | } |
93 | 93 | </style> |
94 | - <h1><?php echo esc_html( __( 'Customers', 'invoicing' ) ); ?> <a href="<?php echo wp_nonce_url( add_query_arg( 'getpaid-admin-action', 'download_customers' ), 'getpaid-nonce', 'getpaid-nonce' ); ?>" class="page-title-action"><?php _e( 'Export', 'invoicing' ); ?></a></h1> |
|
94 | + <h1><?php echo esc_html(__('Customers', 'invoicing')); ?> <a href="<?php echo wp_nonce_url(add_query_arg('getpaid-admin-action', 'download_customers'), 'getpaid-nonce', 'getpaid-nonce'); ?>" class="page-title-action"><?php _e('Export', 'invoicing'); ?></a></h1> |
|
95 | 95 | <form method="post"> |
96 | 96 | <?php |
97 | 97 | $table = new WPInv_Customers_Table(); |
98 | 98 | $table->prepare_items(); |
99 | - $table->search_box( __( 'Search Customers', 'invoicing' ), 'search-customers' ); |
|
99 | + $table->search_box(__('Search Customers', 'invoicing'), 'search-customers'); |
|
100 | 100 | $table->display(); |
101 | 101 | ?> |
102 | 102 | </form> |
@@ -110,16 +110,16 @@ discard block |
||
110 | 110 | public function add_settings_menu() { |
111 | 111 | add_submenu_page( |
112 | 112 | 'wpinv', |
113 | - __( 'Invoice Settings', 'invoicing' ), |
|
114 | - __( 'Settings', 'invoicing' ), |
|
115 | - apply_filters( 'invoicing_capability', wpinv_get_capability() ), |
|
113 | + __('Invoice Settings', 'invoicing'), |
|
114 | + __('Settings', 'invoicing'), |
|
115 | + apply_filters('invoicing_capability', wpinv_get_capability()), |
|
116 | 116 | 'wpinv-settings', |
117 | - array( $this, 'options_page' ) |
|
117 | + array($this, 'options_page') |
|
118 | 118 | ); |
119 | 119 | } |
120 | 120 | |
121 | - public function add_addons_menu(){ |
|
122 | - if ( !apply_filters( 'wpi_show_addons_page', true ) ) { |
|
121 | + public function add_addons_menu() { |
|
122 | + if (!apply_filters('wpi_show_addons_page', true)) { |
|
123 | 123 | return; |
124 | 124 | } |
125 | 125 | |
@@ -129,78 +129,78 @@ discard block |
||
129 | 129 | __('Extensions', 'invoicing'), |
130 | 130 | 'manage_options', |
131 | 131 | 'wpi-addons', |
132 | - array( $this, 'addons_page' ) |
|
132 | + array($this, 'addons_page') |
|
133 | 133 | ); |
134 | 134 | } |
135 | 135 | |
136 | - public function addons_page(){ |
|
136 | + public function addons_page() { |
|
137 | 137 | $addon_obj = new WPInv_Admin_Addons(); |
138 | 138 | $addon_obj->output(); |
139 | 139 | } |
140 | 140 | |
141 | 141 | function options_page() { |
142 | 142 | |
143 | - if ( ! wpinv_current_user_can_manage_invoicing() ) { |
|
143 | + if (!wpinv_current_user_can_manage_invoicing()) { |
|
144 | 144 | return; |
145 | 145 | } |
146 | 146 | |
147 | 147 | $settings_tabs = wpinv_get_settings_tabs(); |
148 | 148 | $settings_tabs = empty($settings_tabs) ? array() : $settings_tabs; |
149 | - $active_tab = isset( $_GET['tab'] ) && array_key_exists( $_GET['tab'], $settings_tabs ) ? esc_html( $_GET['tab'] ) : 'general'; |
|
150 | - $sections = wpinv_get_settings_tab_sections( $active_tab ); |
|
149 | + $active_tab = isset($_GET['tab']) && array_key_exists($_GET['tab'], $settings_tabs) ? esc_html($_GET['tab']) : 'general'; |
|
150 | + $sections = wpinv_get_settings_tab_sections($active_tab); |
|
151 | 151 | $key = 'main'; |
152 | 152 | |
153 | - if ( is_array( $sections ) ) { |
|
154 | - $key = key( $sections ); |
|
153 | + if (is_array($sections)) { |
|
154 | + $key = key($sections); |
|
155 | 155 | } |
156 | 156 | |
157 | 157 | add_thickbox(); |
158 | 158 | |
159 | - $registered_sections = wpinv_get_settings_tab_sections( $active_tab ); |
|
160 | - $section = isset( $_GET['section'] ) && ! empty( $registered_sections ) && array_key_exists( $_GET['section'], $registered_sections ) ? $_GET['section'] : $key; |
|
159 | + $registered_sections = wpinv_get_settings_tab_sections($active_tab); |
|
160 | + $section = isset($_GET['section']) && !empty($registered_sections) && array_key_exists($_GET['section'], $registered_sections) ? $_GET['section'] : $key; |
|
161 | 161 | ?> |
162 | 162 | <div class="wrap"> |
163 | 163 | <h1 class="nav-tab-wrapper"> |
164 | 164 | <?php |
165 | - foreach( wpinv_get_settings_tabs() as $tab_id => $tab_name ) { |
|
166 | - $tab_url = add_query_arg( array( |
|
165 | + foreach (wpinv_get_settings_tabs() as $tab_id => $tab_name) { |
|
166 | + $tab_url = add_query_arg(array( |
|
167 | 167 | 'settings-updated' => false, |
168 | 168 | 'tab' => $tab_id, |
169 | - ), 'admin.php?page=wpinv-settings' ); |
|
169 | + ), 'admin.php?page=wpinv-settings'); |
|
170 | 170 | |
171 | 171 | // Remove the section from the tabs so we always end up at the main section |
172 | - $tab_url = remove_query_arg( 'section', $tab_url ); |
|
173 | - $tab_url = remove_query_arg( 'wpi_sub', $tab_url ); |
|
172 | + $tab_url = remove_query_arg('section', $tab_url); |
|
173 | + $tab_url = remove_query_arg('wpi_sub', $tab_url); |
|
174 | 174 | |
175 | 175 | $active = $active_tab == $tab_id ? ' nav-tab-active' : ''; |
176 | 176 | |
177 | - echo '<a href="' . esc_url( $tab_url ) . '" title="' . esc_attr( $tab_name ) . '" class="nav-tab' . $active . '">'; |
|
178 | - echo esc_html( $tab_name ); |
|
177 | + echo '<a href="' . esc_url($tab_url) . '" title="' . esc_attr($tab_name) . '" class="nav-tab' . $active . '">'; |
|
178 | + echo esc_html($tab_name); |
|
179 | 179 | echo '</a>'; |
180 | 180 | } |
181 | 181 | ?> |
182 | 182 | </h1> |
183 | 183 | <?php |
184 | - $number_of_sections = count( $sections ); |
|
184 | + $number_of_sections = count($sections); |
|
185 | 185 | $number = 0; |
186 | - if ( $number_of_sections > 1 ) { |
|
186 | + if ($number_of_sections > 1) { |
|
187 | 187 | echo '<div><ul class="subsubsub">'; |
188 | - foreach( $sections as $section_id => $section_name ) { |
|
188 | + foreach ($sections as $section_id => $section_name) { |
|
189 | 189 | echo '<li>'; |
190 | 190 | $number++; |
191 | - $tab_url = add_query_arg( array( |
|
191 | + $tab_url = add_query_arg(array( |
|
192 | 192 | 'settings-updated' => false, |
193 | 193 | 'tab' => $active_tab, |
194 | 194 | 'section' => $section_id |
195 | - ), admin_url( 'admin.php?page=wpinv-settings' ) ); |
|
196 | - $tab_url = remove_query_arg( 'wpi_sub', $tab_url ); |
|
195 | + ), admin_url('admin.php?page=wpinv-settings')); |
|
196 | + $tab_url = remove_query_arg('wpi_sub', $tab_url); |
|
197 | 197 | $class = ''; |
198 | - if ( $section == $section_id ) { |
|
198 | + if ($section == $section_id) { |
|
199 | 199 | $class = 'current'; |
200 | 200 | } |
201 | - echo '<a class="' . $class . '" href="' . esc_url( $tab_url ) . '">' . $section_name . '</a>'; |
|
201 | + echo '<a class="' . $class . '" href="' . esc_url($tab_url) . '">' . $section_name . '</a>'; |
|
202 | 202 | |
203 | - if ( $number != $number_of_sections ) { |
|
203 | + if ($number != $number_of_sections) { |
|
204 | 204 | echo ' | '; |
205 | 205 | } |
206 | 206 | echo '</li>'; |
@@ -212,20 +212,20 @@ discard block |
||
212 | 212 | <form method="post" action="options.php"> |
213 | 213 | <table class="form-table"> |
214 | 214 | <?php |
215 | - settings_fields( 'wpinv_settings' ); |
|
215 | + settings_fields('wpinv_settings'); |
|
216 | 216 | |
217 | - if ( 'main' === $section ) { |
|
218 | - do_action( 'wpinv_settings_tab_top', $active_tab ); |
|
217 | + if ('main' === $section) { |
|
218 | + do_action('wpinv_settings_tab_top', $active_tab); |
|
219 | 219 | } |
220 | 220 | |
221 | - do_action( 'wpinv_settings_tab_top_' . $active_tab . '_' . $section, $active_tab, $section ); |
|
222 | - do_settings_sections( 'wpinv_settings_' . $active_tab . '_' . $section, $active_tab, $section ); |
|
223 | - do_action( 'wpinv_settings_tab_bottom_' . $active_tab . '_' . $section, $active_tab, $section ); |
|
224 | - do_action( 'getpaid_settings_tab_bottom', $active_tab, $section ); |
|
221 | + do_action('wpinv_settings_tab_top_' . $active_tab . '_' . $section, $active_tab, $section); |
|
222 | + do_settings_sections('wpinv_settings_' . $active_tab . '_' . $section, $active_tab, $section); |
|
223 | + do_action('wpinv_settings_tab_bottom_' . $active_tab . '_' . $section, $active_tab, $section); |
|
224 | + do_action('getpaid_settings_tab_bottom', $active_tab, $section); |
|
225 | 225 | |
226 | 226 | // For backwards compatibility |
227 | - if ( 'main' === $section ) { |
|
228 | - do_action( 'wpinv_settings_tab_bottom', $active_tab ); |
|
227 | + if ('main' === $section) { |
|
228 | + do_action('wpinv_settings_tab_bottom', $active_tab); |
|
229 | 229 | } |
230 | 230 | ?> |
231 | 231 | </table> |
@@ -237,7 +237,7 @@ discard block |
||
237 | 237 | } |
238 | 238 | |
239 | 239 | public function remove_admin_submenus() { |
240 | - remove_submenu_page( 'edit.php?post_type=wpi_invoice', 'post-new.php?post_type=wpi_invoice' ); |
|
240 | + remove_submenu_page('edit.php?post_type=wpi_invoice', 'post-new.php?post_type=wpi_invoice'); |
|
241 | 241 | } |
242 | 242 | |
243 | 243 | /** |
@@ -247,8 +247,8 @@ discard block |
||
247 | 247 | |
248 | 248 | add_meta_box( |
249 | 249 | 'wpinv_endpoints_nav_link', |
250 | - __( 'GetPaid endpoints', 'invoicing' ), |
|
251 | - array( $this, 'nav_menu_links' ), |
|
250 | + __('GetPaid endpoints', 'invoicing'), |
|
251 | + array($this, 'nav_menu_links'), |
|
252 | 252 | 'nav-menus', |
253 | 253 | 'side', |
254 | 254 | 'low' |
@@ -263,12 +263,12 @@ discard block |
||
263 | 263 | $endpoints = $this->get_menu_items(); |
264 | 264 | ?> |
265 | 265 | <div id="invoicing-endpoints" class="posttypediv"> |
266 | - <?php if ( ! empty( $endpoints['pages'] ) ) : ?> |
|
266 | + <?php if (!empty($endpoints['pages'])) : ?> |
|
267 | 267 | <div id="tabs-panel-invoicing-endpoints" class="tabs-panel tabs-panel-active"> |
268 | 268 | <ul id="invoicing-endpoints-checklist" class="categorychecklist form-no-clear"> |
269 | 269 | <?php |
270 | - $walker = new Walker_Nav_Menu_Checklist( array() ); |
|
271 | - echo walk_nav_menu_tree( array_map( 'wp_setup_nav_menu_item', $endpoints['pages'] ), 0, (object) array( 'walker' => $walker ) ); |
|
270 | + $walker = new Walker_Nav_Menu_Checklist(array()); |
|
271 | + echo walk_nav_menu_tree(array_map('wp_setup_nav_menu_item', $endpoints['pages']), 0, (object) array('walker' => $walker)); |
|
272 | 272 | ?> |
273 | 273 | </ul> |
274 | 274 | </div> |
@@ -277,11 +277,11 @@ discard block |
||
277 | 277 | <p class="button-controls wp-clearfix" data-items-type="invoicing-endpoints"> |
278 | 278 | <span class="list-controls hide-if-no-js"> |
279 | 279 | <input type="checkbox" id="invoicing-endpoints-tab" class="select-all"> |
280 | - <label for="invoicing-endpoints-tab"><?php _e( 'Select all', 'invoicing' ); ?></label> |
|
280 | + <label for="invoicing-endpoints-tab"><?php _e('Select all', 'invoicing'); ?></label> |
|
281 | 281 | </span> |
282 | 282 | |
283 | 283 | <span class="add-to-menu"> |
284 | - <input type="submit" class="button submit-add-to-menu right" value="<?php esc_attr_e( 'Add to menu', 'invoicing' ); ?>" name="add-invoicing-endpoints-item" id="submit-invoicing-endpoints"> |
|
284 | + <input type="submit" class="button submit-add-to-menu right" value="<?php esc_attr_e('Add to menu', 'invoicing'); ?>" name="add-invoicing-endpoints-item" id="submit-invoicing-endpoints"> |
|
285 | 285 | <span class="spinner"></span> |
286 | 286 | </span> |
287 | 287 | </p> |
@@ -294,35 +294,35 @@ discard block |
||
294 | 294 | * |
295 | 295 | * @return array. |
296 | 296 | */ |
297 | - public function get_menu_items(){ |
|
297 | + public function get_menu_items() { |
|
298 | 298 | $items = array(); |
299 | 299 | |
300 | 300 | $pages = array( |
301 | 301 | array( |
302 | - 'id' => wpinv_get_option( 'invoice_history_page' ), |
|
303 | - 'label' => __( 'My Invoices', 'invoicing' ), |
|
302 | + 'id' => wpinv_get_option('invoice_history_page'), |
|
303 | + 'label' => __('My Invoices', 'invoicing'), |
|
304 | 304 | ), |
305 | 305 | array( |
306 | - 'id' => wpinv_get_option( 'invoice_subscription_page' ), |
|
307 | - 'label' => __( 'My Subscriptions', 'invoicing' ), |
|
306 | + 'id' => wpinv_get_option('invoice_subscription_page'), |
|
307 | + 'label' => __('My Subscriptions', 'invoicing'), |
|
308 | 308 | ) |
309 | 309 | ); |
310 | 310 | |
311 | - foreach ( apply_filters( 'getpaid_menu_pages', $pages ) as $page ) { |
|
311 | + foreach (apply_filters('getpaid_menu_pages', $pages) as $page) { |
|
312 | 312 | |
313 | - if ( (int) $page['id'] > 0 ) { |
|
313 | + if ((int) $page['id'] > 0) { |
|
314 | 314 | |
315 | 315 | $item = new stdClass(); |
316 | 316 | $item->object_id = (int) $page['id']; |
317 | 317 | $item->db_id = 0; |
318 | - $item->object = 'page'; |
|
318 | + $item->object = 'page'; |
|
319 | 319 | $item->menu_item_parent = 0; |
320 | 320 | $item->type = 'post_type'; |
321 | - $item->title = esc_html( $page['label'] ); |
|
322 | - $item->url = get_permalink( (int) $page['id'] ); |
|
321 | + $item->title = esc_html($page['label']); |
|
322 | + $item->url = get_permalink((int) $page['id']); |
|
323 | 323 | $item->target = ''; |
324 | 324 | $item->attr_title = ''; |
325 | - $item->classes = array( 'wpinv-menu-item' ); |
|
325 | + $item->classes = array('wpinv-menu-item'); |
|
326 | 326 | $item->xfn = ''; |
327 | 327 | |
328 | 328 | $items['pages'][] = $item; |
@@ -331,7 +331,7 @@ discard block |
||
331 | 331 | |
332 | 332 | } |
333 | 333 | |
334 | - return apply_filters( 'wpinv_menu_items', $items ); |
|
334 | + return apply_filters('wpinv_menu_items', $items); |
|
335 | 335 | } |
336 | 336 | |
337 | 337 | } |
@@ -7,45 +7,45 @@ |
||
7 | 7 | * @version 1.0.19 |
8 | 8 | */ |
9 | 9 | |
10 | -defined( 'ABSPATH' ) || exit; |
|
10 | +defined('ABSPATH') || exit; |
|
11 | 11 | |
12 | 12 | ?> |
13 | 13 | |
14 | 14 | <div class='form-group'> |
15 | 15 | <label class="d-block"> |
16 | - <span><?php esc_html_e( 'Button Text', 'invoicing' ); ?></span> |
|
16 | + <span><?php esc_html_e('Button Text', 'invoicing'); ?></span> |
|
17 | 17 | <input v-model='active_form_element.label' class='form-control' type="text"/> |
18 | - <small class="form-text text-muted"><?php _e( '%price% will be replaced by the total payable amount', 'invoicing' ); ?></small> |
|
18 | + <small class="form-text text-muted"><?php _e('%price% will be replaced by the total payable amount', 'invoicing'); ?></small> |
|
19 | 19 | </label> |
20 | 20 | </div> |
21 | 21 | |
22 | 22 | <div class='form-group'> |
23 | 23 | <label class="d-block"> |
24 | - <span><?php esc_html_e( 'Free Checkout Text', 'invoicing' ); ?></span> |
|
24 | + <span><?php esc_html_e('Free Checkout Text', 'invoicing'); ?></span> |
|
25 | 25 | <input v-model='active_form_element.free' class='form-control' type="text"/> |
26 | - <small class="form-text text-muted"><?php _e( 'The text to display if the total payable amount is zero', 'invoicing' ); ?></small> |
|
26 | + <small class="form-text text-muted"><?php _e('The text to display if the total payable amount is zero', 'invoicing'); ?></small> |
|
27 | 27 | </label> |
28 | 28 | </div> |
29 | 29 | |
30 | 30 | <div class='form-group'> |
31 | 31 | <label class="d-block"> |
32 | - <span><?php esc_html_e( 'Help Text', 'invoicing' ); ?></span> |
|
33 | - <textarea placeholder='<?php esc_attr_e( 'Add some help text for this field', 'invoicing' ); ?>' v-model='active_form_element.description' class='form-control' rows='3'></textarea> |
|
34 | - <small class="form-text text-muted"><?php _e( 'HTML is allowed', 'invoicing' ); ?></small> |
|
32 | + <span><?php esc_html_e('Help Text', 'invoicing'); ?></span> |
|
33 | + <textarea placeholder='<?php esc_attr_e('Add some help text for this field', 'invoicing'); ?>' v-model='active_form_element.description' class='form-control' rows='3'></textarea> |
|
34 | + <small class="form-text text-muted"><?php _e('HTML is allowed', 'invoicing'); ?></small> |
|
35 | 35 | </label> |
36 | 36 | </div> |
37 | 37 | |
38 | 38 | <div class='form-group'> |
39 | - <label :for="active_form_element.id + '_edit_type'"><?php esc_html_e( 'Button Type', 'invoicing' ) ?></label> |
|
39 | + <label :for="active_form_element.id + '_edit_type'"><?php esc_html_e('Button Type', 'invoicing') ?></label> |
|
40 | 40 | <select class='form-control custom-select' :id="active_form_element.id + '_edit_type'" v-model='active_form_element.class'> |
41 | - <option value='btn-primary'><?php esc_html_e( 'Primary', 'invoicing' ); ?></option> |
|
42 | - <option value='btn-secondary'><?php esc_html_e( 'Secondary', 'invoicing' ); ?></option> |
|
43 | - <option value='btn-success'><?php esc_html_e( 'Success', 'invoicing' ); ?></option> |
|
44 | - <option value='btn-danger'><?php esc_html_e( 'Danger', 'invoicing' ); ?></option> |
|
45 | - <option value='btn-warning'><?php esc_html_e( 'Warning', 'invoicing' ); ?></option> |
|
46 | - <option value='btn-info'><?php esc_html_e( 'Info', 'invoicing' ); ?></option> |
|
47 | - <option value='btn-light'><?php esc_html_e( 'Light', 'invoicing' ); ?></option> |
|
48 | - <option value='btn-dark'><?php esc_html_e( 'Dark', 'invoicing' ); ?></option> |
|
49 | - <option value='btn-link'><?php esc_html_e( 'Link', 'invoicing' ); ?></option> |
|
41 | + <option value='btn-primary'><?php esc_html_e('Primary', 'invoicing'); ?></option> |
|
42 | + <option value='btn-secondary'><?php esc_html_e('Secondary', 'invoicing'); ?></option> |
|
43 | + <option value='btn-success'><?php esc_html_e('Success', 'invoicing'); ?></option> |
|
44 | + <option value='btn-danger'><?php esc_html_e('Danger', 'invoicing'); ?></option> |
|
45 | + <option value='btn-warning'><?php esc_html_e('Warning', 'invoicing'); ?></option> |
|
46 | + <option value='btn-info'><?php esc_html_e('Info', 'invoicing'); ?></option> |
|
47 | + <option value='btn-light'><?php esc_html_e('Light', 'invoicing'); ?></option> |
|
48 | + <option value='btn-dark'><?php esc_html_e('Dark', 'invoicing'); ?></option> |
|
49 | + <option value='btn-link'><?php esc_html_e('Link', 'invoicing'); ?></option> |
|
50 | 50 | </select> |
51 | 51 | </div> |
@@ -7,28 +7,28 @@ |
||
7 | 7 | * @version 1.0.19 |
8 | 8 | */ |
9 | 9 | |
10 | -defined( 'ABSPATH' ) || exit; |
|
10 | +defined('ABSPATH') || exit; |
|
11 | 11 | |
12 | 12 | ?> |
13 | 13 | |
14 | 14 | <div class='form-group'> |
15 | 15 | <label class="d-block"> |
16 | - <span><?php esc_html_e( 'Input Label', 'invoicing' ); ?></span> |
|
16 | + <span><?php esc_html_e('Input Label', 'invoicing'); ?></span> |
|
17 | 17 | <input v-model='active_form_element.input_label' class='form-control' type="text"/> |
18 | 18 | </label> |
19 | 19 | </div> |
20 | 20 | |
21 | 21 | <div class='form-group'> |
22 | 22 | <label class="d-block"> |
23 | - <span><?php esc_html_e( 'Button Label', 'invoicing' ); ?></span> |
|
23 | + <span><?php esc_html_e('Button Label', 'invoicing'); ?></span> |
|
24 | 24 | <input v-model='active_form_element.button_label' class='form-control' type="text"/> |
25 | 25 | </label> |
26 | 26 | </div> |
27 | 27 | |
28 | 28 | <div class='form-group'> |
29 | 29 | <label class="d-block"> |
30 | - <span><?php esc_html_e( 'Help Text', 'invoicing' ); ?></span> |
|
31 | - <textarea placeholder='<?php esc_attr_e( 'Add some help text for this field', 'invoicing' ); ?>' v-model='active_form_element.description' class='form-control' rows='3'></textarea> |
|
32 | - <small class="form-text text-muted"><?php _e( 'HTML is allowed', 'invoicing' ); ?></small> |
|
30 | + <span><?php esc_html_e('Help Text', 'invoicing'); ?></span> |
|
31 | + <textarea placeholder='<?php esc_attr_e('Add some help text for this field', 'invoicing'); ?>' v-model='active_form_element.description' class='form-control' rows='3'></textarea> |
|
32 | + <small class="form-text text-muted"><?php _e('HTML is allowed', 'invoicing'); ?></small> |
|
33 | 33 | </label> |
34 | 34 | </div> |
@@ -7,7 +7,7 @@ discard block |
||
7 | 7 | * @version 1.0.19 |
8 | 8 | */ |
9 | 9 | |
10 | -defined( 'ABSPATH' ) || exit; |
|
10 | +defined('ABSPATH') || exit; |
|
11 | 11 | |
12 | 12 | ?> |
13 | 13 | |
@@ -31,45 +31,45 @@ discard block |
||
31 | 31 | |
32 | 32 | <div class='form-group'> |
33 | 33 | <label class="d-block"> |
34 | - <span><?php esc_html_e( 'Field Label', 'invoicing' ); ?></span> |
|
34 | + <span><?php esc_html_e('Field Label', 'invoicing'); ?></span> |
|
35 | 35 | <input v-model='field.label' class='form-control' type="text"/> |
36 | 36 | </label> |
37 | 37 | </div> |
38 | 38 | |
39 | 39 | <div class='form-group'> |
40 | 40 | <label class="d-block"> |
41 | - <span><?php esc_html_e( 'Placeholder text', 'invoicing' ); ?></span> |
|
41 | + <span><?php esc_html_e('Placeholder text', 'invoicing'); ?></span> |
|
42 | 42 | <input v-model='field.placeholder' class='form-control' type="text"/> |
43 | 43 | </label> |
44 | 44 | </div> |
45 | 45 | |
46 | 46 | <div class='form-group'> |
47 | 47 | <label class="d-block"> |
48 | - <span><?php esc_html_e( 'Width', 'invoicing' ) ?></span> |
|
48 | + <span><?php esc_html_e('Width', 'invoicing') ?></span> |
|
49 | 49 | <select class='form-control custom-select' v-model='field.grid_width'> |
50 | - <option value='full'><?php esc_html_e( 'Full Width', 'invoicing' ); ?></option> |
|
51 | - <option value='half'><?php esc_html_e( 'Half Width', 'invoicing' ); ?></option> |
|
52 | - <option value='third'><?php esc_html_e( '1/3 Width', 'invoicing' ); ?></option> |
|
50 | + <option value='full'><?php esc_html_e('Full Width', 'invoicing'); ?></option> |
|
51 | + <option value='half'><?php esc_html_e('Half Width', 'invoicing'); ?></option> |
|
52 | + <option value='third'><?php esc_html_e('1/3 Width', 'invoicing'); ?></option> |
|
53 | 53 | </select> |
54 | 54 | </label> |
55 | 55 | </div> |
56 | 56 | |
57 | 57 | <div class='form-group'> |
58 | 58 | <label class="d-block"> |
59 | - <span><?php esc_html_e( 'Help Text', 'invoicing' ); ?></span> |
|
60 | - <textarea placeholder='<?php esc_attr_e( 'Add some help text for this field', 'invoicing' ); ?>' v-model='field.description' class='form-control' rows='3'></textarea> |
|
61 | - <small class="form-text text-muted"><?php _e( 'HTML is allowed', 'invoicing' ); ?></small> |
|
59 | + <span><?php esc_html_e('Help Text', 'invoicing'); ?></span> |
|
60 | + <textarea placeholder='<?php esc_attr_e('Add some help text for this field', 'invoicing'); ?>' v-model='field.description' class='form-control' rows='3'></textarea> |
|
61 | + <small class="form-text text-muted"><?php _e('HTML is allowed', 'invoicing'); ?></small> |
|
62 | 62 | </label> |
63 | 63 | </div> |
64 | 64 | |
65 | 65 | <div class='form-group form-check'> |
66 | 66 | <input :id="active_form_element.id + '_edit_required' + index" v-model='field.required' type='checkbox' class='form-check-input' /> |
67 | - <label class='form-check-label' :for="active_form_element.id + '_edit_required' + index"><?php esc_html_e( 'Is required', 'invoicing' ); ?></label> |
|
67 | + <label class='form-check-label' :for="active_form_element.id + '_edit_required' + index"><?php esc_html_e('Is required', 'invoicing'); ?></label> |
|
68 | 68 | </div> |
69 | 69 | |
70 | 70 | <div class='form-group form-check'> |
71 | 71 | <input :id="active_form_element.id + '_edit_visible' + index" v-model='field.visible' type='checkbox' class='form-check-input' /> |
72 | - <label class='form-check-label' :for="active_form_element.id + '_edit_visible' + index"><?php esc_html_e( 'Is visible', 'invoicing' ); ?></label> |
|
72 | + <label class='form-check-label' :for="active_form_element.id + '_edit_visible' + index"><?php esc_html_e('Is visible', 'invoicing'); ?></label> |
|
73 | 73 | </div> |
74 | 74 | |
75 | 75 | </div> |
@@ -82,18 +82,18 @@ discard block |
||
82 | 82 | |
83 | 83 | <div class='form-group'> |
84 | 84 | <label class="d-block"> |
85 | - <span><?php esc_html_e( 'Address Type', 'invoicing' ) ?><span> |
|
85 | + <span><?php esc_html_e('Address Type', 'invoicing') ?><span> |
|
86 | 86 | <select class='form-control custom-select' v-model='active_form_element.address_type'> |
87 | - <option value='billing'><?php esc_html_e( 'Billing', 'invoicing' ); ?></option> |
|
88 | - <option value='shipping'><?php esc_html_e( 'Shipping', 'invoicing' ); ?></option> |
|
89 | - <option value='both'><?php esc_html_e( 'Both', 'invoicing' ); ?></option> |
|
87 | + <option value='billing'><?php esc_html_e('Billing', 'invoicing'); ?></option> |
|
88 | + <option value='shipping'><?php esc_html_e('Shipping', 'invoicing'); ?></option> |
|
89 | + <option value='both'><?php esc_html_e('Both', 'invoicing'); ?></option> |
|
90 | 90 | </select> |
91 | 91 | </label> |
92 | 92 | </div> |
93 | 93 | |
94 | 94 | <div class='form-group' v-if="active_form_element.address_type == 'both'"> |
95 | 95 | <label class="d-block"> |
96 | - <span><?php esc_html_e( 'Shipping Address Toggle', 'invoicing' ) ?><span> |
|
96 | + <span><?php esc_html_e('Shipping Address Toggle', 'invoicing') ?><span> |
|
97 | 97 | <input type="text" class='form-control custom-select' v-model='active_form_element.shipping_address_toggle' > |
98 | 98 | </label> |
99 | 99 | </div> |