@@ -312,9 +312,9 @@ |
||
| 312 | 312 | foreach (ClassLoader::getRegisteredLoaders() as $vendorDir => $loader) { |
| 313 | 313 | if (isset(self::$installedByVendor[$vendorDir])) { |
| 314 | 314 | $installed[] = self::$installedByVendor[$vendorDir]; |
| 315 | - } elseif (is_file($vendorDir.'/composer/installed.php')) { |
|
| 316 | - $installed[] = self::$installedByVendor[$vendorDir] = require $vendorDir.'/composer/installed.php'; |
|
| 317 | - if (null === self::$installed && strtr($vendorDir.'/composer', '\\', '/') === strtr(__DIR__, '\\', '/')) { |
|
| 315 | + } elseif (is_file($vendorDir . '/composer/installed.php')) { |
|
| 316 | + $installed[] = self::$installedByVendor[$vendorDir] = require $vendorDir . '/composer/installed.php'; |
|
| 317 | + if (null === self::$installed && strtr($vendorDir . '/composer', '\\', '/') === strtr(__DIR__, '\\', '/')) { |
|
| 318 | 318 | self::$installed = $installed[count($installed) - 1]; |
| 319 | 319 | } |
| 320 | 320 | } |
@@ -14,9 +14,9 @@ |
||
| 14 | 14 | } |
| 15 | 15 | if (!ini_get('display_errors')) { |
| 16 | 16 | if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') { |
| 17 | - fwrite(STDERR, 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . implode(PHP_EOL, $issues) . PHP_EOL.PHP_EOL); |
|
| 17 | + fwrite(STDERR, 'Composer detected issues in your platform:' . PHP_EOL . PHP_EOL . implode(PHP_EOL, $issues) . PHP_EOL . PHP_EOL); |
|
| 18 | 18 | } elseif (!headers_sent()) { |
| 19 | - echo 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . str_replace('You are running '.PHP_VERSION.'.', '', implode(PHP_EOL, $issues)) . PHP_EOL.PHP_EOL; |
|
| 19 | + echo 'Composer detected issues in your platform:' . PHP_EOL . PHP_EOL . str_replace('You are running ' . PHP_VERSION . '.', '', implode(PHP_EOL, $issues)) . PHP_EOL . PHP_EOL; |
|
| 20 | 20 | } |
| 21 | 21 | } |
| 22 | 22 | trigger_error( |
@@ -1,10 +1,10 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 3 | +if (!defined('ABSPATH')) { |
|
| 4 | 4 | exit; |
| 5 | 5 | } |
| 6 | 6 | |
| 7 | -if ( ! class_exists( 'AyeCode_Deactivation_Survey' ) ) { |
|
| 7 | +if (!class_exists('AyeCode_Deactivation_Survey')) { |
|
| 8 | 8 | |
| 9 | 9 | class AyeCode_Deactivation_Survey { |
| 10 | 10 | |
@@ -21,18 +21,18 @@ discard block |
||
| 21 | 21 | |
| 22 | 22 | public $version = "1.0.4"; |
| 23 | 23 | |
| 24 | - public static function instance( $plugin = array() ) { |
|
| 25 | - if ( ! isset( self::$instance ) && ! ( self::$instance instanceof AyeCode_Deactivation_Survey ) ) { |
|
| 24 | + public static function instance($plugin = array()) { |
|
| 25 | + if (!isset(self::$instance) && !(self::$instance instanceof AyeCode_Deactivation_Survey)) { |
|
| 26 | 26 | self::$instance = new AyeCode_Deactivation_Survey; |
| 27 | 27 | self::$plugins = array(); |
| 28 | 28 | |
| 29 | - add_action( 'admin_enqueue_scripts', array( self::$instance, 'scripts' ) ); |
|
| 29 | + add_action('admin_enqueue_scripts', array(self::$instance, 'scripts')); |
|
| 30 | 30 | |
| 31 | - do_action( 'ayecode_deactivation_survey_loaded' ); |
|
| 31 | + do_action('ayecode_deactivation_survey_loaded'); |
|
| 32 | 32 | } |
| 33 | 33 | |
| 34 | - if(!empty($plugin)){ |
|
| 35 | - self::$plugins[] = (object)$plugin; |
|
| 34 | + if (!empty($plugin)) { |
|
| 35 | + self::$plugins[] = (object) $plugin; |
|
| 36 | 36 | } |
| 37 | 37 | |
| 38 | 38 | return self::$instance; |
@@ -42,7 +42,7 @@ discard block |
||
| 42 | 42 | global $pagenow; |
| 43 | 43 | |
| 44 | 44 | // Bail if we are not on the plugins page |
| 45 | - if ( $pagenow != "plugins.php" ) { |
|
| 45 | + if ($pagenow != "plugins.php") { |
|
| 46 | 46 | return; |
| 47 | 47 | } |
| 48 | 48 | |
@@ -85,7 +85,7 @@ discard block |
||
| 85 | 85 | 'other' => 'Other', |
| 86 | 86 | ); |
| 87 | 87 | |
| 88 | - foreach($plugins as $plugin) |
|
| 88 | + foreach ($plugins as $plugin) |
|
| 89 | 89 | { |
| 90 | 90 | $plugin->reasons = apply_filters('ayecode_deactivation_survey_reasons', $defaultReasons, $plugin); |
| 91 | 91 | $plugin->url = home_url(); |
@@ -7,15 +7,15 @@ |
||
| 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 | <label><span v-html="form_element.label"></span></label> |
| 15 | 15 | <div class="d-flex w-100 flex-column align-items-center justify-content-center p-2" style="height: 200px; border: 3px dashed rgb(136, 136, 136); cursor: pointer;"> |
| 16 | 16 | <div class="h5 text-dark"> |
| 17 | - <span v-if="form_element.max_file_num > 1"><?php _e( 'Drag files to this area or click to upload', 'invoicing' ); ?></span> |
|
| 18 | - <span v-if="form_element.max_file_num < 2"><?php _e( 'Drag your file to this area or click to upload', 'invoicing' ); ?></span> |
|
| 17 | + <span v-if="form_element.max_file_num > 1"><?php _e('Drag files to this area or click to upload', 'invoicing'); ?></span> |
|
| 18 | + <span v-if="form_element.max_file_num < 2"><?php _e('Drag your file to this area or click to upload', 'invoicing'); ?></span> |
|
| 19 | 19 | </div> |
| 20 | 20 | <small v-if='form_element.description' class='form-text text-muted' v-html='form_element.description'></small> |
| 21 | 21 | </div> |
@@ -7,10 +7,10 @@ |
||
| 7 | 7 | * @version 1.0.19 |
| 8 | 8 | */ |
| 9 | 9 | |
| 10 | -defined( 'ABSPATH' ) || exit; |
|
| 10 | +defined('ABSPATH') || exit; |
|
| 11 | 11 | |
| 12 | -$text = isset( $element['text'] ) ? wp_kses_post( trim( $element['text'] ) ) : ''; |
|
| 12 | +$text = isset($element['text']) ? wp_kses_post(trim($element['text'])) : ''; |
|
| 13 | 13 | |
| 14 | -if ( ! empty( $text ) ) { |
|
| 14 | +if (!empty($text)) { |
|
| 15 | 15 | echo "<p>$text</p>"; |
| 16 | 16 | } |
@@ -60,7 +60,7 @@ discard block |
||
| 60 | 60 | function __construct($name, $slug) { |
| 61 | 61 | $this->name = $name; |
| 62 | 62 | $this->slug = $slug; |
| 63 | - if (!empty($_GET['id'])){ |
|
| 63 | + if (!empty($_GET['id'])) { |
|
| 64 | 64 | $this->isWizard = false; |
| 65 | 65 | } |
| 66 | 66 | } |
@@ -75,7 +75,7 @@ discard block |
||
| 75 | 75 | |
| 76 | 76 | function is_active_addon($post_type = null) { |
| 77 | 77 | |
| 78 | - if ( ! class_exists( 'PMXI_Plugin' ) ) { |
|
| 78 | + if (!class_exists('PMXI_Plugin')) { |
|
| 79 | 79 | return false; |
| 80 | 80 | } |
| 81 | 81 | |
@@ -87,7 +87,7 @@ discard block |
||
| 87 | 87 | } |
| 88 | 88 | } |
| 89 | 89 | |
| 90 | - if ($addon_active){ |
|
| 90 | + if ($addon_active) { |
|
| 91 | 91 | |
| 92 | 92 | $current_theme = wp_get_theme(); |
| 93 | 93 | |
@@ -97,18 +97,18 @@ discard block |
||
| 97 | 97 | |
| 98 | 98 | $addon_active = (@in_array($theme_name, $this->active_themes) or empty($this->active_themes)) ? true : false; |
| 99 | 99 | |
| 100 | - if ( ! $addon_active and $parent_theme ){ |
|
| 100 | + if (!$addon_active and $parent_theme) { |
|
| 101 | 101 | $parent_theme_name = $parent_theme->get('Name'); |
| 102 | 102 | $addon_active = (@in_array($parent_theme_name, $this->active_themes) or empty($this->active_themes)) ? true : false; |
| 103 | 103 | |
| 104 | 104 | } |
| 105 | 105 | |
| 106 | - if ( $addon_active and ! empty($this->active_plugins) ){ |
|
| 106 | + if ($addon_active and !empty($this->active_plugins)) { |
|
| 107 | 107 | |
| 108 | - include_once( ABSPATH . 'wp-admin/includes/plugin.php' ); |
|
| 108 | + include_once(ABSPATH . 'wp-admin/includes/plugin.php'); |
|
| 109 | 109 | |
| 110 | 110 | foreach ($this->active_plugins as $plugin) { |
| 111 | - if ( ! is_plugin_active($plugin) ) { |
|
| 111 | + if (!is_plugin_active($plugin)) { |
|
| 112 | 112 | $addon_active = false; |
| 113 | 113 | break; |
| 114 | 114 | } |
@@ -137,9 +137,9 @@ discard block |
||
| 137 | 137 | $this->when_to_run = "always"; |
| 138 | 138 | } |
| 139 | 139 | |
| 140 | - @$this->active_post_types = ( ! empty($conditions['post_types'])) ? $conditions['post_types'] : array(); |
|
| 141 | - @$this->active_themes = ( ! empty($conditions['themes'])) ? $conditions['themes'] : array(); |
|
| 142 | - @$this->active_plugins = ( ! empty($conditions['plugins'])) ? $conditions['plugins'] : array(); |
|
| 140 | + @$this->active_post_types = (!empty($conditions['post_types'])) ? $conditions['post_types'] : array(); |
|
| 141 | + @$this->active_themes = (!empty($conditions['themes'])) ? $conditions['themes'] : array(); |
|
| 142 | + @$this->active_plugins = (!empty($conditions['plugins'])) ? $conditions['plugins'] : array(); |
|
| 143 | 143 | |
| 144 | 144 | add_filter('pmxi_addons', array($this, 'wpai_api_register')); |
| 145 | 145 | add_filter('wp_all_import_addon_parse', array($this, 'wpai_api_parse')); |
@@ -148,15 +148,15 @@ discard block |
||
| 148 | 148 | add_filter('pmxi_options_options', array($this, 'wpai_api_options')); |
| 149 | 149 | add_filter('wp_all_import_image_sections', array($this, 'additional_sections'), 10, 1); |
| 150 | 150 | add_filter('pmxi_custom_types', array($this, 'filter_post_types'), 10, 2); |
| 151 | - add_filter('pmxi_post_list_order', array($this,'sort_post_types'), 10, 1); |
|
| 152 | - add_filter('wp_all_import_post_type_image', array($this, 'post_type_image'), 10, 1 ); |
|
| 153 | - add_action('pmxi_extend_options_featured', array($this, 'wpai_api_metabox'), 10, 2); |
|
| 151 | + add_filter('pmxi_post_list_order', array($this, 'sort_post_types'), 10, 1); |
|
| 152 | + add_filter('wp_all_import_post_type_image', array($this, 'post_type_image'), 10, 1); |
|
| 153 | + add_action('pmxi_extend_options_featured', array($this, 'wpai_api_metabox'), 10, 2); |
|
| 154 | 154 | add_action('admin_init', array($this, 'admin_notice_ignore')); |
| 155 | 155 | } |
| 156 | 156 | |
| 157 | 157 | function parse($data) { |
| 158 | 158 | |
| 159 | - if ( ! $this->is_active_addon($data['import']->options['custom_type'])) return false; |
|
| 159 | + if (!$this->is_active_addon($data['import']->options['custom_type'])) return false; |
|
| 160 | 160 | |
| 161 | 161 | $parsedData = $this->helper_parse($data, $this->options_array()); |
| 162 | 162 | return $parsedData; |
@@ -166,11 +166,11 @@ discard block |
||
| 166 | 166 | |
| 167 | 167 | function add_field($field_slug, $field_name, $field_type, $enum_values = null, $tooltip = "", $is_html = true, $default_text = '') { |
| 168 | 168 | |
| 169 | - $field = array("name" => $field_name, "type" => $field_type, "enum_values" => $enum_values, "tooltip" => $tooltip, "is_sub_field" => false, "is_main_field" => false, "slug" => $field_slug, "is_html" => $is_html, 'default_text' => $default_text); |
|
| 169 | + $field = array("name" => $field_name, "type" => $field_type, "enum_values" => $enum_values, "tooltip" => $tooltip, "is_sub_field" => false, "is_main_field" => false, "slug" => $field_slug, "is_html" => $is_html, 'default_text' => $default_text); |
|
| 170 | 170 | |
| 171 | 171 | $this->fields[$field_slug] = $field; |
| 172 | 172 | |
| 173 | - if ( ! empty($enum_values) ){ |
|
| 173 | + if (!empty($enum_values)) { |
|
| 174 | 174 | foreach ($enum_values as $key => $value) { |
| 175 | 175 | if (is_array($value)) |
| 176 | 176 | { |
@@ -181,7 +181,7 @@ discard block |
||
| 181 | 181 | else |
| 182 | 182 | { |
| 183 | 183 | foreach ($value as $n => $param) { |
| 184 | - if (is_array($param) and ! empty($this->fields[$param['slug']])){ |
|
| 184 | + if (is_array($param) and !empty($this->fields[$param['slug']])) { |
|
| 185 | 185 | $this->fields[$param['slug']]['is_sub_field'] = true; |
| 186 | 186 | } |
| 187 | 187 | } |
@@ -194,7 +194,7 @@ discard block |
||
| 194 | 194 | |
| 195 | 195 | } |
| 196 | 196 | |
| 197 | - function add_acf_field($field){ |
|
| 197 | + function add_acf_field($field) { |
|
| 198 | 198 | $this->fields[$field->post_name] = array( |
| 199 | 199 | 'type' => 'acf', |
| 200 | 200 | 'field_obj' => $field |
@@ -203,13 +203,13 @@ discard block |
||
| 203 | 203 | |
| 204 | 204 | private $acfGroups = array(); |
| 205 | 205 | |
| 206 | - function use_acf_group($acf_group){ |
|
| 206 | + function use_acf_group($acf_group) { |
|
| 207 | 207 | $this->add_text( |
| 208 | 208 | '<div class="postbox acf_postbox default acf_signle_group rad4"> |
| 209 | - <h3 class="hndle" style="margin-top:0;"><span>'.$acf_group['title'].'</span></h3> |
|
| 209 | + <h3 class="hndle" style="margin-top:0;"><span>'.$acf_group['title'] . '</span></h3> |
|
| 210 | 210 | <div class="inside">'); |
| 211 | 211 | $acf_fields = get_posts(array('posts_per_page' => -1, 'post_type' => 'acf-field', 'post_parent' => $acf_group['ID'], 'post_status' => 'publish', 'orderby' => 'menu_order', 'order' => 'ASC')); |
| 212 | - if (!empty($acf_fields)){ |
|
| 212 | + if (!empty($acf_fields)) { |
|
| 213 | 213 | foreach ($acf_fields as $field) { |
| 214 | 214 | $this->add_acf_field($field); |
| 215 | 215 | } |
@@ -219,7 +219,7 @@ discard block |
||
| 219 | 219 | add_filter('wp_all_import_acf_is_show_group', array($this, 'acf_is_show_group'), 10, 2); |
| 220 | 220 | } |
| 221 | 221 | |
| 222 | - function acf_is_show_group($is_show, $acf_group){ |
|
| 222 | + function acf_is_show_group($is_show, $acf_group) { |
|
| 223 | 223 | return (in_array($acf_group['ID'], $this->acfGroups)) ? false : true; |
| 224 | 224 | } |
| 225 | 225 | |
@@ -231,7 +231,7 @@ discard block |
||
| 231 | 231 | * @param string $default_value - default option value |
| 232 | 232 | * |
| 233 | 233 | */ |
| 234 | - function add_option($slug, $default_value = ''){ |
|
| 234 | + function add_option($slug, $default_value = '') { |
|
| 235 | 235 | $this->options[$slug] = $default_value; |
| 236 | 236 | } |
| 237 | 237 | |
@@ -239,12 +239,12 @@ discard block |
||
| 239 | 239 | |
| 240 | 240 | $options_list = array(); |
| 241 | 241 | |
| 242 | - if ( ! empty( $this->fields ) ) { |
|
| 242 | + if (!empty($this->fields)) { |
|
| 243 | 243 | |
| 244 | 244 | foreach ($this->fields as $field_slug => $field_params) { |
| 245 | 245 | if (in_array($field_params['type'], array('title', 'plain_text', 'acf'))) continue; |
| 246 | 246 | $default_value = ''; |
| 247 | - if (!empty($field_params['enum_values'])){ |
|
| 247 | + if (!empty($field_params['enum_values'])) { |
|
| 248 | 248 | foreach ($field_params['enum_values'] as $key => $value) { |
| 249 | 249 | $default_value = $key; |
| 250 | 250 | break; |
@@ -255,14 +255,14 @@ discard block |
||
| 255 | 255 | |
| 256 | 256 | } |
| 257 | 257 | |
| 258 | - if ( ! empty($this->options) ){ |
|
| 258 | + if (!empty($this->options)) { |
|
| 259 | 259 | foreach ($this->options as $slug => $value) { |
| 260 | 260 | $options_arr[$slug] = $value; |
| 261 | 261 | } |
| 262 | 262 | } |
| 263 | 263 | |
| 264 | 264 | $options_arr[$this->slug] = $options_list; |
| 265 | - $options_arr['rapid_addon'] = plugin_basename( __FILE__ ); |
|
| 265 | + $options_arr['rapid_addon'] = plugin_basename(__FILE__); |
|
| 266 | 266 | |
| 267 | 267 | return $options_arr; |
| 268 | 268 | |
@@ -295,7 +295,7 @@ discard block |
||
| 295 | 295 | |
| 296 | 296 | } |
| 297 | 297 | |
| 298 | - function wpai_api_post_saved($functions){ |
|
| 298 | + function wpai_api_post_saved($functions) { |
|
| 299 | 299 | $functions[$this->slug] = array($this, 'post_saved'); |
| 300 | 300 | return $functions; |
| 301 | 301 | } |
@@ -308,7 +308,7 @@ discard block |
||
| 308 | 308 | |
| 309 | 309 | } |
| 310 | 310 | |
| 311 | - function post_saved( $importData ){ |
|
| 311 | + function post_saved($importData) { |
|
| 312 | 312 | |
| 313 | 313 | if (is_callable($this->post_saved_function)) |
| 314 | 314 | call_user_func($this->post_saved_function, $importData['pid'], $importData['import'], $importData['logger']); |
@@ -327,14 +327,14 @@ discard block |
||
| 327 | 327 | // print_r($import_options); |
| 328 | 328 | // echo "</pre>"; |
| 329 | 329 | |
| 330 | - if ( ! empty($parsedData) ) { |
|
| 330 | + if (!empty($parsedData)) { |
|
| 331 | 331 | |
| 332 | 332 | $this->logger = $importData['logger']; |
| 333 | 333 | |
| 334 | 334 | $post_id = $importData['pid']; |
| 335 | 335 | $index = $importData['i']; |
| 336 | 336 | $data = array(); |
| 337 | - if (!empty($this->fields)){ |
|
| 337 | + if (!empty($this->fields)) { |
|
| 338 | 338 | foreach ($this->fields as $field_slug => $field_params) { |
| 339 | 339 | if (in_array($field_params['type'], array('title', 'plain_text'))) continue; |
| 340 | 340 | switch ($field_params['type']) { |
@@ -345,7 +345,7 @@ discard block |
||
| 345 | 345 | |
| 346 | 346 | $image_url_or_path = $parsedData[$field_slug][$index]; |
| 347 | 347 | |
| 348 | - if ( ! array_key_exists( $field_slug, $import_options['download_image'] ) ) { |
|
| 348 | + if (!array_key_exists($field_slug, $import_options['download_image'])) { |
|
| 349 | 349 | continue 2; |
| 350 | 350 | } |
| 351 | 351 | |
@@ -365,7 +365,7 @@ discard block |
||
| 365 | 365 | |
| 366 | 366 | $image_url_or_path = $parsedData[$field_slug][$index]; |
| 367 | 367 | |
| 368 | - if ( ! array_key_exists( $field_slug, $import_options['download_image'] ) ) { |
|
| 368 | + if (!array_key_exists($field_slug, $import_options['download_image'])) { |
|
| 369 | 369 | continue 2; |
| 370 | 370 | } |
| 371 | 371 | |
@@ -393,7 +393,7 @@ discard block |
||
| 393 | 393 | |
| 394 | 394 | if (!empty($mapping_rules) and is_array($mapping_rules)) { |
| 395 | 395 | foreach ($mapping_rules as $rule_number => $map_to) { |
| 396 | - if (isset($map_to[trim($data[$field_slug])])){ |
|
| 396 | + if (isset($map_to[trim($data[$field_slug])])) { |
|
| 397 | 397 | $data[$field_slug] = trim($map_to[trim($data[$field_slug])]); |
| 398 | 398 | break; |
| 399 | 399 | } |
@@ -442,14 +442,14 @@ discard block |
||
| 442 | 442 | |
| 443 | 443 | echo $this->helper_metabox_bottom(); |
| 444 | 444 | |
| 445 | - if ( ! empty($this->image_sections) ){ |
|
| 445 | + if (!empty($this->image_sections)) { |
|
| 446 | 446 | $is_images_section_enabled = apply_filters('wp_all_import_is_images_section_enabled', true, $post_type); |
| 447 | 447 | foreach ($this->image_sections as $k => $section) { |
| 448 | 448 | $section_options = array(); |
| 449 | 449 | foreach ($this->image_options as $slug => $value) { |
| 450 | 450 | $section_options[$section['slug'] . $slug] = $value; |
| 451 | 451 | } |
| 452 | - if ( ! $is_images_section_enabled and ! $k ){ |
|
| 452 | + if (!$is_images_section_enabled and !$k) { |
|
| 453 | 453 | $section_options[$section['slug'] . 'is_featured'] = 1; |
| 454 | 454 | } |
| 455 | 455 | PMXI_API::add_additional_images_section($section['title'], $section['slug'], $current_values, '', true, false, $section['type']); |
@@ -458,7 +458,7 @@ discard block |
||
| 458 | 458 | |
| 459 | 459 | } |
| 460 | 460 | |
| 461 | - function render_field($field_params, $field_slug, $current_values, $in_the_bottom = false){ |
|
| 461 | + function render_field($field_params, $field_slug, $current_values, $in_the_bottom = false) { |
|
| 462 | 462 | |
| 463 | 463 | if (!isset($current_values[$this->slug][$field_slug])) { |
| 464 | 464 | $current_values[$this->slug][$field_slug] = isset($field_params['default_text']) ? $field_params['default_text'] : ''; |
@@ -471,8 +471,8 @@ discard block |
||
| 471 | 471 | $field_params['name'], |
| 472 | 472 | array( |
| 473 | 473 | 'tooltip' => $field_params['tooltip'], |
| 474 | - 'field_name' => $this->slug."[".$field_slug."]", |
|
| 475 | - 'field_value' => ( $current_values[$this->slug][$field_slug] == '' && $this->isWizard ) ? $field_params['default_text'] : $current_values[$this->slug][$field_slug] |
|
| 474 | + 'field_name' => $this->slug . "[" . $field_slug . "]", |
|
| 475 | + 'field_value' => ($current_values[$this->slug][$field_slug] == '' && $this->isWizard) ? $field_params['default_text'] : $current_values[$this->slug][$field_slug] |
|
| 476 | 476 | ) |
| 477 | 477 | ); |
| 478 | 478 | |
@@ -483,8 +483,8 @@ discard block |
||
| 483 | 483 | $field_params['name'], |
| 484 | 484 | array( |
| 485 | 485 | 'tooltip' => $field_params['tooltip'], |
| 486 | - 'field_name' => $this->slug."[".$field_slug."]", |
|
| 487 | - 'field_value' => ( $current_values[$this->slug][$field_slug] == '' && $this->isWizard ) ? $field_params['default_text'] : $current_values[$this->slug][$field_slug] |
|
| 486 | + 'field_name' => $this->slug . "[" . $field_slug . "]", |
|
| 487 | + 'field_value' => ($current_values[$this->slug][$field_slug] == '' && $this->isWizard) ? $field_params['default_text'] : $current_values[$this->slug][$field_slug] |
|
| 488 | 488 | ) |
| 489 | 489 | ); |
| 490 | 490 | |
@@ -495,8 +495,8 @@ discard block |
||
| 495 | 495 | $field_params['name'], |
| 496 | 496 | array( |
| 497 | 497 | 'tooltip' => $field_params['tooltip'], |
| 498 | - 'field_name' => $this->slug."[".$field_slug."]", |
|
| 499 | - 'field_value' => ( $current_values[$this->slug][$field_slug] == '' && $this->isWizard ) ? $field_params['default_text'] : $current_values[$this->slug][$field_slug] |
|
| 498 | + 'field_name' => $this->slug . "[" . $field_slug . "]", |
|
| 499 | + 'field_value' => ($current_values[$this->slug][$field_slug] == '' && $this->isWizard) ? $field_params['default_text'] : $current_values[$this->slug][$field_slug] |
|
| 500 | 500 | ) |
| 501 | 501 | ); |
| 502 | 502 | |
@@ -509,7 +509,7 @@ discard block |
||
| 509 | 509 | $field_params['name'], |
| 510 | 510 | array( |
| 511 | 511 | 'tooltip' => $field_params['tooltip'], |
| 512 | - 'field_name' => $this->slug."[".$field_slug."]", |
|
| 512 | + 'field_name' => $this->slug . "[" . $field_slug . "]", |
|
| 513 | 513 | 'field_value' => $current_values[$this->slug][$field_slug], |
| 514 | 514 | 'download_image' => $current_values[$this->slug]['download_image'][$field_slug], |
| 515 | 515 | 'field_key' => $field_slug, |
@@ -528,7 +528,7 @@ discard block |
||
| 528 | 528 | $field_params['name'], |
| 529 | 529 | array( |
| 530 | 530 | 'tooltip' => $field_params['tooltip'], |
| 531 | - 'field_name' => $this->slug."[".$field_slug."]", |
|
| 531 | + 'field_name' => $this->slug . "[" . $field_slug . "]", |
|
| 532 | 532 | 'field_value' => $current_values[$this->slug][$field_slug], |
| 533 | 533 | 'enum_values' => $field_params['enum_values'], |
| 534 | 534 | 'mapping' => true, |
@@ -540,14 +540,14 @@ discard block |
||
| 540 | 540 | ) |
| 541 | 541 | ); |
| 542 | 542 | |
| 543 | - } else if($field_params['type'] == 'accordion') { |
|
| 543 | + } else if ($field_params['type'] == 'accordion') { |
|
| 544 | 544 | |
| 545 | 545 | PMXI_API::add_field( |
| 546 | 546 | 'accordion', |
| 547 | 547 | $field_params['name'], |
| 548 | 548 | array( |
| 549 | 549 | 'tooltip' => $field_params['tooltip'], |
| 550 | - 'field_name' => $this->slug."[".$field_slug."]", |
|
| 550 | + 'field_name' => $this->slug . "[" . $field_slug . "]", |
|
| 551 | 551 | 'field_key' => $field_slug, |
| 552 | 552 | 'addon_prefix' => $this->slug, |
| 553 | 553 | 'sub_fields' => $this->get_sub_fields($field_params, $field_slug, $current_values), |
@@ -555,7 +555,7 @@ discard block |
||
| 555 | 555 | ) |
| 556 | 556 | ); |
| 557 | 557 | |
| 558 | - } else if($field_params['type'] == 'acf') { |
|
| 558 | + } else if ($field_params['type'] == 'acf') { |
|
| 559 | 559 | $fieldData = (!empty($field_params['field_obj']->post_content)) ? unserialize($field_params['field_obj']->post_content) : array(); |
| 560 | 560 | $fieldData['ID'] = $field_params['field_obj']->ID; |
| 561 | 561 | $fieldData['id'] = $field_params['field_obj']->ID; |
@@ -563,19 +563,19 @@ discard block |
||
| 563 | 563 | $fieldData['key'] = $field_params['field_obj']->post_name; |
| 564 | 564 | if (empty($fieldData['name'])) $fieldData['name'] = $field_params['field_obj']->post_excerpt; |
| 565 | 565 | if (function_exists('pmai_render_field')) { |
| 566 | - echo pmai_render_field($fieldData, ( ! empty($current_values) ) ? $current_values : array() ); |
|
| 566 | + echo pmai_render_field($fieldData, (!empty($current_values)) ? $current_values : array()); |
|
| 567 | 567 | } |
| 568 | - } else if($field_params['type'] == 'title'){ |
|
| 568 | + } else if ($field_params['type'] == 'title') { |
|
| 569 | 569 | ?> |
| 570 | - <h4 class="wpallimport-add-on-options-title"><?php _e($field_params['name'], 'wp_all_import_plugin'); ?><?php if ( ! empty($field_params['tooltip'])): ?><a href="#help" class="wpallimport-help" title="<?php echo $field_params['tooltip']; ?>" style="position:relative; top: -1px;">?</a><?php endif; ?></h4> |
|
| 570 | + <h4 class="wpallimport-add-on-options-title"><?php _e($field_params['name'], 'wp_all_import_plugin'); ?><?php if (!empty($field_params['tooltip'])): ?><a href="#help" class="wpallimport-help" title="<?php echo $field_params['tooltip']; ?>" style="position:relative; top: -1px;">?</a><?php endif; ?></h4> |
|
| 571 | 571 | <?php |
| 572 | 572 | |
| 573 | - } else if($field_params['type'] == 'plain_text'){ |
|
| 573 | + } else if ($field_params['type'] == 'plain_text') { |
|
| 574 | 574 | if ($field_params['is_html']): |
| 575 | 575 | echo $field_params['name']; |
| 576 | 576 | else: |
| 577 | 577 | ?> |
| 578 | - <p style="margin: 0 0 12px 0;"><?php echo $field_params['name'];?></p> |
|
| 578 | + <p style="margin: 0 0 12px 0;"><?php echo $field_params['name']; ?></p> |
|
| 579 | 579 | <?php |
| 580 | 580 | endif; |
| 581 | 581 | } |
@@ -587,19 +587,19 @@ discard block |
||
| 587 | 587 | * Helper function for nested radio fields |
| 588 | 588 | * |
| 589 | 589 | */ |
| 590 | - function get_sub_fields($field_params, $field_slug, $current_values){ |
|
| 590 | + function get_sub_fields($field_params, $field_slug, $current_values) { |
|
| 591 | 591 | $sub_fields = array(); |
| 592 | - if ( ! empty($field_params['enum_values']) ){ |
|
| 592 | + if (!empty($field_params['enum_values'])) { |
|
| 593 | 593 | foreach ($field_params['enum_values'] as $key => $value) { |
| 594 | 594 | $sub_fields[$key] = array(); |
| 595 | - if (is_array($value)){ |
|
| 596 | - if ($field_params['type'] == 'accordion'){ |
|
| 595 | + if (is_array($value)) { |
|
| 596 | + if ($field_params['type'] == 'accordion') { |
|
| 597 | 597 | $sub_fields[$key][] = $this->convert_field($value, $current_values); |
| 598 | 598 | } |
| 599 | 599 | else |
| 600 | 600 | { |
| 601 | 601 | foreach ($value as $k => $sub_field) { |
| 602 | - if (is_array($sub_field) and ! empty($this->fields[$sub_field['slug']])) |
|
| 602 | + if (is_array($sub_field) and !empty($this->fields[$sub_field['slug']])) |
|
| 603 | 603 | { |
| 604 | 604 | $sub_fields[$key][] = $this->convert_field($sub_field, $current_values); |
| 605 | 605 | } |
@@ -611,7 +611,7 @@ discard block |
||
| 611 | 611 | return $sub_fields; |
| 612 | 612 | } |
| 613 | 613 | |
| 614 | - function convert_field($sub_field, $current_values){ |
|
| 614 | + function convert_field($sub_field, $current_values) { |
|
| 615 | 615 | $field = array(); |
| 616 | 616 | if (!isset($current_values[$this->slug][$sub_field['slug']])) { |
| 617 | 617 | $current_values[$this->slug][$sub_field['slug']] = isset($sub_field['default_text']) ? $sub_field['default_text'] : ''; |
@@ -623,7 +623,7 @@ discard block |
||
| 623 | 623 | 'label' => $this->fields[$sub_field['slug']]['name'], |
| 624 | 624 | 'params' => array( |
| 625 | 625 | 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
| 626 | - 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
| 626 | + 'field_name' => $this->slug . "[" . $sub_field['slug'] . "]", |
|
| 627 | 627 | 'field_value' => ($current_values[$this->slug][$sub_field['slug']] == '' && $this->isWizard) ? $sub_field['default_text'] : $current_values[$this->slug][$sub_field['slug']], |
| 628 | 628 | 'is_main_field' => $sub_field['is_main_field'] |
| 629 | 629 | ) |
@@ -635,7 +635,7 @@ discard block |
||
| 635 | 635 | 'label' => $this->fields[$sub_field['slug']]['name'], |
| 636 | 636 | 'params' => array( |
| 637 | 637 | 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
| 638 | - 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
| 638 | + 'field_name' => $this->slug . "[" . $sub_field['slug'] . "]", |
|
| 639 | 639 | 'field_value' => ($current_values[$this->slug][$sub_field['slug']] == '' && $this->isWizard) ? $sub_field['default_text'] : $current_values[$this->slug][$sub_field['slug']], |
| 640 | 640 | 'is_main_field' => $sub_field['is_main_field'] |
| 641 | 641 | ) |
@@ -647,7 +647,7 @@ discard block |
||
| 647 | 647 | 'label' => $this->fields[$sub_field['slug']]['name'], |
| 648 | 648 | 'params' => array( |
| 649 | 649 | 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
| 650 | - 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
| 650 | + 'field_name' => $this->slug . "[" . $sub_field['slug'] . "]", |
|
| 651 | 651 | 'field_value' => ($current_values[$this->slug][$sub_field['slug']] == '' && $this->isWizard) ? $sub_field['default_text'] : $current_values[$this->slug][$sub_field['slug']], |
| 652 | 652 | 'is_main_field' => $sub_field['is_main_field'] |
| 653 | 653 | ) |
@@ -659,7 +659,7 @@ discard block |
||
| 659 | 659 | 'label' => $this->fields[$sub_field['slug']]['name'], |
| 660 | 660 | 'params' => array( |
| 661 | 661 | 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
| 662 | - 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
| 662 | + 'field_name' => $this->slug . "[" . $sub_field['slug'] . "]", |
|
| 663 | 663 | 'field_value' => $current_values[$this->slug][$sub_field['slug']], |
| 664 | 664 | 'download_image' => null, |
| 665 | 665 | 'field_key' => $sub_field['slug'], |
@@ -668,7 +668,7 @@ discard block |
||
| 668 | 668 | ) |
| 669 | 669 | ); |
| 670 | 670 | |
| 671 | - if ( array_key_exists( 'download_image', $current_values[$this->slug] ) && array_key_exists( $sub_field['slug'], $current_values[$this->slug]['download_image'] ) ) { |
|
| 671 | + if (array_key_exists('download_image', $current_values[$this->slug]) && array_key_exists($sub_field['slug'], $current_values[$this->slug]['download_image'])) { |
|
| 672 | 672 | $field['params']['download_image'] = $current_values[$this->slug]['download_image'][$sub_field['slug']]; |
| 673 | 673 | } |
| 674 | 674 | break; |
@@ -678,7 +678,7 @@ discard block |
||
| 678 | 678 | 'label' => $this->fields[$sub_field['slug']]['name'], |
| 679 | 679 | 'params' => array( |
| 680 | 680 | 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
| 681 | - 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
| 681 | + 'field_name' => $this->slug . "[" . $sub_field['slug'] . "]", |
|
| 682 | 682 | 'field_value' => $current_values[$this->slug][$sub_field['slug']], |
| 683 | 683 | 'download_image' => null, |
| 684 | 684 | 'field_key' => $sub_field['slug'], |
@@ -687,7 +687,7 @@ discard block |
||
| 687 | 687 | ) |
| 688 | 688 | ); |
| 689 | 689 | |
| 690 | - if ( array_key_exists( 'download_image', $current_values[$this->slug] ) && array_key_exists( $sub_field['slug'], $current_values[$this->slug]['download_image'] ) ) { |
|
| 690 | + if (array_key_exists('download_image', $current_values[$this->slug]) && array_key_exists($sub_field['slug'], $current_values[$this->slug]['download_image'])) { |
|
| 691 | 691 | $field['params']['download_image'] = $current_values[$this->slug]['download_image'][$sub_field['slug']]; |
| 692 | 692 | } |
| 693 | 693 | |
@@ -698,7 +698,7 @@ discard block |
||
| 698 | 698 | 'label' => $this->fields[$sub_field['slug']]['name'], |
| 699 | 699 | 'params' => array( |
| 700 | 700 | 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
| 701 | - 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
| 701 | + 'field_name' => $this->slug . "[" . $sub_field['slug'] . "]", |
|
| 702 | 702 | 'field_value' => $current_values[$this->slug][$sub_field['slug']], |
| 703 | 703 | 'enum_values' => $this->fields[$sub_field['slug']]['enum_values'], |
| 704 | 704 | 'mapping' => true, |
@@ -717,7 +717,7 @@ discard block |
||
| 717 | 717 | 'label' => $this->fields[$sub_field['slug']]['name'], |
| 718 | 718 | 'params' => array( |
| 719 | 719 | 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
| 720 | - 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
| 720 | + 'field_name' => $this->slug . "[" . $sub_field['slug'] . "]", |
|
| 721 | 721 | 'field_key' => $sub_field['slug'], |
| 722 | 722 | 'addon_prefix' => $this->slug, |
| 723 | 723 | 'sub_fields' => $this->get_sub_fields($this->fields[$sub_field['slug']], $sub_field['slug'], $current_values), |
@@ -738,12 +738,12 @@ discard block |
||
| 738 | 738 | * |
| 739 | 739 | * |
| 740 | 740 | */ |
| 741 | - function add_options( $main_field = false, $title = '', $fields = array() ){ |
|
| 741 | + function add_options($main_field = false, $title = '', $fields = array()) { |
|
| 742 | 742 | |
| 743 | - if ( ! empty($fields) ) |
|
| 743 | + if (!empty($fields)) |
|
| 744 | 744 | { |
| 745 | 745 | |
| 746 | - if ($main_field){ |
|
| 746 | + if ($main_field) { |
|
| 747 | 747 | |
| 748 | 748 | $main_field['is_main_field'] = true; |
| 749 | 749 | $fields[] = $main_field; |
@@ -756,7 +756,7 @@ discard block |
||
| 756 | 756 | |
| 757 | 757 | } |
| 758 | 758 | |
| 759 | - function add_title($title = '', $tooltip = ''){ |
|
| 759 | + function add_title($title = '', $tooltip = '') { |
|
| 760 | 760 | |
| 761 | 761 | if (empty($title)) return; |
| 762 | 762 | |
@@ -764,7 +764,7 @@ discard block |
||
| 764 | 764 | |
| 765 | 765 | } |
| 766 | 766 | |
| 767 | - function add_text($text = '', $is_html = false){ |
|
| 767 | + function add_text($text = '', $is_html = false) { |
|
| 768 | 768 | |
| 769 | 769 | if (empty($text)) return; |
| 770 | 770 | |
@@ -862,10 +862,10 @@ discard block |
||
| 862 | 862 | margin: 45px 0 15px 0; |
| 863 | 863 | } |
| 864 | 864 | </style> |
| 865 | - <div class="wpallimport-collapsed wpallimport-section wpallimport-addon '.$this->slug.' closed"> |
|
| 865 | + <div class="wpallimport-collapsed wpallimport-section wpallimport-addon '.$this->slug . ' closed"> |
|
| 866 | 866 | <div class="wpallimport-content-section"> |
| 867 | 867 | <div class="wpallimport-collapsed-header"> |
| 868 | - <h3>'.__($name,'pmxi_plugin').'</h3> |
|
| 868 | + <h3>'.__($name, 'pmxi_plugin') . '</h3> |
|
| 869 | 869 | </div> |
| 870 | 870 | <div class="wpallimport-collapsed-content" style="padding: 0;"> |
| 871 | 871 | <div class="wpallimport-collapsed-content-inner"> |
@@ -891,8 +891,8 @@ discard block |
||
| 891 | 891 | * simply add an additional section for attachments |
| 892 | 892 | * |
| 893 | 893 | */ |
| 894 | - function import_files( $slug, $title, $callback = NULL ){ |
|
| 895 | - $this->import_images( $slug, $title, 'files', $callback); |
|
| 894 | + function import_files($slug, $title, $callback = NULL) { |
|
| 895 | + $this->import_images($slug, $title, 'files', $callback); |
|
| 896 | 896 | } |
| 897 | 897 | |
| 898 | 898 | /** |
@@ -900,9 +900,9 @@ discard block |
||
| 900 | 900 | * simply add an additional section |
| 901 | 901 | * |
| 902 | 902 | */ |
| 903 | - function import_images( $slug, $title, $type = 'images', $callback = NULL ){ |
|
| 903 | + function import_images($slug, $title, $type = 'images', $callback = NULL) { |
|
| 904 | 904 | |
| 905 | - if ( empty($title) or empty($slug) ) return; |
|
| 905 | + if (empty($title) or empty($slug)) return; |
|
| 906 | 906 | |
| 907 | 907 | if (is_array($slug)) { |
| 908 | 908 | $section_slug = 'pmxi_' . md5(serialize($slug)); |
@@ -920,17 +920,17 @@ discard block |
||
| 920 | 920 | $this->add_option($section_slug . $option_slug, $value); |
| 921 | 921 | } |
| 922 | 922 | |
| 923 | - if (count($this->image_sections) > 1){ |
|
| 923 | + if (count($this->image_sections) > 1) { |
|
| 924 | 924 | add_filter('wp_all_import_is_show_add_new_images', array($this, 'filter_is_show_add_new_images'), 10, 2); |
| 925 | 925 | } |
| 926 | 926 | |
| 927 | 927 | add_filter('wp_all_import_is_allow_import_images', array($this, 'is_allow_import_images'), 10, 2); |
| 928 | 928 | |
| 929 | 929 | if ($callback && is_callable($callback)) { |
| 930 | - add_action( $section_slug, $callback, 10, 4); |
|
| 930 | + add_action($section_slug, $callback, 10, 4); |
|
| 931 | 931 | } else { |
| 932 | 932 | if (function_exists($slug)) { |
| 933 | - add_action( $section_slug, $slug, 10, 4); |
|
| 933 | + add_action($section_slug, $slug, 10, 4); |
|
| 934 | 934 | } |
| 935 | 935 | } |
| 936 | 936 | } |
@@ -939,7 +939,7 @@ discard block |
||
| 939 | 939 | * filter to allow import images for free edition of WP All Import |
| 940 | 940 | * |
| 941 | 941 | */ |
| 942 | - function is_allow_import_images($is_allow, $post_type){ |
|
| 942 | + function is_allow_import_images($is_allow, $post_type) { |
|
| 943 | 943 | return ($this->is_active_addon($post_type)) ? true : $is_allow; |
| 944 | 944 | } |
| 945 | 945 | |
@@ -948,8 +948,8 @@ discard block |
||
| 948 | 948 | * filter to control additional images sections |
| 949 | 949 | * |
| 950 | 950 | */ |
| 951 | - function additional_sections($sections){ |
|
| 952 | - if ( ! empty($this->image_sections) ){ |
|
| 951 | + function additional_sections($sections) { |
|
| 952 | + if (!empty($this->image_sections)) { |
|
| 953 | 953 | foreach ($this->image_sections as $add_section) { |
| 954 | 954 | $sections[] = $add_section; |
| 955 | 955 | } |
@@ -962,7 +962,7 @@ discard block |
||
| 962 | 962 | * remove the 'Don't touch existing images, append new images' when more than one image section is in use. |
| 963 | 963 | * |
| 964 | 964 | */ |
| 965 | - function filter_is_show_add_new_images($is_show, $post_type){ |
|
| 965 | + function filter_is_show_add_new_images($is_show, $post_type) { |
|
| 966 | 966 | return ($this->is_active_addon($post_type)) ? false : $is_show; |
| 967 | 967 | } |
| 968 | 968 | |
@@ -971,12 +971,12 @@ discard block |
||
| 971 | 971 | * disable the default images section |
| 972 | 972 | * |
| 973 | 973 | */ |
| 974 | - function disable_default_images($post_type = false){ |
|
| 974 | + function disable_default_images($post_type = false) { |
|
| 975 | 975 | |
| 976 | 976 | add_filter('wp_all_import_is_images_section_enabled', array($this, 'is_enable_default_images_section'), 10, 2); |
| 977 | 977 | |
| 978 | 978 | } |
| 979 | - function is_enable_default_images_section($is_enabled, $post_type){ |
|
| 979 | + function is_enable_default_images_section($is_enabled, $post_type) { |
|
| 980 | 980 | |
| 981 | 981 | return ($this->is_active_addon($post_type)) ? false : true; |
| 982 | 982 | |
@@ -988,7 +988,7 @@ discard block |
||
| 988 | 988 | |
| 989 | 989 | $data = array(); // parsed data |
| 990 | 990 | |
| 991 | - if ( ! empty($import->options[$this->slug])){ |
|
| 991 | + if (!empty($import->options[$this->slug])) { |
|
| 992 | 992 | |
| 993 | 993 | $this->logger = $parsingData['logger']; |
| 994 | 994 | |
@@ -997,9 +997,9 @@ discard block |
||
| 997 | 997 | $tmp_files = array(); |
| 998 | 998 | |
| 999 | 999 | foreach ($options[$this->slug] as $option_name => $option_value) { |
| 1000 | - if ( isset($import->options[$this->slug][$option_name]) and $import->options[$this->slug][$option_name] != '') { |
|
| 1000 | + if (isset($import->options[$this->slug][$option_name]) and $import->options[$this->slug][$option_name] != '') { |
|
| 1001 | 1001 | if ($import->options[$this->slug][$option_name] == "xpath") { |
| 1002 | - if ($import->options[$this->slug]['xpaths'][$option_name] == ""){ |
|
| 1002 | + if ($import->options[$this->slug]['xpaths'][$option_name] == "") { |
|
| 1003 | 1003 | $count and $data[$option_name] = array_fill(0, $count, ""); |
| 1004 | 1004 | } else { |
| 1005 | 1005 | $data[$option_name] = XmlImportParser::factory($xml, $cxpath, (string) $import->options[$this->slug]['xpaths'][$option_name], $file)->parse(); |
@@ -1038,11 +1038,11 @@ discard block |
||
| 1038 | 1038 | |
| 1039 | 1039 | if ($import_options['update_all_data'] == 'yes') return true; |
| 1040 | 1040 | |
| 1041 | - if ( ! $import_options['is_update_custom_fields'] ) return false; |
|
| 1041 | + if (!$import_options['is_update_custom_fields']) return false; |
|
| 1042 | 1042 | |
| 1043 | 1043 | if ($import_options['update_custom_fields_logic'] == "full_update") return true; |
| 1044 | - if ($import_options['update_custom_fields_logic'] == "only" and ! empty($import_options['custom_fields_list']) and is_array($import_options['custom_fields_list']) and in_array($meta_key, $import_options['custom_fields_list']) ) return true; |
|
| 1045 | - if ($import_options['update_custom_fields_logic'] == "all_except" and ( empty($import_options['custom_fields_list']) or ! in_array($meta_key, $import_options['custom_fields_list']) )) return true; |
|
| 1044 | + if ($import_options['update_custom_fields_logic'] == "only" and !empty($import_options['custom_fields_list']) and is_array($import_options['custom_fields_list']) and in_array($meta_key, $import_options['custom_fields_list'])) return true; |
|
| 1045 | + if ($import_options['update_custom_fields_logic'] == "all_except" and (empty($import_options['custom_fields_list']) or !in_array($meta_key, $import_options['custom_fields_list']))) return true; |
|
| 1046 | 1046 | |
| 1047 | 1047 | return false; |
| 1048 | 1048 | |
@@ -1058,11 +1058,11 @@ discard block |
||
| 1058 | 1058 | |
| 1059 | 1059 | if ($import_options['update_all_data'] == 'yes') return true; |
| 1060 | 1060 | |
| 1061 | - if ( ! $import_options['is_update_categories'] ) return false; |
|
| 1061 | + if (!$import_options['is_update_categories']) return false; |
|
| 1062 | 1062 | |
| 1063 | 1063 | if ($import_options['update_categories_logic'] == "full_update") return true; |
| 1064 | - if ($import_options['update_categories_logic'] == "only" and ! empty($import_options['taxonomies_list']) and is_array($import_options['taxonomies_list']) and in_array($tax_name, $import_options['taxonomies_list']) ) return true; |
|
| 1065 | - if ($import_options['update_categories_logic'] == "all_except" and ( empty($import_options['taxonomies_list']) or ! in_array($tax_name, $import_options['taxonomies_list']) )) return true; |
|
| 1064 | + if ($import_options['update_categories_logic'] == "only" and !empty($import_options['taxonomies_list']) and is_array($import_options['taxonomies_list']) and in_array($tax_name, $import_options['taxonomies_list'])) return true; |
|
| 1065 | + if ($import_options['update_categories_logic'] == "all_except" and (empty($import_options['taxonomies_list']) or !in_array($tax_name, $import_options['taxonomies_list']))) return true; |
|
| 1066 | 1066 | |
| 1067 | 1067 | return false; |
| 1068 | 1068 | |
@@ -1083,8 +1083,8 @@ discard block |
||
| 1083 | 1083 | |
| 1084 | 1084 | |
| 1085 | 1085 | function admin_notice_ignore() { |
| 1086 | - if (isset($_GET[$this->slug.'_ignore']) && '0' == $_GET[$this->slug.'_ignore'] ) { |
|
| 1087 | - update_option($this->slug.'_ignore', 'true'); |
|
| 1086 | + if (isset($_GET[$this->slug . '_ignore']) && '0' == $_GET[$this->slug . '_ignore']) { |
|
| 1087 | + update_option($this->slug . '_ignore', 'true'); |
|
| 1088 | 1088 | } |
| 1089 | 1089 | } |
| 1090 | 1090 | |
@@ -1094,10 +1094,10 @@ discard block |
||
| 1094 | 1094 | if ($this->notice_text) { |
| 1095 | 1095 | $notice_text = $this->notice_text; |
| 1096 | 1096 | } else { |
| 1097 | - $notice_text = $this->name.' requires WP All Import <a href="http://www.wpallimport.com/" target="_blank">Pro</a> or <a href="http://wordpress.org/plugins/wp-all-import" target="_blank">Free</a>.'; |
|
| 1097 | + $notice_text = $this->name . ' requires WP All Import <a href="http://www.wpallimport.com/" target="_blank">Pro</a> or <a href="http://wordpress.org/plugins/wp-all-import" target="_blank">Free</a>.'; |
|
| 1098 | 1098 | } |
| 1099 | 1099 | |
| 1100 | - if (!get_option(sanitize_key($this->slug).'_notice_ignore')) { |
|
| 1100 | + if (!get_option(sanitize_key($this->slug) . '_notice_ignore')) { |
|
| 1101 | 1101 | |
| 1102 | 1102 | ?> |
| 1103 | 1103 | |
@@ -1105,9 +1105,9 @@ discard block |
||
| 1105 | 1105 | <p><?php _e( |
| 1106 | 1106 | sprintf( |
| 1107 | 1107 | $notice_text, |
| 1108 | - '?'.$this->slug.'_ignore=0' |
|
| 1108 | + '?' . $this->slug . '_ignore=0' |
|
| 1109 | 1109 | ), |
| 1110 | - 'rapid_addon_'.$this->slug |
|
| 1110 | + 'rapid_addon_' . $this->slug |
|
| 1111 | 1111 | ); ?></p> |
| 1112 | 1112 | </div> |
| 1113 | 1113 | |
@@ -1126,14 +1126,14 @@ discard block |
||
| 1126 | 1126 | |
| 1127 | 1127 | $is_show_notice = false; |
| 1128 | 1128 | |
| 1129 | - include_once( ABSPATH . 'wp-admin/includes/plugin.php' ); |
|
| 1129 | + include_once(ABSPATH . 'wp-admin/includes/plugin.php'); |
|
| 1130 | 1130 | |
| 1131 | - if ( ! class_exists( 'PMXI_Plugin' ) ) { |
|
| 1131 | + if (!class_exists('PMXI_Plugin')) { |
|
| 1132 | 1132 | $is_show_notice = true; |
| 1133 | 1133 | } |
| 1134 | 1134 | |
| 1135 | 1135 | // Supported Themes |
| 1136 | - if ( ! $is_show_notice and ! empty($conditions['themes']) ){ |
|
| 1136 | + if (!$is_show_notice and !empty($conditions['themes'])) { |
|
| 1137 | 1137 | |
| 1138 | 1138 | $themeInfo = wp_get_theme(); |
| 1139 | 1139 | $parentInfo = $themeInfo->parent(); |
@@ -1141,7 +1141,7 @@ discard block |
||
| 1141 | 1141 | |
| 1142 | 1142 | $is_show_notice = in_array($currentTheme, $conditions['themes']) ? false : true; |
| 1143 | 1143 | |
| 1144 | - if ( $is_show_notice and $parentInfo ){ |
|
| 1144 | + if ($is_show_notice and $parentInfo) { |
|
| 1145 | 1145 | $parent_theme = $parentInfo->get('Name'); |
| 1146 | 1146 | $is_show_notice = in_array($parent_theme, $conditions['themes']) ? false : true; |
| 1147 | 1147 | } |
@@ -1149,22 +1149,22 @@ discard block |
||
| 1149 | 1149 | } |
| 1150 | 1150 | |
| 1151 | 1151 | // Required Plugins |
| 1152 | - if ( ! $is_show_notice and ! empty($conditions['plugins']) ){ |
|
| 1152 | + if (!$is_show_notice and !empty($conditions['plugins'])) { |
|
| 1153 | 1153 | |
| 1154 | 1154 | $requires_counter = 0; |
| 1155 | 1155 | foreach ($conditions['plugins'] as $plugin) { |
| 1156 | - if ( is_plugin_active($plugin) ) $requires_counter++; |
|
| 1156 | + if (is_plugin_active($plugin)) $requires_counter++; |
|
| 1157 | 1157 | } |
| 1158 | 1158 | |
| 1159 | - if ($requires_counter != count($conditions['plugins'])){ |
|
| 1159 | + if ($requires_counter != count($conditions['plugins'])) { |
|
| 1160 | 1160 | $is_show_notice = true; |
| 1161 | 1161 | } |
| 1162 | 1162 | |
| 1163 | 1163 | } |
| 1164 | 1164 | |
| 1165 | - if ( $is_show_notice ){ |
|
| 1165 | + if ($is_show_notice) { |
|
| 1166 | 1166 | |
| 1167 | - if ( $notice_text != '' ) { |
|
| 1167 | + if ($notice_text != '') { |
|
| 1168 | 1168 | $this->notice_text = $notice_text; |
| 1169 | 1169 | } |
| 1170 | 1170 | |
@@ -1173,34 +1173,34 @@ discard block |
||
| 1173 | 1173 | |
| 1174 | 1174 | } |
| 1175 | 1175 | |
| 1176 | - function log( $m = false){ |
|
| 1176 | + function log($m = false) { |
|
| 1177 | 1177 | |
| 1178 | 1178 | $m and $this->logger and call_user_func($this->logger, $m); |
| 1179 | 1179 | |
| 1180 | 1180 | } |
| 1181 | 1181 | |
| 1182 | - public function remove_post_type( $type = '' ) { |
|
| 1183 | - if ( ! empty( $type ) ) { |
|
| 1184 | - $this->add_option( 'post_types_to_remove', $type ); |
|
| 1182 | + public function remove_post_type($type = '') { |
|
| 1183 | + if (!empty($type)) { |
|
| 1184 | + $this->add_option('post_types_to_remove', $type); |
|
| 1185 | 1185 | } |
| 1186 | 1186 | } |
| 1187 | 1187 | |
| 1188 | - public function filter_post_types( $custom_types = array(), $custom_type = '' ) { |
|
| 1188 | + public function filter_post_types($custom_types = array(), $custom_type = '') { |
|
| 1189 | 1189 | $options = $this->options_array(); |
| 1190 | 1190 | $option_key = 'post_types_to_remove'; |
| 1191 | 1191 | |
| 1192 | - if ( array_key_exists( $option_key, $options ) ) { |
|
| 1193 | - $type = $options[ $option_key ]; |
|
| 1192 | + if (array_key_exists($option_key, $options)) { |
|
| 1193 | + $type = $options[$option_key]; |
|
| 1194 | 1194 | |
| 1195 | - if ( ! empty( $type ) ) { |
|
| 1196 | - if ( ! is_array( $type ) ) { |
|
| 1197 | - if ( array_key_exists( $type, $custom_types ) ) { |
|
| 1198 | - unset( $custom_types[ $type ] ); |
|
| 1195 | + if (!empty($type)) { |
|
| 1196 | + if (!is_array($type)) { |
|
| 1197 | + if (array_key_exists($type, $custom_types)) { |
|
| 1198 | + unset($custom_types[$type]); |
|
| 1199 | 1199 | } |
| 1200 | 1200 | } else { |
| 1201 | - foreach ( $type as $key => $post_type ) { |
|
| 1202 | - if ( array_key_exists( $post_type, $custom_types ) ) { |
|
| 1203 | - unset( $custom_types[ $post_type ] ); |
|
| 1201 | + foreach ($type as $key => $post_type) { |
|
| 1202 | + if (array_key_exists($post_type, $custom_types)) { |
|
| 1203 | + unset($custom_types[$post_type]); |
|
| 1204 | 1204 | } |
| 1205 | 1205 | } |
| 1206 | 1206 | } |
@@ -1209,26 +1209,26 @@ discard block |
||
| 1209 | 1209 | return $custom_types; |
| 1210 | 1210 | } |
| 1211 | 1211 | |
| 1212 | - public function sort_post_types( array $order ) { |
|
| 1212 | + public function sort_post_types(array $order) { |
|
| 1213 | 1213 | $options = $this->options_array(); |
| 1214 | 1214 | $option_key = 'post_type_move'; |
| 1215 | 1215 | |
| 1216 | - if ( array_key_exists( $option_key, $options ) ) { |
|
| 1217 | - $move_rules = maybe_unserialize( $options[ $option_key ] ); |
|
| 1216 | + if (array_key_exists($option_key, $options)) { |
|
| 1217 | + $move_rules = maybe_unserialize($options[$option_key]); |
|
| 1218 | 1218 | |
| 1219 | - foreach ( $move_rules as $rule ) { |
|
| 1219 | + foreach ($move_rules as $rule) { |
|
| 1220 | 1220 | $move_this = $rule['move_this']; |
| 1221 | 1221 | $move_to = $rule['move_to']; |
| 1222 | - if ( $move_to > count( $order ) ) { |
|
| 1223 | - if ( ( $rm_key = array_search( $move_this, $order ) ) !== false ) { |
|
| 1224 | - unset( $order[ $rm_key ] ); |
|
| 1222 | + if ($move_to > count($order)) { |
|
| 1223 | + if (($rm_key = array_search($move_this, $order)) !== false) { |
|
| 1224 | + unset($order[$rm_key]); |
|
| 1225 | 1225 | } |
| 1226 | - array_push( $order, $move_this ); |
|
| 1226 | + array_push($order, $move_this); |
|
| 1227 | 1227 | } else { |
| 1228 | - if ( ( $rm_key = array_search( $move_this, $order ) ) !== false ) { |
|
| 1229 | - unset( $order[ $rm_key ] ); |
|
| 1228 | + if (($rm_key = array_search($move_this, $order)) !== false) { |
|
| 1229 | + unset($order[$rm_key]); |
|
| 1230 | 1230 | } |
| 1231 | - array_splice( $order, $move_to, 0, $move_this ); |
|
| 1231 | + array_splice($order, $move_to, 0, $move_this); |
|
| 1232 | 1232 | } |
| 1233 | 1233 | } |
| 1234 | 1234 | |
@@ -1238,57 +1238,57 @@ discard block |
||
| 1238 | 1238 | return $order; |
| 1239 | 1239 | } |
| 1240 | 1240 | |
| 1241 | - public function move_post_type( $move_this = null, $move_to = null ) { |
|
| 1241 | + public function move_post_type($move_this = null, $move_to = null) { |
|
| 1242 | 1242 | $move_rules = array(); |
| 1243 | 1243 | |
| 1244 | - if ( ! is_array( $move_this ) && ! is_array( $move_to ) ) { |
|
| 1244 | + if (!is_array($move_this) && !is_array($move_to)) { |
|
| 1245 | 1245 | $move_rules[] = array( |
| 1246 | 1246 | 'move_this' => $move_this, |
| 1247 | 1247 | 'move_to' => $move_to |
| 1248 | 1248 | ); |
| 1249 | 1249 | } else { |
| 1250 | - foreach ( $move_this as $key => $move_post ) { |
|
| 1250 | + foreach ($move_this as $key => $move_post) { |
|
| 1251 | 1251 | $move_rules[] = array( |
| 1252 | 1252 | 'move_this' => $move_post, |
| 1253 | - 'move_to' => $move_to[ $key ] |
|
| 1253 | + 'move_to' => $move_to[$key] |
|
| 1254 | 1254 | ); |
| 1255 | 1255 | } |
| 1256 | 1256 | } |
| 1257 | 1257 | |
| 1258 | - $this->add_option( 'post_type_move', $move_rules ); |
|
| 1258 | + $this->add_option('post_type_move', $move_rules); |
|
| 1259 | 1259 | } |
| 1260 | 1260 | |
| 1261 | - public function set_post_type_image( $post_type = null, $image = null ) { |
|
| 1261 | + public function set_post_type_image($post_type = null, $image = null) { |
|
| 1262 | 1262 | $post_type_image_rules = array(); |
| 1263 | 1263 | |
| 1264 | - if ( ! is_array( $post_type ) ) { |
|
| 1264 | + if (!is_array($post_type)) { |
|
| 1265 | 1265 | |
| 1266 | - $post_type_image_rules[ $post_type ] = array( |
|
| 1266 | + $post_type_image_rules[$post_type] = array( |
|
| 1267 | 1267 | 'post_type' => $post_type, |
| 1268 | 1268 | 'image' => $image |
| 1269 | 1269 | ); |
| 1270 | 1270 | |
| 1271 | 1271 | } else { |
| 1272 | 1272 | |
| 1273 | - if ( count( $post_type ) == count( $image ) ) { |
|
| 1273 | + if (count($post_type) == count($image)) { |
|
| 1274 | 1274 | |
| 1275 | - foreach ( $post_type as $key => $post_name ) { |
|
| 1276 | - $post_type_image_rules[ $post_name ] = array( |
|
| 1275 | + foreach ($post_type as $key => $post_name) { |
|
| 1276 | + $post_type_image_rules[$post_name] = array( |
|
| 1277 | 1277 | 'post_type' => $post_name, |
| 1278 | - 'image' => $image[ $key ] |
|
| 1278 | + 'image' => $image[$key] |
|
| 1279 | 1279 | ); |
| 1280 | 1280 | } |
| 1281 | 1281 | } |
| 1282 | 1282 | } |
| 1283 | 1283 | |
| 1284 | - $this->add_option( 'post_type_image', $post_type_image_rules ); |
|
| 1284 | + $this->add_option('post_type_image', $post_type_image_rules); |
|
| 1285 | 1285 | } |
| 1286 | 1286 | |
| 1287 | - public function post_type_image( $image ) { |
|
| 1287 | + public function post_type_image($image) { |
|
| 1288 | 1288 | $options = $this->options_array(); |
| 1289 | 1289 | $option_key = 'post_type_image'; |
| 1290 | - if ( array_key_exists( $option_key, $options ) ) { |
|
| 1291 | - $post_type_image_rules = maybe_unserialize( $options[ $option_key ] ); |
|
| 1290 | + if (array_key_exists($option_key, $options)) { |
|
| 1291 | + $post_type_image_rules = maybe_unserialize($options[$option_key]); |
|
| 1292 | 1292 | return $post_type_image_rules; |
| 1293 | 1293 | } |
| 1294 | 1294 | return $image; |
@@ -5,9 +5,9 @@ discard block |
||
| 5 | 5 | * @package GetPaid |
| 6 | 6 | */ |
| 7 | 7 | |
| 8 | -defined( 'ABSPATH' ) || exit; |
|
| 8 | +defined('ABSPATH') || exit; |
|
| 9 | 9 | |
| 10 | -include plugin_dir_path( __FILE__ ) . 'rapid-addon.php'; |
|
| 10 | +include plugin_dir_path(__FILE__) . 'rapid-addon.php'; |
|
| 11 | 11 | |
| 12 | 12 | /** |
| 13 | 13 | * WP All Import class. |
@@ -34,8 +34,8 @@ discard block |
||
| 34 | 34 | public function __construct() { |
| 35 | 35 | |
| 36 | 36 | // Init each store separately. |
| 37 | - foreach ( array_keys( $this->datastores ) as $key ) { |
|
| 38 | - $this->init_store( $key ); |
|
| 37 | + foreach (array_keys($this->datastores) as $key) { |
|
| 38 | + $this->init_store($key); |
|
| 39 | 39 | } |
| 40 | 40 | |
| 41 | 41 | } |
@@ -43,51 +43,51 @@ discard block |
||
| 43 | 43 | /** |
| 44 | 44 | * Inits a store. |
| 45 | 45 | */ |
| 46 | - public function init_store( $key ) { |
|
| 46 | + public function init_store($key) { |
|
| 47 | 47 | |
| 48 | 48 | // Register the add-on. |
| 49 | - $this->add_ons[ $key ] = new RapidAddon( 'GetPaid', 'getpaid_wp_al_import_' . $key ); |
|
| 49 | + $this->add_ons[$key] = new RapidAddon('GetPaid', 'getpaid_wp_al_import_' . $key); |
|
| 50 | 50 | |
| 51 | 51 | // Create import function. |
| 52 | - $import_function = function ( $post_id, $data, $import_options, $_post ) use ( $key ) { |
|
| 53 | - $this->import_store( $key, $post_id, $data, $import_options, $_post ); |
|
| 52 | + $import_function = function($post_id, $data, $import_options, $_post) use ($key) { |
|
| 53 | + $this->import_store($key, $post_id, $data, $import_options, $_post); |
|
| 54 | 54 | }; |
| 55 | 55 | |
| 56 | - $this->add_ons[ $key ]->set_import_function( $import_function ); |
|
| 56 | + $this->add_ons[$key]->set_import_function($import_function); |
|
| 57 | 57 | |
| 58 | 58 | // Register store fields. |
| 59 | - $this->add_store_fields( $key ); |
|
| 59 | + $this->add_store_fields($key); |
|
| 60 | 60 | |
| 61 | 61 | // Only load on the correct post type. |
| 62 | - $this->add_ons[ $key ]->run( array( 'post_types' => array( 'wpi_' . $key ) ) ); |
|
| 62 | + $this->add_ons[$key]->run(array('post_types' => array('wpi_' . $key))); |
|
| 63 | 63 | |
| 64 | 64 | // Disable images. |
| 65 | - $this->add_ons[ $key ]->disable_default_images(); |
|
| 65 | + $this->add_ons[$key]->disable_default_images(); |
|
| 66 | 66 | |
| 67 | 67 | } |
| 68 | 68 | |
| 69 | 69 | /** |
| 70 | 70 | * Retrieves store fields. |
| 71 | 71 | */ |
| 72 | - public function get_store_fields( $key ) { |
|
| 72 | + public function get_store_fields($key) { |
|
| 73 | 73 | |
| 74 | 74 | // Fetch from data/invoice-schema.php, from data/discount-schema.php, from data/item-schema.php |
| 75 | - $fields = wpinv_get_data( $key . '-schema' ); |
|
| 75 | + $fields = wpinv_get_data($key . '-schema'); |
|
| 76 | 76 | |
| 77 | - if ( empty( $fields ) ) { |
|
| 77 | + if (empty($fields)) { |
|
| 78 | 78 | return array(); |
| 79 | 79 | } |
| 80 | 80 | |
| 81 | 81 | // Clean the fields. |
| 82 | 82 | $prepared = array(); |
| 83 | - foreach ( $fields as $id => $field ) { |
|
| 83 | + foreach ($fields as $id => $field) { |
|
| 84 | 84 | |
| 85 | 85 | // Skip read only fields. |
| 86 | - if ( ! empty( $field['readonly'] ) ) { |
|
| 86 | + if (!empty($field['readonly'])) { |
|
| 87 | 87 | continue; |
| 88 | 88 | } |
| 89 | 89 | |
| 90 | - $prepared[ $id ] = $field; |
|
| 90 | + $prepared[$id] = $field; |
|
| 91 | 91 | |
| 92 | 92 | } |
| 93 | 93 | |
@@ -98,10 +98,10 @@ discard block |
||
| 98 | 98 | /** |
| 99 | 99 | * Registers store fields. |
| 100 | 100 | */ |
| 101 | - public function add_store_fields( $key ) { |
|
| 101 | + public function add_store_fields($key) { |
|
| 102 | 102 | |
| 103 | - foreach ( $this->get_store_fields( $key ) as $field_id => $data ) { |
|
| 104 | - $this->add_ons[ $key ]->add_field( $field_id, $data['description'], 'text' ); |
|
| 103 | + foreach ($this->get_store_fields($key) as $field_id => $data) { |
|
| 104 | + $this->add_ons[$key]->add_field($field_id, $data['description'], 'text'); |
|
| 105 | 105 | } |
| 106 | 106 | |
| 107 | 107 | } |
@@ -109,36 +109,36 @@ discard block |
||
| 109 | 109 | /** |
| 110 | 110 | * Handles store imports. |
| 111 | 111 | */ |
| 112 | - public function import_store( $key, $post_id, $data, $import_options, $_post ) { |
|
| 112 | + public function import_store($key, $post_id, $data, $import_options, $_post) { |
|
| 113 | 113 | |
| 114 | 114 | // Is the store class set? |
| 115 | - if ( ! isset( $this->datastores[ $key ] ) ) { |
|
| 115 | + if (!isset($this->datastores[$key])) { |
|
| 116 | 116 | return; |
| 117 | 117 | } |
| 118 | 118 | |
| 119 | 119 | /**@var GetPaid_Data */ |
| 120 | - $data_store = new $this->datastores[ $key ]( $post_id ); |
|
| 120 | + $data_store = new $this->datastores[$key]($post_id); |
|
| 121 | 121 | |
| 122 | 122 | // Abort if the invoice/item/discount does not exist. |
| 123 | - if ( ! $data_store->exists() ) { |
|
| 123 | + if (!$data_store->exists()) { |
|
| 124 | 124 | return; |
| 125 | 125 | } |
| 126 | 126 | |
| 127 | 127 | // Prepare data props. |
| 128 | 128 | $prepared = array(); |
| 129 | 129 | |
| 130 | - foreach ( array_keys( $this->get_store_fields( $key ) ) as $field ) { |
|
| 130 | + foreach (array_keys($this->get_store_fields($key)) as $field) { |
|
| 131 | 131 | // Make sure the user has allowed this field to be updated. |
| 132 | - if ( empty( $_post['ID'] ) || $this->add_ons[ $key ]->can_update_meta( $field, $import_options ) ) { |
|
| 132 | + if (empty($_post['ID']) || $this->add_ons[$key]->can_update_meta($field, $import_options)) { |
|
| 133 | 133 | |
| 134 | 134 | // Update the custom field with the imported data. |
| 135 | - $prepared[ $field ] = $data[ $field ]; |
|
| 135 | + $prepared[$field] = $data[$field]; |
|
| 136 | 136 | } |
| 137 | 137 | } |
| 138 | 138 | |
| 139 | 139 | // Only update if we have something to update. |
| 140 | - if ( ! empty( $prepared ) ) { |
|
| 141 | - $data_store->set_props( $prepared ); |
|
| 140 | + if (!empty($prepared)) { |
|
| 141 | + $data_store->set_props($prepared); |
|
| 142 | 142 | $data_store->save(); |
| 143 | 143 | } |
| 144 | 144 | |
@@ -7,7 +7,7 @@ discard block |
||
| 7 | 7 | * |
| 8 | 8 | */ |
| 9 | 9 | |
| 10 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 10 | +if (!defined('ABSPATH')) { |
|
| 11 | 11 | exit; // Exit if accessed directly |
| 12 | 12 | } |
| 13 | 13 | |
@@ -21,14 +21,14 @@ discard block |
||
| 21 | 21 | * |
| 22 | 22 | * @param WP_Post $post |
| 23 | 23 | */ |
| 24 | - public static function output( $post ) { |
|
| 24 | + public static function output($post) { |
|
| 25 | 25 | |
| 26 | 26 | // Prepare the invoice. |
| 27 | - $invoice = new WPInv_Invoice( $post ); |
|
| 28 | - $customer = $invoice->exists() ? $invoice->get_user_id( 'edit' ) : get_current_user_id(); |
|
| 29 | - $customer = new WP_User( $customer ); |
|
| 30 | - $display = sprintf( _x( '%1$s (%2$s)', 'user dropdown', 'invoicing' ), $customer->display_name, $customer->user_email ); |
|
| 31 | - wp_nonce_field( 'getpaid_meta_nonce', 'getpaid_meta_nonce' ); |
|
| 27 | + $invoice = new WPInv_Invoice($post); |
|
| 28 | + $customer = $invoice->exists() ? $invoice->get_user_id('edit') : get_current_user_id(); |
|
| 29 | + $customer = new WP_User($customer); |
|
| 30 | + $display = sprintf(_x('%1$s (%2$s)', 'user dropdown', 'invoicing'), $customer->display_name, $customer->user_email); |
|
| 31 | + wp_nonce_field('getpaid_meta_nonce', 'getpaid_meta_nonce'); |
|
| 32 | 32 | |
| 33 | 33 | ?> |
| 34 | 34 | |
@@ -43,11 +43,11 @@ discard block |
||
| 43 | 43 | <div class="col-12 col-sm-6"> |
| 44 | 44 | <div id="getpaid-invoice-user-id-wrapper" class="form-group"> |
| 45 | 45 | <div> |
| 46 | - <label for="post_author_override"><?php _e( 'Customer', 'invoicing' );?></label> |
|
| 46 | + <label for="post_author_override"><?php _e('Customer', 'invoicing'); ?></label> |
|
| 47 | 47 | </div> |
| 48 | 48 | <div> |
| 49 | - <select name="post_author_override" id="wpinv_post_author_override" class="getpaid-customer-search form-control regular-text" data-placeholder="<?php esc_attr_e( 'Search for a customer by email or name', 'invoicing' ); ?>"> |
|
| 50 | - <option selected="selected" value="<?php echo (int) $customer->ID; ?>"><?php echo esc_html( $display ); ?> </option>) |
|
| 49 | + <select name="post_author_override" id="wpinv_post_author_override" class="getpaid-customer-search form-control regular-text" data-placeholder="<?php esc_attr_e('Search for a customer by email or name', 'invoicing'); ?>"> |
|
| 50 | + <option selected="selected" value="<?php echo (int) $customer->ID; ?>"><?php echo esc_html($display); ?> </option>) |
|
| 51 | 51 | </select> |
| 52 | 52 | </div> |
| 53 | 53 | </div> |
@@ -60,7 +60,7 @@ discard block |
||
| 60 | 60 | 'type' => 'text', |
| 61 | 61 | 'id' => 'getpaid-invoice-new-user-email', |
| 62 | 62 | 'name' => 'wpinv_email', |
| 63 | - 'label' => __( 'Email', 'invoicing' ) . '<span class="required">*</span>', |
|
| 63 | + 'label' => __('Email', 'invoicing') . '<span class="required">*</span>', |
|
| 64 | 64 | 'label_type' => 'vertical', |
| 65 | 65 | 'placeholder' => '[email protected]', |
| 66 | 66 | 'class' => 'form-control-sm', |
@@ -70,18 +70,18 @@ discard block |
||
| 70 | 70 | </div> |
| 71 | 71 | </div> |
| 72 | 72 | <div class="col-12 col-sm-6 form-group mt-sm-4"> |
| 73 | - <?php if ( ! $invoice->is_paid() && ! $invoice->is_refunded() ) : ?> |
|
| 73 | + <?php if (!$invoice->is_paid() && !$invoice->is_refunded()) : ?> |
|
| 74 | 74 | <a id="getpaid-invoice-fill-user-details" class="button button-small button-secondary" href="javascript:void(0)"> |
| 75 | 75 | <i aria-hidden="true" class="fa fa-refresh"></i> |
| 76 | - <?php _e( 'Fill User Details', 'invoicing' );?> |
|
| 76 | + <?php _e('Fill User Details', 'invoicing'); ?> |
|
| 77 | 77 | </a> |
| 78 | 78 | <a id="getpaid-invoice-create-new-user-button" class="button button-small button-secondary" href="javascript:void(0)"> |
| 79 | 79 | <i aria-hidden="true" class="fa fa-plus"></i> |
| 80 | - <?php _e( 'Add New User', 'invoicing' );?> |
|
| 80 | + <?php _e('Add New User', 'invoicing'); ?> |
|
| 81 | 81 | </a> |
| 82 | 82 | <a id="getpaid-invoice-cancel-create-new-user" class="button button-small button-secondary d-none" href="javascript:void(0)"> |
| 83 | 83 | <i aria-hidden="true" class="fa fa-close"></i> |
| 84 | - <?php _e( 'Cancel', 'invoicing' );?> |
|
| 84 | + <?php _e('Cancel', 'invoicing'); ?> |
|
| 85 | 85 | </a> |
| 86 | 86 | <?php endif; ?> |
| 87 | 87 | </div> |
@@ -94,11 +94,11 @@ discard block |
||
| 94 | 94 | 'type' => 'text', |
| 95 | 95 | 'id' => 'wpinv_first_name', |
| 96 | 96 | 'name' => 'wpinv_first_name', |
| 97 | - 'label' => __( 'First Name', 'invoicing' ), |
|
| 97 | + 'label' => __('First Name', 'invoicing'), |
|
| 98 | 98 | 'label_type' => 'vertical', |
| 99 | 99 | 'placeholder' => '', |
| 100 | 100 | 'class' => 'form-control-sm', |
| 101 | - 'value' => $invoice->get_first_name( 'edit' ), |
|
| 101 | + 'value' => $invoice->get_first_name('edit'), |
|
| 102 | 102 | ) |
| 103 | 103 | ); |
| 104 | 104 | ?> |
@@ -110,11 +110,11 @@ discard block |
||
| 110 | 110 | 'type' => 'text', |
| 111 | 111 | 'id' => 'wpinv_last_name', |
| 112 | 112 | 'name' => 'wpinv_last_name', |
| 113 | - 'label' => __( 'Last Name', 'invoicing' ), |
|
| 113 | + 'label' => __('Last Name', 'invoicing'), |
|
| 114 | 114 | 'label_type' => 'vertical', |
| 115 | 115 | 'placeholder' => '', |
| 116 | 116 | 'class' => 'form-control-sm', |
| 117 | - 'value' => $invoice->get_last_name( 'edit' ), |
|
| 117 | + 'value' => $invoice->get_last_name('edit'), |
|
| 118 | 118 | ) |
| 119 | 119 | ); |
| 120 | 120 | ?> |
@@ -129,11 +129,11 @@ discard block |
||
| 129 | 129 | 'type' => 'text', |
| 130 | 130 | 'id' => 'wpinv_company', |
| 131 | 131 | 'name' => 'wpinv_company', |
| 132 | - 'label' => __( 'Company', 'invoicing' ), |
|
| 132 | + 'label' => __('Company', 'invoicing'), |
|
| 133 | 133 | 'label_type' => 'vertical', |
| 134 | 134 | 'placeholder' => '', |
| 135 | 135 | 'class' => 'form-control-sm', |
| 136 | - 'value' => $invoice->get_company( 'edit' ), |
|
| 136 | + 'value' => $invoice->get_company('edit'), |
|
| 137 | 137 | ) |
| 138 | 138 | ); |
| 139 | 139 | ?> |
@@ -145,11 +145,11 @@ discard block |
||
| 145 | 145 | 'type' => 'text', |
| 146 | 146 | 'id' => 'wpinv_vat_number', |
| 147 | 147 | 'name' => 'wpinv_vat_number', |
| 148 | - 'label' => __( 'Vat Number', 'invoicing' ), |
|
| 148 | + 'label' => __('Vat Number', 'invoicing'), |
|
| 149 | 149 | 'label_type' => 'vertical', |
| 150 | 150 | 'placeholder' => '', |
| 151 | 151 | 'class' => 'form-control-sm getpaid-recalculate-prices-on-change', |
| 152 | - 'value' => $invoice->get_vat_number( 'edit' ), |
|
| 152 | + 'value' => $invoice->get_vat_number('edit'), |
|
| 153 | 153 | ) |
| 154 | 154 | ); |
| 155 | 155 | ?> |
@@ -164,11 +164,11 @@ discard block |
||
| 164 | 164 | 'type' => 'text', |
| 165 | 165 | 'id' => 'wpinv_address', |
| 166 | 166 | 'name' => 'wpinv_address', |
| 167 | - 'label' => __( 'Address', 'invoicing' ), |
|
| 167 | + 'label' => __('Address', 'invoicing'), |
|
| 168 | 168 | 'label_type' => 'vertical', |
| 169 | 169 | 'placeholder' => '', |
| 170 | 170 | 'class' => 'form-control-sm', |
| 171 | - 'value' => $invoice->get_address( 'edit' ), |
|
| 171 | + 'value' => $invoice->get_address('edit'), |
|
| 172 | 172 | ) |
| 173 | 173 | ); |
| 174 | 174 | ?> |
@@ -180,11 +180,11 @@ discard block |
||
| 180 | 180 | 'type' => 'text', |
| 181 | 181 | 'id' => 'wpinv_city', |
| 182 | 182 | 'name' => 'wpinv_city', |
| 183 | - 'label' => __( 'City', 'invoicing' ), |
|
| 183 | + 'label' => __('City', 'invoicing'), |
|
| 184 | 184 | 'label_type' => 'vertical', |
| 185 | 185 | 'placeholder' => '', |
| 186 | 186 | 'class' => 'form-control-sm', |
| 187 | - 'value' => $invoice->get_city( 'edit' ), |
|
| 187 | + 'value' => $invoice->get_city('edit'), |
|
| 188 | 188 | ) |
| 189 | 189 | ); |
| 190 | 190 | ?> |
@@ -198,11 +198,11 @@ discard block |
||
| 198 | 198 | array( |
| 199 | 199 | 'id' => 'wpinv_country', |
| 200 | 200 | 'name' => 'wpinv_country', |
| 201 | - 'label' => __( 'Country', 'invoicing' ), |
|
| 201 | + 'label' => __('Country', 'invoicing'), |
|
| 202 | 202 | 'label_type' => 'vertical', |
| 203 | - 'placeholder' => __( 'Choose a country', 'invoicing' ), |
|
| 203 | + 'placeholder' => __('Choose a country', 'invoicing'), |
|
| 204 | 204 | 'class' => 'form-control-sm getpaid-recalculate-prices-on-change', |
| 205 | - 'value' => $invoice->get_country( 'edit' ), |
|
| 205 | + 'value' => $invoice->get_country('edit'), |
|
| 206 | 206 | 'options' => wpinv_get_country_list(), |
| 207 | 207 | 'data-allow-clear' => 'false', |
| 208 | 208 | 'select2' => true, |
@@ -213,20 +213,20 @@ discard block |
||
| 213 | 213 | <div class="col-12 col-sm-6"> |
| 214 | 214 | <?php |
| 215 | 215 | |
| 216 | - $states = wpinv_get_country_states( $invoice->get_country( 'edit' ) ); |
|
| 216 | + $states = wpinv_get_country_states($invoice->get_country('edit')); |
|
| 217 | 217 | |
| 218 | - if ( empty( $states ) ) { |
|
| 218 | + if (empty($states)) { |
|
| 219 | 219 | |
| 220 | 220 | echo aui()->input( |
| 221 | 221 | array( |
| 222 | 222 | 'type' => 'text', |
| 223 | 223 | 'id' => 'wpinv_state', |
| 224 | 224 | 'name' => 'wpinv_state', |
| 225 | - 'label' => __( 'State', 'invoicing' ), |
|
| 225 | + 'label' => __('State', 'invoicing'), |
|
| 226 | 226 | 'label_type' => 'vertical', |
| 227 | 227 | 'placeholder' => '', |
| 228 | 228 | 'class' => 'form-control-sm', |
| 229 | - 'value' => $invoice->get_state( 'edit' ), |
|
| 229 | + 'value' => $invoice->get_state('edit'), |
|
| 230 | 230 | ) |
| 231 | 231 | ); |
| 232 | 232 | |
@@ -236,11 +236,11 @@ discard block |
||
| 236 | 236 | array( |
| 237 | 237 | 'id' => 'wpinv_state', |
| 238 | 238 | 'name' => 'wpinv_state', |
| 239 | - 'label' => __( 'State', 'invoicing' ), |
|
| 239 | + 'label' => __('State', 'invoicing'), |
|
| 240 | 240 | 'label_type' => 'vertical', |
| 241 | - 'placeholder' => __( 'Select a state', 'invoicing' ), |
|
| 241 | + 'placeholder' => __('Select a state', 'invoicing'), |
|
| 242 | 242 | 'class' => 'form-control-sm', |
| 243 | - 'value' => $invoice->get_state( 'edit' ), |
|
| 243 | + 'value' => $invoice->get_state('edit'), |
|
| 244 | 244 | 'options' => $states, |
| 245 | 245 | 'data-allow-clear' => 'false', |
| 246 | 246 | 'select2' => true, |
@@ -261,11 +261,11 @@ discard block |
||
| 261 | 261 | 'type' => 'text', |
| 262 | 262 | 'id' => 'wpinv_zip', |
| 263 | 263 | 'name' => 'wpinv_zip', |
| 264 | - 'label' => __( 'Zip / Postal Code', 'invoicing' ), |
|
| 264 | + 'label' => __('Zip / Postal Code', 'invoicing'), |
|
| 265 | 265 | 'label_type' => 'vertical', |
| 266 | 266 | 'placeholder' => '', |
| 267 | 267 | 'class' => 'form-control-sm', |
| 268 | - 'value' => $invoice->get_zip( 'edit' ), |
|
| 268 | + 'value' => $invoice->get_zip('edit'), |
|
| 269 | 269 | ) |
| 270 | 270 | ); |
| 271 | 271 | ?> |
@@ -277,19 +277,19 @@ discard block |
||
| 277 | 277 | 'type' => 'text', |
| 278 | 278 | 'id' => 'wpinv_phone', |
| 279 | 279 | 'name' => 'wpinv_phone', |
| 280 | - 'label' => __( 'Phone', 'invoicing' ), |
|
| 280 | + 'label' => __('Phone', 'invoicing'), |
|
| 281 | 281 | 'label_type' => 'vertical', |
| 282 | 282 | 'placeholder' => '', |
| 283 | 283 | 'class' => 'form-control-sm', |
| 284 | - 'value' => $invoice->get_phone( 'edit' ), |
|
| 284 | + 'value' => $invoice->get_phone('edit'), |
|
| 285 | 285 | ) |
| 286 | 286 | ); |
| 287 | 287 | ?> |
| 288 | 288 | </div> |
| 289 | 289 | </div> |
| 290 | 290 | |
| 291 | - <?php if ( ! apply_filters( 'getpaid_use_new_invoice_items_metabox', false ) ) : ?> |
|
| 292 | - <?php do_action( 'wpinv_meta_box_before_invoice_template_row', $invoice->get_id() ); ?> |
|
| 291 | + <?php if (!apply_filters('getpaid_use_new_invoice_items_metabox', false)) : ?> |
|
| 292 | + <?php do_action('wpinv_meta_box_before_invoice_template_row', $invoice->get_id()); ?> |
|
| 293 | 293 | |
| 294 | 294 | <div class="row"> |
| 295 | 295 | <div class="col-12 col-sm-6"> |
@@ -298,14 +298,14 @@ discard block |
||
| 298 | 298 | array( |
| 299 | 299 | 'id' => 'wpinv_template', |
| 300 | 300 | 'name' => 'wpinv_template', |
| 301 | - 'label' => __( 'Template', 'invoicing' ), |
|
| 301 | + 'label' => __('Template', 'invoicing'), |
|
| 302 | 302 | 'label_type' => 'vertical', |
| 303 | - 'placeholder' => __( 'Choose a template', 'invoicing' ), |
|
| 303 | + 'placeholder' => __('Choose a template', 'invoicing'), |
|
| 304 | 304 | 'class' => 'form-control-sm', |
| 305 | - 'value' => $invoice->get_template( 'edit' ), |
|
| 305 | + 'value' => $invoice->get_template('edit'), |
|
| 306 | 306 | 'options' => array( |
| 307 | - 'quantity' => __( 'Quantity', 'invoicing' ), |
|
| 308 | - 'hours' => __( 'Hours', 'invoicing' ), |
|
| 307 | + 'quantity' => __('Quantity', 'invoicing'), |
|
| 308 | + 'hours' => __('Hours', 'invoicing'), |
|
| 309 | 309 | //'amount' => __( 'Amount Only', 'invoicing' ), |
| 310 | 310 | ), |
| 311 | 311 | 'data-allow-clear' => 'false', |
@@ -322,11 +322,11 @@ discard block |
||
| 322 | 322 | array( |
| 323 | 323 | 'id' => 'wpinv_currency', |
| 324 | 324 | 'name' => 'wpinv_currency', |
| 325 | - 'label' => __( 'Currency', 'invoicing' ), |
|
| 325 | + 'label' => __('Currency', 'invoicing'), |
|
| 326 | 326 | 'label_type' => 'vertical', |
| 327 | - 'placeholder' => __( 'Select Invoice Currency', 'invoicing' ), |
|
| 327 | + 'placeholder' => __('Select Invoice Currency', 'invoicing'), |
|
| 328 | 328 | 'class' => 'form-control-sm getpaid-recalculate-prices-on-change', |
| 329 | - 'value' => $invoice->get_currency( 'edit' ), |
|
| 329 | + 'value' => $invoice->get_currency('edit'), |
|
| 330 | 330 | 'required' => false, |
| 331 | 331 | 'data-allow-clear' => 'false', |
| 332 | 332 | 'select2' => true, |
@@ -338,7 +338,7 @@ discard block |
||
| 338 | 338 | </div> |
| 339 | 339 | </div> |
| 340 | 340 | |
| 341 | - <?php do_action( 'wpinv_meta_box_invoice_template_row', $invoice->get_id() ); ?> |
|
| 341 | + <?php do_action('wpinv_meta_box_invoice_template_row', $invoice->get_id()); ?> |
|
| 342 | 342 | <?php endif; ?> |
| 343 | 343 | |
| 344 | 344 | <div class="row"> |
@@ -349,18 +349,18 @@ discard block |
||
| 349 | 349 | 'type' => 'text', |
| 350 | 350 | 'id' => 'wpinv_company_id', |
| 351 | 351 | 'name' => 'wpinv_company_id', |
| 352 | - 'label' => __( 'Company ID', 'invoicing' ), |
|
| 352 | + 'label' => __('Company ID', 'invoicing'), |
|
| 353 | 353 | 'label_type' => 'vertical', |
| 354 | 354 | 'placeholder' => '', |
| 355 | 355 | 'class' => 'form-control-sm', |
| 356 | - 'value' => $invoice->get_company_id( 'edit' ), |
|
| 356 | + 'value' => $invoice->get_company_id('edit'), |
|
| 357 | 357 | ) |
| 358 | 358 | ); |
| 359 | 359 | ?> |
| 360 | 360 | </div> |
| 361 | 361 | </div> |
| 362 | 362 | |
| 363 | - <?php do_action( 'getpaid_after_metabox_invoice_address', $invoice ); ?> |
|
| 363 | + <?php do_action('getpaid_after_metabox_invoice_address', $invoice); ?> |
|
| 364 | 364 | </div> |
| 365 | 365 | <?php |
| 366 | 366 | } |
@@ -370,51 +370,51 @@ discard block |
||
| 370 | 370 | * |
| 371 | 371 | * @param int $post_id |
| 372 | 372 | */ |
| 373 | - public static function save( $post_id ) { |
|
| 373 | + public static function save($post_id) { |
|
| 374 | 374 | |
| 375 | 375 | // Prepare the invoice. |
| 376 | - $invoice = new WPInv_Invoice( $post_id ); |
|
| 376 | + $invoice = new WPInv_Invoice($post_id); |
|
| 377 | 377 | |
| 378 | 378 | // Load new data. |
| 379 | 379 | $invoice->set_props( |
| 380 | 380 | array( |
| 381 | - 'template' => isset( $_POST['wpinv_template'] ) ? wpinv_clean( $_POST['wpinv_template'] ) : null, |
|
| 382 | - 'email_cc' => isset( $_POST['wpinv_cc'] ) ? wpinv_clean( $_POST['wpinv_cc'] ) : null, |
|
| 383 | - 'disable_taxes' => ! empty( $_POST['disable_taxes'] ), |
|
| 384 | - 'currency' => isset( $_POST['wpinv_currency'] ) ? wpinv_clean( $_POST['wpinv_currency'] ) : null, |
|
| 385 | - 'gateway' => ( $invoice->needs_payment() && isset( $_POST['wpinv_gateway'] ) ) ? wpinv_clean( $_POST['wpinv_gateway'] ) : null, |
|
| 386 | - 'address' => isset( $_POST['wpinv_address'] ) ? wpinv_clean( $_POST['wpinv_address'] ) : null, |
|
| 387 | - 'vat_number' => isset( $_POST['wpinv_vat_number'] ) ? wpinv_clean( $_POST['wpinv_vat_number'] ) : null, |
|
| 388 | - 'company' => isset( $_POST['wpinv_company'] ) ? wpinv_clean( $_POST['wpinv_company'] ) : null, |
|
| 389 | - 'company_id' => isset( $_POST['wpinv_company_id'] ) ? wpinv_clean( $_POST['wpinv_company_id'] ) : null, |
|
| 390 | - 'zip' => isset( $_POST['wpinv_zip'] ) ? wpinv_clean( $_POST['wpinv_zip'] ) : null, |
|
| 391 | - 'state' => isset( $_POST['wpinv_state'] ) ? wpinv_clean( $_POST['wpinv_state'] ) : null, |
|
| 392 | - 'city' => isset( $_POST['wpinv_city'] ) ? wpinv_clean( $_POST['wpinv_city'] ) : null, |
|
| 393 | - 'country' => isset( $_POST['wpinv_country'] ) ? wpinv_clean( $_POST['wpinv_country'] ) : null, |
|
| 394 | - 'phone' => isset( $_POST['wpinv_phone'] ) ? wpinv_clean( $_POST['wpinv_phone'] ) : null, |
|
| 395 | - 'first_name' => isset( $_POST['wpinv_first_name'] ) ? wpinv_clean( $_POST['wpinv_first_name'] ) : null, |
|
| 396 | - 'last_name' => isset( $_POST['wpinv_last_name'] ) ? wpinv_clean( $_POST['wpinv_last_name'] ) : null, |
|
| 397 | - 'author' => isset( $_POST['post_author_override'] ) ? wpinv_clean( $_POST['post_author_override'] ) : null, |
|
| 398 | - 'date_created' => isset( $_POST['date_created'] ) ? wpinv_clean( $_POST['date_created'] ) : null, |
|
| 399 | - 'date_completed' => isset( $_POST['wpinv_date_completed'] ) ? wpinv_clean( $_POST['wpinv_date_completed'] ) : null, |
|
| 400 | - 'due_date' => isset( $_POST['wpinv_due_date'] ) ? wpinv_clean( $_POST['wpinv_due_date'] ) : null, |
|
| 401 | - 'number' => isset( $_POST['wpinv_number'] ) ? wpinv_clean( $_POST['wpinv_number'] ) : null, |
|
| 402 | - 'status' => isset( $_POST['wpinv_status'] ) ? wpinv_clean( $_POST['wpinv_status'] ) : null, |
|
| 381 | + 'template' => isset($_POST['wpinv_template']) ? wpinv_clean($_POST['wpinv_template']) : null, |
|
| 382 | + 'email_cc' => isset($_POST['wpinv_cc']) ? wpinv_clean($_POST['wpinv_cc']) : null, |
|
| 383 | + 'disable_taxes' => !empty($_POST['disable_taxes']), |
|
| 384 | + 'currency' => isset($_POST['wpinv_currency']) ? wpinv_clean($_POST['wpinv_currency']) : null, |
|
| 385 | + 'gateway' => ($invoice->needs_payment() && isset($_POST['wpinv_gateway'])) ? wpinv_clean($_POST['wpinv_gateway']) : null, |
|
| 386 | + 'address' => isset($_POST['wpinv_address']) ? wpinv_clean($_POST['wpinv_address']) : null, |
|
| 387 | + 'vat_number' => isset($_POST['wpinv_vat_number']) ? wpinv_clean($_POST['wpinv_vat_number']) : null, |
|
| 388 | + 'company' => isset($_POST['wpinv_company']) ? wpinv_clean($_POST['wpinv_company']) : null, |
|
| 389 | + 'company_id' => isset($_POST['wpinv_company_id']) ? wpinv_clean($_POST['wpinv_company_id']) : null, |
|
| 390 | + 'zip' => isset($_POST['wpinv_zip']) ? wpinv_clean($_POST['wpinv_zip']) : null, |
|
| 391 | + 'state' => isset($_POST['wpinv_state']) ? wpinv_clean($_POST['wpinv_state']) : null, |
|
| 392 | + 'city' => isset($_POST['wpinv_city']) ? wpinv_clean($_POST['wpinv_city']) : null, |
|
| 393 | + 'country' => isset($_POST['wpinv_country']) ? wpinv_clean($_POST['wpinv_country']) : null, |
|
| 394 | + 'phone' => isset($_POST['wpinv_phone']) ? wpinv_clean($_POST['wpinv_phone']) : null, |
|
| 395 | + 'first_name' => isset($_POST['wpinv_first_name']) ? wpinv_clean($_POST['wpinv_first_name']) : null, |
|
| 396 | + 'last_name' => isset($_POST['wpinv_last_name']) ? wpinv_clean($_POST['wpinv_last_name']) : null, |
|
| 397 | + 'author' => isset($_POST['post_author_override']) ? wpinv_clean($_POST['post_author_override']) : null, |
|
| 398 | + 'date_created' => isset($_POST['date_created']) ? wpinv_clean($_POST['date_created']) : null, |
|
| 399 | + 'date_completed' => isset($_POST['wpinv_date_completed']) ? wpinv_clean($_POST['wpinv_date_completed']) : null, |
|
| 400 | + 'due_date' => isset($_POST['wpinv_due_date']) ? wpinv_clean($_POST['wpinv_due_date']) : null, |
|
| 401 | + 'number' => isset($_POST['wpinv_number']) ? wpinv_clean($_POST['wpinv_number']) : null, |
|
| 402 | + 'status' => isset($_POST['wpinv_status']) ? wpinv_clean($_POST['wpinv_status']) : null, |
|
| 403 | 403 | ) |
| 404 | 404 | ); |
| 405 | 405 | |
| 406 | 406 | // Discount code. |
| 407 | - if ( ! $invoice->is_paid() && ! $invoice->is_refunded() ) { |
|
| 407 | + if (!$invoice->is_paid() && !$invoice->is_refunded()) { |
|
| 408 | 408 | |
| 409 | - if ( isset( $_POST['wpinv_discount_code'] ) ) { |
|
| 410 | - $invoice->set_discount_code( wpinv_clean( $_POST['wpinv_discount_code'] ) ); |
|
| 409 | + if (isset($_POST['wpinv_discount_code'])) { |
|
| 410 | + $invoice->set_discount_code(wpinv_clean($_POST['wpinv_discount_code'])); |
|
| 411 | 411 | } |
| 412 | 412 | |
| 413 | - $discount = new WPInv_Discount( $invoice->get_discount_code() ); |
|
| 414 | - if ( $discount->exists() ) { |
|
| 415 | - $invoice->add_discount( getpaid_calculate_invoice_discount( $invoice, $discount ) ); |
|
| 413 | + $discount = new WPInv_Discount($invoice->get_discount_code()); |
|
| 414 | + if ($discount->exists()) { |
|
| 415 | + $invoice->add_discount(getpaid_calculate_invoice_discount($invoice, $discount)); |
|
| 416 | 416 | } else { |
| 417 | - $invoice->remove_discount( 'discount_code' ); |
|
| 417 | + $invoice->remove_discount('discount_code'); |
|
| 418 | 418 | } |
| 419 | 419 | |
| 420 | 420 | // Recalculate totals. |
@@ -423,17 +423,17 @@ discard block |
||
| 423 | 423 | } |
| 424 | 424 | |
| 425 | 425 | // If we're creating a new user... |
| 426 | - if ( ! empty( $_POST['wpinv_new_user'] ) && is_email( stripslashes( $_POST['wpinv_email'] ) ) ) { |
|
| 426 | + if (!empty($_POST['wpinv_new_user']) && is_email(stripslashes($_POST['wpinv_email']))) { |
|
| 427 | 427 | |
| 428 | 428 | // Attempt to create the user. |
| 429 | - $user = wpinv_create_user( sanitize_email( stripslashes( $_POST['wpinv_email'] ) ) ); |
|
| 429 | + $user = wpinv_create_user(sanitize_email(stripslashes($_POST['wpinv_email']))); |
|
| 430 | 430 | |
| 431 | 431 | |
| 432 | 432 | // If successful, update the invoice author. |
| 433 | - if ( is_numeric( $user ) ) { |
|
| 434 | - $invoice->set_author( $user ); |
|
| 433 | + if (is_numeric($user)) { |
|
| 434 | + $invoice->set_author($user); |
|
| 435 | 435 | } else { |
| 436 | - wpinv_error_log( $user->get_error_message(), __( 'Invoice add new user', 'invoicing' ), __FILE__, __LINE__ ); |
|
| 436 | + wpinv_error_log($user->get_error_message(), __('Invoice add new user', 'invoicing'), __FILE__, __LINE__); |
|
| 437 | 437 | } |
| 438 | 438 | } |
| 439 | 439 | |
@@ -447,16 +447,16 @@ discard block |
||
| 447 | 447 | $GLOBALS['wpinv_skip_invoice_notification'] = false; |
| 448 | 448 | |
| 449 | 449 | // (Maybe) send new user notification. |
| 450 | - $should_send_notification = wpinv_get_option( 'disable_new_user_emails' ); |
|
| 451 | - if ( ! empty( $user ) && is_numeric( $user ) && apply_filters( 'getpaid_send_new_user_notification', empty( $should_send_notification ) ) ) { |
|
| 452 | - wp_send_new_user_notifications( $user, 'user' ); |
|
| 450 | + $should_send_notification = wpinv_get_option('disable_new_user_emails'); |
|
| 451 | + if (!empty($user) && is_numeric($user) && apply_filters('getpaid_send_new_user_notification', empty($should_send_notification))) { |
|
| 452 | + wp_send_new_user_notifications($user, 'user'); |
|
| 453 | 453 | } |
| 454 | 454 | |
| 455 | - if ( ! empty( $_POST['send_to_customer'] ) && ! $invoice->is_draft() ) { |
|
| 456 | - getpaid()->get( 'invoice_emails' )->user_invoice( $invoice, true ); |
|
| 455 | + if (!empty($_POST['send_to_customer']) && !$invoice->is_draft()) { |
|
| 456 | + getpaid()->get('invoice_emails')->user_invoice($invoice, true); |
|
| 457 | 457 | } |
| 458 | 458 | |
| 459 | 459 | // Fires after an invoice is saved. |
| 460 | - do_action( 'wpinv_invoice_metabox_saved', $invoice ); |
|
| 460 | + do_action('wpinv_invoice_metabox_saved', $invoice); |
|
| 461 | 461 | } |
| 462 | 462 | } |
@@ -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 | |