@@ -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); |
@@ -143,25 +143,25 @@ discard block |
||
143 | 143 | * |
144 | 144 | * We load super early in case there is a theme version that might change the colors |
145 | 145 | */ |
146 | - if ( $this->settings['css'] ) { |
|
147 | - add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_style' ), 1 ); |
|
146 | + if ($this->settings['css']) { |
|
147 | + add_action('wp_enqueue_scripts', array($this, 'enqueue_style'), 1); |
|
148 | 148 | } |
149 | - if ( $this->settings['css_backend'] && $this->load_admin_scripts() ) { |
|
150 | - add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_style' ), 1 ); |
|
149 | + if ($this->settings['css_backend'] && $this->load_admin_scripts()) { |
|
150 | + add_action('admin_enqueue_scripts', array($this, 'enqueue_style'), 1); |
|
151 | 151 | } |
152 | 152 | |
153 | 153 | // maybe load JS |
154 | - if ( $this->settings['js'] ) { |
|
154 | + if ($this->settings['js']) { |
|
155 | 155 | $priority = $this->is_bs3_compat() ? 100 : 1; |
156 | - add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ), $priority ); |
|
156 | + add_action('wp_enqueue_scripts', array($this, 'enqueue_scripts'), $priority); |
|
157 | 157 | } |
158 | - if ( $this->settings['js_backend'] && $this->load_admin_scripts() ) { |
|
159 | - add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ), 1 ); |
|
158 | + if ($this->settings['js_backend'] && $this->load_admin_scripts()) { |
|
159 | + add_action('admin_enqueue_scripts', array($this, 'enqueue_scripts'), 1); |
|
160 | 160 | } |
161 | 161 | |
162 | 162 | // Maybe set the HTML font size |
163 | - if ( $this->settings['html_font_size'] ) { |
|
164 | - add_action( 'wp_footer', array( $this, 'html_font_size' ), 10 ); |
|
163 | + if ($this->settings['html_font_size']) { |
|
164 | + add_action('wp_footer', array($this, 'html_font_size'), 10); |
|
165 | 165 | } |
166 | 166 | |
167 | 167 | |
@@ -172,13 +172,13 @@ discard block |
||
172 | 172 | * |
173 | 173 | * @return bool |
174 | 174 | */ |
175 | - public function load_admin_scripts(){ |
|
175 | + public function load_admin_scripts() { |
|
176 | 176 | $result = true; |
177 | 177 | |
178 | - if(!empty($this->settings['disable_admin'])){ |
|
179 | - $url_parts = explode("\n",$this->settings['disable_admin']); |
|
180 | - foreach($url_parts as $part){ |
|
181 | - if( strpos($_SERVER['REQUEST_URI'], trim($part)) !== false ){ |
|
178 | + if (!empty($this->settings['disable_admin'])) { |
|
179 | + $url_parts = explode("\n", $this->settings['disable_admin']); |
|
180 | + foreach ($url_parts as $part) { |
|
181 | + if (strpos($_SERVER['REQUEST_URI'], trim($part)) !== false) { |
|
182 | 182 | return false; // return early, no point checking further |
183 | 183 | } |
184 | 184 | } |
@@ -190,9 +190,9 @@ discard block |
||
190 | 190 | /** |
191 | 191 | * Add a html font size to the footer. |
192 | 192 | */ |
193 | - public function html_font_size(){ |
|
193 | + public function html_font_size() { |
|
194 | 194 | $this->settings = $this->get_settings(); |
195 | - echo "<style>html{font-size:".absint($this->settings['html_font_size'])."px;}</style>"; |
|
195 | + echo "<style>html{font-size:" . absint($this->settings['html_font_size']) . "px;}</style>"; |
|
196 | 196 | } |
197 | 197 | |
198 | 198 | /** |
@@ -204,18 +204,18 @@ discard block |
||
204 | 204 | |
205 | 205 | $rtl = is_rtl() ? '-rtl' : ''; |
206 | 206 | |
207 | - if($this->settings[$css_setting]){ |
|
208 | - $compatibility = $this->settings[$css_setting]=='core' ? false : true; |
|
209 | - $url = $this->settings[$css_setting]=='core' ? $this->url.'assets/css/ayecode-ui'.$rtl.'.css' : $this->url.'assets/css/ayecode-ui-compatibility'.$rtl.'.css'; |
|
210 | - wp_register_style( 'ayecode-ui', $url, array(), $this->latest ); |
|
211 | - wp_enqueue_style( 'ayecode-ui' ); |
|
207 | + if ($this->settings[$css_setting]) { |
|
208 | + $compatibility = $this->settings[$css_setting] == 'core' ? false : true; |
|
209 | + $url = $this->settings[$css_setting] == 'core' ? $this->url . 'assets/css/ayecode-ui' . $rtl . '.css' : $this->url . 'assets/css/ayecode-ui-compatibility' . $rtl . '.css'; |
|
210 | + wp_register_style('ayecode-ui', $url, array(), $this->latest); |
|
211 | + wp_enqueue_style('ayecode-ui'); |
|
212 | 212 | |
213 | 213 | // flatpickr |
214 | - wp_register_style( 'flatpickr', $this->url.'assets/css/flatpickr.min.css', array(), $this->latest ); |
|
214 | + wp_register_style('flatpickr', $this->url . 'assets/css/flatpickr.min.css', array(), $this->latest); |
|
215 | 215 | |
216 | 216 | |
217 | 217 | // fix some wp-admin issues |
218 | - if(is_admin()){ |
|
218 | + if (is_admin()) { |
|
219 | 219 | $custom_css = " |
220 | 220 | body{ |
221 | 221 | background-color: #f1f1f1; |
@@ -258,11 +258,11 @@ discard block |
||
258 | 258 | padding: 0; |
259 | 259 | } |
260 | 260 | "; |
261 | - wp_add_inline_style( 'ayecode-ui', $custom_css ); |
|
261 | + wp_add_inline_style('ayecode-ui', $custom_css); |
|
262 | 262 | } |
263 | 263 | |
264 | 264 | // custom changes |
265 | - wp_add_inline_style( 'ayecode-ui', self::custom_css($compatibility) ); |
|
265 | + wp_add_inline_style('ayecode-ui', self::custom_css($compatibility)); |
|
266 | 266 | |
267 | 267 | } |
268 | 268 | } |
@@ -272,7 +272,7 @@ discard block |
||
272 | 272 | * |
273 | 273 | * If this remains small then its best to use this than to add another JS file. |
274 | 274 | */ |
275 | - public function inline_script(){ |
|
275 | + public function inline_script() { |
|
276 | 276 | ob_start(); |
277 | 277 | ?> |
278 | 278 | <script> |
@@ -771,10 +771,10 @@ discard block |
||
771 | 771 | /* |
772 | 772 | * We only add the <script> tags for code highlighting, so we strip them from the output. |
773 | 773 | */ |
774 | - return str_replace( array( |
|
774 | + return str_replace(array( |
|
775 | 775 | '<script>', |
776 | 776 | '</script>' |
777 | - ), '', $output ); |
|
777 | + ), '', $output); |
|
778 | 778 | } |
779 | 779 | |
780 | 780 | |
@@ -788,13 +788,13 @@ discard block |
||
788 | 788 | ob_start(); |
789 | 789 | ?> |
790 | 790 | <script> |
791 | - <?php if( defined( 'FUSION_BUILDER_VERSION' ) ){ ?> |
|
791 | + <?php if (defined('FUSION_BUILDER_VERSION')) { ?> |
|
792 | 792 | /* With Avada builder */ |
793 | 793 | |
794 | 794 | <?php } ?> |
795 | 795 | </script> |
796 | 796 | <?php |
797 | - return str_replace( array( |
|
797 | + return str_replace(array( |
|
798 | 798 | '<script>', |
799 | 799 | '</script>' |
800 | 800 | ), '', ob_get_clean()); |
@@ -805,7 +805,7 @@ discard block |
||
805 | 805 | * |
806 | 806 | * If this remains small then its best to use this than to add another JS file. |
807 | 807 | */ |
808 | - public function inline_script_file_browser(){ |
|
808 | + public function inline_script_file_browser() { |
|
809 | 809 | ob_start(); |
810 | 810 | ?> |
811 | 811 | <script> |
@@ -820,10 +820,10 @@ discard block |
||
820 | 820 | /* |
821 | 821 | * We only add the <script> tags for code highlighting, so we strip them from the output. |
822 | 822 | */ |
823 | - return str_replace( array( |
|
823 | + return str_replace(array( |
|
824 | 824 | '<script>', |
825 | 825 | '</script>' |
826 | - ), '', $output ); |
|
826 | + ), '', $output); |
|
827 | 827 | } |
828 | 828 | |
829 | 829 | /** |
@@ -834,40 +834,40 @@ discard block |
||
834 | 834 | $js_setting = current_action() == 'wp_enqueue_scripts' ? 'js' : 'js_backend'; |
835 | 835 | |
836 | 836 | // select2 |
837 | - wp_register_script( 'select2', $this->url.'assets/js/select2.min.js', array('jquery'), $this->select2_version ); |
|
837 | + wp_register_script('select2', $this->url . 'assets/js/select2.min.js', array('jquery'), $this->select2_version); |
|
838 | 838 | |
839 | 839 | // flatpickr |
840 | - wp_register_script( 'flatpickr', $this->url.'assets/js/flatpickr.min.js', array(), $this->latest ); |
|
840 | + wp_register_script('flatpickr', $this->url . 'assets/js/flatpickr.min.js', array(), $this->latest); |
|
841 | 841 | |
842 | 842 | // Bootstrap file browser |
843 | - wp_register_script( 'aui-custom-file-input', $url = $this->url.'assets/js/bs-custom-file-input.min.js', array('jquery'), $this->select2_version ); |
|
844 | - wp_add_inline_script( 'aui-custom-file-input', $this->inline_script_file_browser() ); |
|
843 | + wp_register_script('aui-custom-file-input', $url = $this->url . 'assets/js/bs-custom-file-input.min.js', array('jquery'), $this->select2_version); |
|
844 | + wp_add_inline_script('aui-custom-file-input', $this->inline_script_file_browser()); |
|
845 | 845 | |
846 | 846 | $load_inline = false; |
847 | 847 | |
848 | - if($this->settings[$js_setting]=='core-popper'){ |
|
848 | + if ($this->settings[$js_setting] == 'core-popper') { |
|
849 | 849 | // Bootstrap bundle |
850 | - $url = $this->url.'assets/js/bootstrap.bundle.min.js'; |
|
851 | - wp_register_script( 'bootstrap-js-bundle', $url, array('select2','jquery'), $this->latest, $this->is_bs3_compat() ); |
|
850 | + $url = $this->url . 'assets/js/bootstrap.bundle.min.js'; |
|
851 | + wp_register_script('bootstrap-js-bundle', $url, array('select2', 'jquery'), $this->latest, $this->is_bs3_compat()); |
|
852 | 852 | // if in admin then add to footer for compatibility. |
853 | - is_admin() ? wp_enqueue_script( 'bootstrap-js-bundle', '', null, null, true ) : wp_enqueue_script( 'bootstrap-js-bundle'); |
|
853 | + is_admin() ? wp_enqueue_script('bootstrap-js-bundle', '', null, null, true) : wp_enqueue_script('bootstrap-js-bundle'); |
|
854 | 854 | $script = $this->inline_script(); |
855 | - wp_add_inline_script( 'bootstrap-js-bundle', $script ); |
|
856 | - }elseif($this->settings[$js_setting]=='popper'){ |
|
857 | - $url = $this->url.'assets/js/popper.min.js'; |
|
858 | - wp_register_script( 'bootstrap-js-popper', $url, array('select2','jquery'), $this->latest ); |
|
859 | - wp_enqueue_script( 'bootstrap-js-popper' ); |
|
855 | + wp_add_inline_script('bootstrap-js-bundle', $script); |
|
856 | + }elseif ($this->settings[$js_setting] == 'popper') { |
|
857 | + $url = $this->url . 'assets/js/popper.min.js'; |
|
858 | + wp_register_script('bootstrap-js-popper', $url, array('select2', 'jquery'), $this->latest); |
|
859 | + wp_enqueue_script('bootstrap-js-popper'); |
|
860 | 860 | $load_inline = true; |
861 | - }else{ |
|
861 | + } else { |
|
862 | 862 | $load_inline = true; |
863 | 863 | } |
864 | 864 | |
865 | 865 | // Load needed inline scripts by faking the loading of a script if the main script is not being loaded |
866 | - if($load_inline){ |
|
867 | - wp_register_script( 'bootstrap-dummy', '',array('select2','jquery') ); |
|
868 | - wp_enqueue_script( 'bootstrap-dummy' ); |
|
866 | + if ($load_inline) { |
|
867 | + wp_register_script('bootstrap-dummy', '', array('select2', 'jquery')); |
|
868 | + wp_enqueue_script('bootstrap-dummy'); |
|
869 | 869 | $script = $this->inline_script(); |
870 | - wp_add_inline_script( 'bootstrap-dummy', $script ); |
|
870 | + wp_add_inline_script('bootstrap-dummy', $script); |
|
871 | 871 | } |
872 | 872 | |
873 | 873 | } |
@@ -875,9 +875,9 @@ discard block |
||
875 | 875 | /** |
876 | 876 | * Enqueue flatpickr if called. |
877 | 877 | */ |
878 | - public function enqueue_flatpickr(){ |
|
879 | - wp_enqueue_style( 'flatpickr' ); |
|
880 | - wp_enqueue_script( 'flatpickr' ); |
|
878 | + public function enqueue_flatpickr() { |
|
879 | + wp_enqueue_style('flatpickr'); |
|
880 | + wp_enqueue_script('flatpickr'); |
|
881 | 881 | } |
882 | 882 | |
883 | 883 | /** |
@@ -889,15 +889,15 @@ discard block |
||
889 | 889 | |
890 | 890 | $url = ''; |
891 | 891 | // check if we are inside a plugin |
892 | - $file_dir = str_replace( "/includes","", wp_normalize_path( dirname( __FILE__ ) ) ); |
|
892 | + $file_dir = str_replace("/includes", "", wp_normalize_path(dirname(__FILE__))); |
|
893 | 893 | |
894 | 894 | // add check in-case user has changed wp-content dir name. |
895 | 895 | $wp_content_folder_name = basename(WP_CONTENT_DIR); |
896 | - $dir_parts = explode("/$wp_content_folder_name/",$file_dir); |
|
897 | - $url_parts = explode("/$wp_content_folder_name/",plugins_url()); |
|
896 | + $dir_parts = explode("/$wp_content_folder_name/", $file_dir); |
|
897 | + $url_parts = explode("/$wp_content_folder_name/", plugins_url()); |
|
898 | 898 | |
899 | - if(!empty($url_parts[0]) && !empty($dir_parts[1])){ |
|
900 | - $url = trailingslashit( $url_parts[0]."/$wp_content_folder_name/".$dir_parts[1] ); |
|
899 | + if (!empty($url_parts[0]) && !empty($dir_parts[1])) { |
|
900 | + $url = trailingslashit($url_parts[0] . "/$wp_content_folder_name/" . $dir_parts[1]); |
|
901 | 901 | } |
902 | 902 | |
903 | 903 | return $url; |
@@ -907,7 +907,7 @@ discard block |
||
907 | 907 | * Register the database settings with WordPress. |
908 | 908 | */ |
909 | 909 | public function register_settings() { |
910 | - register_setting( 'ayecode-ui-settings', 'ayecode-ui-settings' ); |
|
910 | + register_setting('ayecode-ui-settings', 'ayecode-ui-settings'); |
|
911 | 911 | } |
912 | 912 | |
913 | 913 | /** |
@@ -916,10 +916,10 @@ discard block |
||
916 | 916 | */ |
917 | 917 | public function menu_item() { |
918 | 918 | $menu_function = 'add' . '_' . 'options' . '_' . 'page'; // won't pass theme check if function name present in theme |
919 | - call_user_func( $menu_function, $this->name, $this->name, 'manage_options', 'ayecode-ui-settings', array( |
|
919 | + call_user_func($menu_function, $this->name, $this->name, 'manage_options', 'ayecode-ui-settings', array( |
|
920 | 920 | $this, |
921 | 921 | 'settings_page' |
922 | - ) ); |
|
922 | + )); |
|
923 | 923 | } |
924 | 924 | |
925 | 925 | /** |
@@ -927,7 +927,7 @@ discard block |
||
927 | 927 | * |
928 | 928 | * @return array |
929 | 929 | */ |
930 | - public function theme_js_settings(){ |
|
930 | + public function theme_js_settings() { |
|
931 | 931 | return array( |
932 | 932 | 'ayetheme' => 'popper', |
933 | 933 | 'listimia' => 'required', |
@@ -943,17 +943,17 @@ discard block |
||
943 | 943 | */ |
944 | 944 | public function get_settings() { |
945 | 945 | |
946 | - $db_settings = get_option( 'ayecode-ui-settings' ); |
|
946 | + $db_settings = get_option('ayecode-ui-settings'); |
|
947 | 947 | $js_default = 'core-popper'; |
948 | 948 | $js_default_backend = $js_default; |
949 | 949 | |
950 | 950 | // maybe set defaults (if no settings set) |
951 | - if(empty($db_settings)){ |
|
952 | - $active_theme = strtolower( get_template() ); // active parent theme. |
|
951 | + if (empty($db_settings)) { |
|
952 | + $active_theme = strtolower(get_template()); // active parent theme. |
|
953 | 953 | $theme_js_settings = self::theme_js_settings(); |
954 | - if(isset($theme_js_settings[$active_theme])){ |
|
954 | + if (isset($theme_js_settings[$active_theme])) { |
|
955 | 955 | $js_default = $theme_js_settings[$active_theme]; |
956 | - $js_default_backend = isset($theme_js_settings[$active_theme."_backend"]) ? $theme_js_settings[$active_theme."_backend"] : $js_default; |
|
956 | + $js_default_backend = isset($theme_js_settings[$active_theme . "_backend"]) ? $theme_js_settings[$active_theme . "_backend"] : $js_default; |
|
957 | 957 | } |
958 | 958 | } |
959 | 959 | |
@@ -966,14 +966,14 @@ discard block |
||
966 | 966 | 'disable_admin' => '', // URL snippets to disable loading on admin |
967 | 967 | ); |
968 | 968 | |
969 | - $settings = wp_parse_args( $db_settings, $defaults ); |
|
969 | + $settings = wp_parse_args($db_settings, $defaults); |
|
970 | 970 | |
971 | 971 | /** |
972 | 972 | * Filter the Bootstrap settings. |
973 | 973 | * |
974 | 974 | * @todo if we add this filer people might use it and then it defeates the purpose of this class :/ |
975 | 975 | */ |
976 | - return $this->settings = apply_filters( 'ayecode-ui-settings', $settings, $db_settings, $defaults ); |
|
976 | + return $this->settings = apply_filters('ayecode-ui-settings', $settings, $db_settings, $defaults); |
|
977 | 977 | } |
978 | 978 | |
979 | 979 | |
@@ -981,90 +981,90 @@ discard block |
||
981 | 981 | * The settings page html output. |
982 | 982 | */ |
983 | 983 | public function settings_page() { |
984 | - if ( ! current_user_can( 'manage_options' ) ) { |
|
985 | - wp_die( __( 'You do not have sufficient permissions to access this page.', 'aui' ) ); |
|
984 | + if (!current_user_can('manage_options')) { |
|
985 | + wp_die(__('You do not have sufficient permissions to access this page.', 'aui')); |
|
986 | 986 | } |
987 | 987 | ?> |
988 | 988 | <div class="wrap"> |
989 | 989 | <h1><?php echo $this->name; ?></h1> |
990 | - <p><?php _e("Here you can adjust settings if you are having compatibility issues.","aui");?></p> |
|
990 | + <p><?php _e("Here you can adjust settings if you are having compatibility issues.", "aui"); ?></p> |
|
991 | 991 | <form method="post" action="options.php"> |
992 | 992 | <?php |
993 | - settings_fields( 'ayecode-ui-settings' ); |
|
994 | - do_settings_sections( 'ayecode-ui-settings' ); |
|
993 | + settings_fields('ayecode-ui-settings'); |
|
994 | + do_settings_sections('ayecode-ui-settings'); |
|
995 | 995 | ?> |
996 | 996 | |
997 | - <h2><?php _e( 'Frontend', 'aui' ); ?></h2> |
|
997 | + <h2><?php _e('Frontend', 'aui'); ?></h2> |
|
998 | 998 | <table class="form-table wpbs-table-settings"> |
999 | 999 | <tr valign="top"> |
1000 | 1000 | <th scope="row"><label |
1001 | - for="wpbs-css"><?php _e( 'Load CSS', 'aui' ); ?></label></th> |
|
1001 | + for="wpbs-css"><?php _e('Load CSS', 'aui'); ?></label></th> |
|
1002 | 1002 | <td> |
1003 | 1003 | <select name="ayecode-ui-settings[css]" id="wpbs-css"> |
1004 | - <option value="compatibility" <?php selected( $this->settings['css'], 'compatibility' ); ?>><?php _e( 'Compatibility Mode (default)', 'aui' ); ?></option> |
|
1005 | - <option value="core" <?php selected( $this->settings['css'], 'core' ); ?>><?php _e( 'Full Mode', 'aui' ); ?></option> |
|
1006 | - <option value="" <?php selected( $this->settings['css'], '' ); ?>><?php _e( 'Disabled', 'aui' ); ?></option> |
|
1004 | + <option value="compatibility" <?php selected($this->settings['css'], 'compatibility'); ?>><?php _e('Compatibility Mode (default)', 'aui'); ?></option> |
|
1005 | + <option value="core" <?php selected($this->settings['css'], 'core'); ?>><?php _e('Full Mode', 'aui'); ?></option> |
|
1006 | + <option value="" <?php selected($this->settings['css'], ''); ?>><?php _e('Disabled', 'aui'); ?></option> |
|
1007 | 1007 | </select> |
1008 | 1008 | </td> |
1009 | 1009 | </tr> |
1010 | 1010 | |
1011 | 1011 | <tr valign="top"> |
1012 | 1012 | <th scope="row"><label |
1013 | - for="wpbs-js"><?php _e( 'Load JS', 'aui' ); ?></label></th> |
|
1013 | + for="wpbs-js"><?php _e('Load JS', 'aui'); ?></label></th> |
|
1014 | 1014 | <td> |
1015 | 1015 | <select name="ayecode-ui-settings[js]" id="wpbs-js"> |
1016 | - <option value="core-popper" <?php selected( $this->settings['js'], 'core-popper' ); ?>><?php _e( 'Core + Popper (default)', 'aui' ); ?></option> |
|
1017 | - <option value="popper" <?php selected( $this->settings['js'], 'popper' ); ?>><?php _e( 'Popper', 'aui' ); ?></option> |
|
1018 | - <option value="required" <?php selected( $this->settings['js'], 'required' ); ?>><?php _e( 'Required functions only', 'aui' ); ?></option> |
|
1019 | - <option value="" <?php selected( $this->settings['js'], '' ); ?>><?php _e( 'Disabled (not recommended)', 'aui' ); ?></option> |
|
1016 | + <option value="core-popper" <?php selected($this->settings['js'], 'core-popper'); ?>><?php _e('Core + Popper (default)', 'aui'); ?></option> |
|
1017 | + <option value="popper" <?php selected($this->settings['js'], 'popper'); ?>><?php _e('Popper', 'aui'); ?></option> |
|
1018 | + <option value="required" <?php selected($this->settings['js'], 'required'); ?>><?php _e('Required functions only', 'aui'); ?></option> |
|
1019 | + <option value="" <?php selected($this->settings['js'], ''); ?>><?php _e('Disabled (not recommended)', 'aui'); ?></option> |
|
1020 | 1020 | </select> |
1021 | 1021 | </td> |
1022 | 1022 | </tr> |
1023 | 1023 | |
1024 | 1024 | <tr valign="top"> |
1025 | 1025 | <th scope="row"><label |
1026 | - for="wpbs-font_size"><?php _e( 'HTML Font Size (px)', 'aui' ); ?></label></th> |
|
1026 | + for="wpbs-font_size"><?php _e('HTML Font Size (px)', 'aui'); ?></label></th> |
|
1027 | 1027 | <td> |
1028 | - <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" /> |
|
1029 | - <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> |
|
1028 | + <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" /> |
|
1029 | + <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> |
|
1030 | 1030 | </td> |
1031 | 1031 | </tr> |
1032 | 1032 | |
1033 | 1033 | </table> |
1034 | 1034 | |
1035 | - <h2><?php _e( 'Backend', 'aui' ); ?> (wp-admin)</h2> |
|
1035 | + <h2><?php _e('Backend', 'aui'); ?> (wp-admin)</h2> |
|
1036 | 1036 | <table class="form-table wpbs-table-settings"> |
1037 | 1037 | <tr valign="top"> |
1038 | 1038 | <th scope="row"><label |
1039 | - for="wpbs-css-admin"><?php _e( 'Load CSS', 'aui' ); ?></label></th> |
|
1039 | + for="wpbs-css-admin"><?php _e('Load CSS', 'aui'); ?></label></th> |
|
1040 | 1040 | <td> |
1041 | 1041 | <select name="ayecode-ui-settings[css_backend]" id="wpbs-css-admin"> |
1042 | - <option value="compatibility" <?php selected( $this->settings['css_backend'], 'compatibility' ); ?>><?php _e( 'Compatibility Mode (default)', 'aui' ); ?></option> |
|
1043 | - <option value="core" <?php selected( $this->settings['css_backend'], 'core' ); ?>><?php _e( 'Full Mode (will cause style issues)', 'aui' ); ?></option> |
|
1044 | - <option value="" <?php selected( $this->settings['css_backend'], '' ); ?>><?php _e( 'Disabled', 'aui' ); ?></option> |
|
1042 | + <option value="compatibility" <?php selected($this->settings['css_backend'], 'compatibility'); ?>><?php _e('Compatibility Mode (default)', 'aui'); ?></option> |
|
1043 | + <option value="core" <?php selected($this->settings['css_backend'], 'core'); ?>><?php _e('Full Mode (will cause style issues)', 'aui'); ?></option> |
|
1044 | + <option value="" <?php selected($this->settings['css_backend'], ''); ?>><?php _e('Disabled', 'aui'); ?></option> |
|
1045 | 1045 | </select> |
1046 | 1046 | </td> |
1047 | 1047 | </tr> |
1048 | 1048 | |
1049 | 1049 | <tr valign="top"> |
1050 | 1050 | <th scope="row"><label |
1051 | - for="wpbs-js-admin"><?php _e( 'Load JS', 'aui' ); ?></label></th> |
|
1051 | + for="wpbs-js-admin"><?php _e('Load JS', 'aui'); ?></label></th> |
|
1052 | 1052 | <td> |
1053 | 1053 | <select name="ayecode-ui-settings[js_backend]" id="wpbs-js-admin"> |
1054 | - <option value="core-popper" <?php selected( $this->settings['js_backend'], 'core-popper' ); ?>><?php _e( 'Core + Popper (default)', 'aui' ); ?></option> |
|
1055 | - <option value="popper" <?php selected( $this->settings['js_backend'], 'popper' ); ?>><?php _e( 'Popper', 'aui' ); ?></option> |
|
1056 | - <option value="required" <?php selected( $this->settings['js_backend'], 'required' ); ?>><?php _e( 'Required functions only', 'aui' ); ?></option> |
|
1057 | - <option value="" <?php selected( $this->settings['js_backend'], '' ); ?>><?php _e( 'Disabled (not recommended)', 'aui' ); ?></option> |
|
1054 | + <option value="core-popper" <?php selected($this->settings['js_backend'], 'core-popper'); ?>><?php _e('Core + Popper (default)', 'aui'); ?></option> |
|
1055 | + <option value="popper" <?php selected($this->settings['js_backend'], 'popper'); ?>><?php _e('Popper', 'aui'); ?></option> |
|
1056 | + <option value="required" <?php selected($this->settings['js_backend'], 'required'); ?>><?php _e('Required functions only', 'aui'); ?></option> |
|
1057 | + <option value="" <?php selected($this->settings['js_backend'], ''); ?>><?php _e('Disabled (not recommended)', 'aui'); ?></option> |
|
1058 | 1058 | </select> |
1059 | 1059 | </td> |
1060 | 1060 | </tr> |
1061 | 1061 | |
1062 | 1062 | <tr valign="top"> |
1063 | 1063 | <th scope="row"><label |
1064 | - for="wpbs-disable-admin"><?php _e( 'Disable load on URL', 'aui' ); ?></label></th> |
|
1064 | + for="wpbs-disable-admin"><?php _e('Disable load on URL', 'aui'); ?></label></th> |
|
1065 | 1065 | <td> |
1066 | - <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> |
|
1067 | - <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> |
|
1066 | + <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> |
|
1067 | + <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> |
|
1068 | 1068 | |
1069 | 1069 | </td> |
1070 | 1070 | </tr> |
@@ -1082,9 +1082,9 @@ discard block |
||
1082 | 1082 | <?php |
1083 | 1083 | } |
1084 | 1084 | |
1085 | - public function customizer_settings($wp_customize){ |
|
1085 | + public function customizer_settings($wp_customize) { |
|
1086 | 1086 | $wp_customize->add_section('aui_settings', array( |
1087 | - 'title' => __('AyeCode UI','aui'), |
|
1087 | + 'title' => __('AyeCode UI', 'aui'), |
|
1088 | 1088 | 'priority' => 120, |
1089 | 1089 | )); |
1090 | 1090 | |
@@ -1098,8 +1098,8 @@ discard block |
||
1098 | 1098 | 'type' => 'option', |
1099 | 1099 | 'transport' => 'refresh', |
1100 | 1100 | )); |
1101 | - $wp_customize->add_control( new WP_Customize_Color_Control($wp_customize, 'color_primary', array( |
|
1102 | - 'label' => __('Primary Color','aui'), |
|
1101 | + $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'color_primary', array( |
|
1102 | + 'label' => __('Primary Color', 'aui'), |
|
1103 | 1103 | 'section' => 'aui_settings', |
1104 | 1104 | 'settings' => 'aui_options[color_primary]', |
1105 | 1105 | ))); |
@@ -1111,8 +1111,8 @@ discard block |
||
1111 | 1111 | 'type' => 'option', |
1112 | 1112 | 'transport' => 'refresh', |
1113 | 1113 | )); |
1114 | - $wp_customize->add_control( new WP_Customize_Color_Control($wp_customize, 'color_secondary', array( |
|
1115 | - 'label' => __('Secondary Color','aui'), |
|
1114 | + $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'color_secondary', array( |
|
1115 | + 'label' => __('Secondary Color', 'aui'), |
|
1116 | 1116 | 'section' => 'aui_settings', |
1117 | 1117 | 'settings' => 'aui_options[color_secondary]', |
1118 | 1118 | ))); |
@@ -1138,12 +1138,12 @@ discard block |
||
1138 | 1138 | .collapse.show:not(.in){display: inherit;} |
1139 | 1139 | .fade.show{opacity: 1;} |
1140 | 1140 | |
1141 | - <?php if( defined( 'SVQ_THEME_VERSION' ) ){ ?> |
|
1141 | + <?php if (defined('SVQ_THEME_VERSION')) { ?> |
|
1142 | 1142 | /* KLEO theme specific */ |
1143 | 1143 | .kleo-main-header .navbar-collapse.collapse.show:not(.in){display: inherit !important;} |
1144 | 1144 | <?php } ?> |
1145 | 1145 | |
1146 | - <?php if( defined( 'FUSION_BUILDER_VERSION' ) ){ ?> |
|
1146 | + <?php if (defined('FUSION_BUILDER_VERSION')) { ?> |
|
1147 | 1147 | /* With Avada builder */ |
1148 | 1148 | body.modal-open .modal.in {opacity:1;z-index: 99999} |
1149 | 1149 | body.modal-open .modal.bsui.in .modal-content {box-shadow: none;} |
@@ -1151,7 +1151,7 @@ discard block |
||
1151 | 1151 | <?php } ?> |
1152 | 1152 | </style> |
1153 | 1153 | <?php |
1154 | - return str_replace( array( |
|
1154 | + return str_replace(array( |
|
1155 | 1155 | '<style>', |
1156 | 1156 | '</style>' |
1157 | 1157 | ), '', ob_get_clean()); |
@@ -1171,16 +1171,16 @@ discard block |
||
1171 | 1171 | <?php |
1172 | 1172 | |
1173 | 1173 | // BS v3 compat |
1174 | - if( self::is_bs3_compat() ){ |
|
1174 | + if (self::is_bs3_compat()) { |
|
1175 | 1175 | echo self::bs3_compat_css(); |
1176 | 1176 | } |
1177 | 1177 | |
1178 | - if(!is_admin() && $primary_color != AUI_PRIMARY_COLOR_ORIGINAL){ |
|
1179 | - echo self::css_primary($primary_color,$compatibility); |
|
1178 | + if (!is_admin() && $primary_color != AUI_PRIMARY_COLOR_ORIGINAL) { |
|
1179 | + echo self::css_primary($primary_color, $compatibility); |
|
1180 | 1180 | } |
1181 | 1181 | |
1182 | - if(!is_admin() && $secondary_color != AUI_SECONDARY_COLOR_ORIGINAL){ |
|
1183 | - echo self::css_secondary($settings['color_secondary'],$compatibility); |
|
1182 | + if (!is_admin() && $secondary_color != AUI_SECONDARY_COLOR_ORIGINAL) { |
|
1183 | + echo self::css_secondary($settings['color_secondary'], $compatibility); |
|
1184 | 1184 | } |
1185 | 1185 | |
1186 | 1186 | // Set admin bar z-index lower when modal is open. |
@@ -1193,7 +1193,7 @@ discard block |
||
1193 | 1193 | /* |
1194 | 1194 | * We only add the <script> tags for code highlighting, so we strip them from the output. |
1195 | 1195 | */ |
1196 | - return str_replace( array( |
|
1196 | + return str_replace(array( |
|
1197 | 1197 | '<style>', |
1198 | 1198 | '</style>' |
1199 | 1199 | ), '', ob_get_clean()); |
@@ -1204,48 +1204,48 @@ discard block |
||
1204 | 1204 | * |
1205 | 1205 | * @return bool |
1206 | 1206 | */ |
1207 | - public static function is_bs3_compat(){ |
|
1207 | + public static function is_bs3_compat() { |
|
1208 | 1208 | return defined('AYECODE_UI_BS3_COMPAT') || defined('SVQ_THEME_VERSION') || defined('FUSION_BUILDER_VERSION'); |
1209 | 1209 | } |
1210 | 1210 | |
1211 | - public static function css_primary($color_code,$compatibility){; |
|
1211 | + public static function css_primary($color_code, $compatibility) {; |
|
1212 | 1212 | $color_code = sanitize_hex_color($color_code); |
1213 | - if(!$color_code){return '';} |
|
1213 | + if (!$color_code) {return ''; } |
|
1214 | 1214 | /** |
1215 | 1215 | * c = color, b = background color, o = border-color, f = fill |
1216 | 1216 | */ |
1217 | 1217 | $selectors = array( |
1218 | 1218 | 'a' => array('c'), |
1219 | - '.btn-primary' => array('b','o'), |
|
1220 | - '.btn-primary.disabled' => array('b','o'), |
|
1221 | - '.btn-primary:disabled' => array('b','o'), |
|
1222 | - '.btn-outline-primary' => array('c','o'), |
|
1223 | - '.btn-outline-primary:hover' => array('b','o'), |
|
1224 | - '.btn-outline-primary:not(:disabled):not(.disabled).active' => array('b','o'), |
|
1225 | - '.btn-outline-primary:not(:disabled):not(.disabled):active' => array('b','o'), |
|
1226 | - '.show>.btn-outline-primary.dropdown-toggle' => array('b','o'), |
|
1219 | + '.btn-primary' => array('b', 'o'), |
|
1220 | + '.btn-primary.disabled' => array('b', 'o'), |
|
1221 | + '.btn-primary:disabled' => array('b', 'o'), |
|
1222 | + '.btn-outline-primary' => array('c', 'o'), |
|
1223 | + '.btn-outline-primary:hover' => array('b', 'o'), |
|
1224 | + '.btn-outline-primary:not(:disabled):not(.disabled).active' => array('b', 'o'), |
|
1225 | + '.btn-outline-primary:not(:disabled):not(.disabled):active' => array('b', 'o'), |
|
1226 | + '.show>.btn-outline-primary.dropdown-toggle' => array('b', 'o'), |
|
1227 | 1227 | '.btn-link' => array('c'), |
1228 | 1228 | '.dropdown-item.active' => array('b'), |
1229 | - '.custom-control-input:checked~.custom-control-label::before' => array('b','o'), |
|
1230 | - '.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before' => array('b','o'), |
|
1229 | + '.custom-control-input:checked~.custom-control-label::before' => array('b', 'o'), |
|
1230 | + '.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before' => array('b', 'o'), |
|
1231 | 1231 | // '.custom-range::-webkit-slider-thumb' => array('b'), // these break the inline rules... |
1232 | 1232 | // '.custom-range::-moz-range-thumb' => array('b'), |
1233 | 1233 | // '.custom-range::-ms-thumb' => array('b'), |
1234 | 1234 | '.nav-pills .nav-link.active' => array('b'), |
1235 | 1235 | '.nav-pills .show>.nav-link' => array('b'), |
1236 | 1236 | '.page-link' => array('c'), |
1237 | - '.page-item.active .page-link' => array('b','o'), |
|
1237 | + '.page-item.active .page-link' => array('b', 'o'), |
|
1238 | 1238 | '.badge-primary' => array('b'), |
1239 | - '.alert-primary' => array('b','o'), |
|
1239 | + '.alert-primary' => array('b', 'o'), |
|
1240 | 1240 | '.progress-bar' => array('b'), |
1241 | - '.list-group-item.active' => array('b','o'), |
|
1242 | - '.bg-primary' => array('b','f'), |
|
1241 | + '.list-group-item.active' => array('b', 'o'), |
|
1242 | + '.bg-primary' => array('b', 'f'), |
|
1243 | 1243 | '.btn-link.btn-primary' => array('c'), |
1244 | 1244 | '.select2-container .select2-results__option--highlighted.select2-results__option[aria-selected=true]' => array('b'), |
1245 | 1245 | ); |
1246 | 1246 | |
1247 | 1247 | $important_selectors = array( |
1248 | - '.bg-primary' => array('b','f'), |
|
1248 | + '.bg-primary' => array('b', 'f'), |
|
1249 | 1249 | '.border-primary' => array('o'), |
1250 | 1250 | '.text-primary' => array('c'), |
1251 | 1251 | ); |
@@ -1262,116 +1262,116 @@ discard block |
||
1262 | 1262 | $output = ''; |
1263 | 1263 | |
1264 | 1264 | // build rules into each type |
1265 | - foreach($selectors as $selector => $types){ |
|
1266 | - $selector = $compatibility ? ".bsui ".$selector : $selector; |
|
1267 | - $types = array_combine($types,$types); |
|
1268 | - if(isset($types['c'])){$color[] = $selector;} |
|
1269 | - if(isset($types['b'])){$background[] = $selector;} |
|
1270 | - if(isset($types['o'])){$border[] = $selector;} |
|
1271 | - if(isset($types['f'])){$fill[] = $selector;} |
|
1265 | + foreach ($selectors as $selector => $types) { |
|
1266 | + $selector = $compatibility ? ".bsui " . $selector : $selector; |
|
1267 | + $types = array_combine($types, $types); |
|
1268 | + if (isset($types['c'])) {$color[] = $selector; } |
|
1269 | + if (isset($types['b'])) {$background[] = $selector; } |
|
1270 | + if (isset($types['o'])) {$border[] = $selector; } |
|
1271 | + if (isset($types['f'])) {$fill[] = $selector; } |
|
1272 | 1272 | } |
1273 | 1273 | |
1274 | 1274 | // build rules into each type |
1275 | - foreach($important_selectors as $selector => $types){ |
|
1276 | - $selector = $compatibility ? ".bsui ".$selector : $selector; |
|
1277 | - $types = array_combine($types,$types); |
|
1278 | - if(isset($types['c'])){$color_i[] = $selector;} |
|
1279 | - if(isset($types['b'])){$background_i[] = $selector;} |
|
1280 | - if(isset($types['o'])){$border_i[] = $selector;} |
|
1281 | - if(isset($types['f'])){$fill_i[] = $selector;} |
|
1275 | + foreach ($important_selectors as $selector => $types) { |
|
1276 | + $selector = $compatibility ? ".bsui " . $selector : $selector; |
|
1277 | + $types = array_combine($types, $types); |
|
1278 | + if (isset($types['c'])) {$color_i[] = $selector; } |
|
1279 | + if (isset($types['b'])) {$background_i[] = $selector; } |
|
1280 | + if (isset($types['o'])) {$border_i[] = $selector; } |
|
1281 | + if (isset($types['f'])) {$fill_i[] = $selector; } |
|
1282 | 1282 | } |
1283 | 1283 | |
1284 | 1284 | // add any color rules |
1285 | - if(!empty($color)){ |
|
1286 | - $output .= implode(",",$color) . "{color: $color_code;} "; |
|
1285 | + if (!empty($color)) { |
|
1286 | + $output .= implode(",", $color) . "{color: $color_code;} "; |
|
1287 | 1287 | } |
1288 | - if(!empty($color_i)){ |
|
1289 | - $output .= implode(",",$color_i) . "{color: $color_code !important;} "; |
|
1288 | + if (!empty($color_i)) { |
|
1289 | + $output .= implode(",", $color_i) . "{color: $color_code !important;} "; |
|
1290 | 1290 | } |
1291 | 1291 | |
1292 | 1292 | // add any background color rules |
1293 | - if(!empty($background)){ |
|
1294 | - $output .= implode(",",$background) . "{background-color: $color_code;} "; |
|
1293 | + if (!empty($background)) { |
|
1294 | + $output .= implode(",", $background) . "{background-color: $color_code;} "; |
|
1295 | 1295 | } |
1296 | - if(!empty($background_i)){ |
|
1297 | - $output .= implode(",",$background_i) . "{background-color: $color_code !important;} "; |
|
1296 | + if (!empty($background_i)) { |
|
1297 | + $output .= implode(",", $background_i) . "{background-color: $color_code !important;} "; |
|
1298 | 1298 | } |
1299 | 1299 | |
1300 | 1300 | // add any border color rules |
1301 | - if(!empty($border)){ |
|
1302 | - $output .= implode(",",$border) . "{border-color: $color_code;} "; |
|
1301 | + if (!empty($border)) { |
|
1302 | + $output .= implode(",", $border) . "{border-color: $color_code;} "; |
|
1303 | 1303 | } |
1304 | - if(!empty($border_i)){ |
|
1305 | - $output .= implode(",",$border_i) . "{border-color: $color_code !important;} "; |
|
1304 | + if (!empty($border_i)) { |
|
1305 | + $output .= implode(",", $border_i) . "{border-color: $color_code !important;} "; |
|
1306 | 1306 | } |
1307 | 1307 | |
1308 | 1308 | // add any fill color rules |
1309 | - if(!empty($fill)){ |
|
1310 | - $output .= implode(",",$fill) . "{fill: $color_code;} "; |
|
1309 | + if (!empty($fill)) { |
|
1310 | + $output .= implode(",", $fill) . "{fill: $color_code;} "; |
|
1311 | 1311 | } |
1312 | - if(!empty($fill_i)){ |
|
1313 | - $output .= implode(",",$fill_i) . "{fill: $color_code !important;} "; |
|
1312 | + if (!empty($fill_i)) { |
|
1313 | + $output .= implode(",", $fill_i) . "{fill: $color_code !important;} "; |
|
1314 | 1314 | } |
1315 | 1315 | |
1316 | 1316 | |
1317 | 1317 | $prefix = $compatibility ? ".bsui " : ""; |
1318 | 1318 | |
1319 | 1319 | // darken |
1320 | - $darker_075 = self::css_hex_lighten_darken($color_code,"-0.075"); |
|
1321 | - $darker_10 = self::css_hex_lighten_darken($color_code,"-0.10"); |
|
1322 | - $darker_125 = self::css_hex_lighten_darken($color_code,"-0.125"); |
|
1320 | + $darker_075 = self::css_hex_lighten_darken($color_code, "-0.075"); |
|
1321 | + $darker_10 = self::css_hex_lighten_darken($color_code, "-0.10"); |
|
1322 | + $darker_125 = self::css_hex_lighten_darken($color_code, "-0.125"); |
|
1323 | 1323 | |
1324 | 1324 | // lighten |
1325 | - $lighten_25 = self::css_hex_lighten_darken($color_code,"0.25"); |
|
1325 | + $lighten_25 = self::css_hex_lighten_darken($color_code, "0.25"); |
|
1326 | 1326 | |
1327 | 1327 | // opacity see https://css-tricks.com/8-digit-hex-codes/ |
1328 | - $op_25 = $color_code."40"; // 25% opacity |
|
1328 | + $op_25 = $color_code . "40"; // 25% opacity |
|
1329 | 1329 | |
1330 | 1330 | |
1331 | 1331 | // button states |
1332 | - $output .= $prefix ." .btn-primary:hover{background-color: ".$darker_075."; border-color: ".$darker_10.";} "; |
|
1333 | - $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;} "; |
|
1334 | - $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.";} "; |
|
1335 | - $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;} "; |
|
1332 | + $output .= $prefix . " .btn-primary:hover{background-color: " . $darker_075 . "; border-color: " . $darker_10 . ";} "; |
|
1333 | + $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;} "; |
|
1334 | + $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 . ";} "; |
|
1335 | + $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;} "; |
|
1336 | 1336 | |
1337 | 1337 | |
1338 | 1338 | // dropdown's |
1339 | - $output .= $prefix ." .dropdown-item.active, $prefix .dropdown-item:active{background-color: $color_code;} "; |
|
1339 | + $output .= $prefix . " .dropdown-item.active, $prefix .dropdown-item:active{background-color: $color_code;} "; |
|
1340 | 1340 | |
1341 | 1341 | |
1342 | 1342 | // input states |
1343 | - $output .= $prefix ." .form-control:focus{border-color: ".$lighten_25.";box-shadow: 0 0 0 0.2rem $op_25;} "; |
|
1343 | + $output .= $prefix . " .form-control:focus{border-color: " . $lighten_25 . ";box-shadow: 0 0 0 0.2rem $op_25;} "; |
|
1344 | 1344 | |
1345 | 1345 | // page link |
1346 | - $output .= $prefix ." .page-link:focus{box-shadow: 0 0 0 0.2rem $op_25;} "; |
|
1346 | + $output .= $prefix . " .page-link:focus{box-shadow: 0 0 0 0.2rem $op_25;} "; |
|
1347 | 1347 | |
1348 | 1348 | return $output; |
1349 | 1349 | } |
1350 | 1350 | |
1351 | - public static function css_secondary($color_code,$compatibility){; |
|
1351 | + public static function css_secondary($color_code, $compatibility) {; |
|
1352 | 1352 | $color_code = sanitize_hex_color($color_code); |
1353 | - if(!$color_code){return '';} |
|
1353 | + if (!$color_code) {return ''; } |
|
1354 | 1354 | /** |
1355 | 1355 | * c = color, b = background color, o = border-color, f = fill |
1356 | 1356 | */ |
1357 | 1357 | $selectors = array( |
1358 | - '.btn-secondary' => array('b','o'), |
|
1359 | - '.btn-secondary.disabled' => array('b','o'), |
|
1360 | - '.btn-secondary:disabled' => array('b','o'), |
|
1361 | - '.btn-outline-secondary' => array('c','o'), |
|
1362 | - '.btn-outline-secondary:hover' => array('b','o'), |
|
1358 | + '.btn-secondary' => array('b', 'o'), |
|
1359 | + '.btn-secondary.disabled' => array('b', 'o'), |
|
1360 | + '.btn-secondary:disabled' => array('b', 'o'), |
|
1361 | + '.btn-outline-secondary' => array('c', 'o'), |
|
1362 | + '.btn-outline-secondary:hover' => array('b', 'o'), |
|
1363 | 1363 | '.btn-outline-secondary.disabled' => array('c'), |
1364 | 1364 | '.btn-outline-secondary:disabled' => array('c'), |
1365 | - '.btn-outline-secondary:not(:disabled):not(.disabled):active' => array('b','o'), |
|
1366 | - '.btn-outline-secondary:not(:disabled):not(.disabled).active' => array('b','o'), |
|
1367 | - '.btn-outline-secondary.dropdown-toggle' => array('b','o'), |
|
1365 | + '.btn-outline-secondary:not(:disabled):not(.disabled):active' => array('b', 'o'), |
|
1366 | + '.btn-outline-secondary:not(:disabled):not(.disabled).active' => array('b', 'o'), |
|
1367 | + '.btn-outline-secondary.dropdown-toggle' => array('b', 'o'), |
|
1368 | 1368 | '.badge-secondary' => array('b'), |
1369 | - '.alert-secondary' => array('b','o'), |
|
1369 | + '.alert-secondary' => array('b', 'o'), |
|
1370 | 1370 | '.btn-link.btn-secondary' => array('c'), |
1371 | 1371 | ); |
1372 | 1372 | |
1373 | 1373 | $important_selectors = array( |
1374 | - '.bg-secondary' => array('b','f'), |
|
1374 | + '.bg-secondary' => array('b', 'f'), |
|
1375 | 1375 | '.border-secondary' => array('o'), |
1376 | 1376 | '.text-secondary' => array('c'), |
1377 | 1377 | ); |
@@ -1388,77 +1388,77 @@ discard block |
||
1388 | 1388 | $output = ''; |
1389 | 1389 | |
1390 | 1390 | // build rules into each type |
1391 | - foreach($selectors as $selector => $types){ |
|
1392 | - $selector = $compatibility ? ".bsui ".$selector : $selector; |
|
1393 | - $types = array_combine($types,$types); |
|
1394 | - if(isset($types['c'])){$color[] = $selector;} |
|
1395 | - if(isset($types['b'])){$background[] = $selector;} |
|
1396 | - if(isset($types['o'])){$border[] = $selector;} |
|
1397 | - if(isset($types['f'])){$fill[] = $selector;} |
|
1391 | + foreach ($selectors as $selector => $types) { |
|
1392 | + $selector = $compatibility ? ".bsui " . $selector : $selector; |
|
1393 | + $types = array_combine($types, $types); |
|
1394 | + if (isset($types['c'])) {$color[] = $selector; } |
|
1395 | + if (isset($types['b'])) {$background[] = $selector; } |
|
1396 | + if (isset($types['o'])) {$border[] = $selector; } |
|
1397 | + if (isset($types['f'])) {$fill[] = $selector; } |
|
1398 | 1398 | } |
1399 | 1399 | |
1400 | 1400 | // build rules into each type |
1401 | - foreach($important_selectors as $selector => $types){ |
|
1402 | - $selector = $compatibility ? ".bsui ".$selector : $selector; |
|
1403 | - $types = array_combine($types,$types); |
|
1404 | - if(isset($types['c'])){$color_i[] = $selector;} |
|
1405 | - if(isset($types['b'])){$background_i[] = $selector;} |
|
1406 | - if(isset($types['o'])){$border_i[] = $selector;} |
|
1407 | - if(isset($types['f'])){$fill_i[] = $selector;} |
|
1401 | + foreach ($important_selectors as $selector => $types) { |
|
1402 | + $selector = $compatibility ? ".bsui " . $selector : $selector; |
|
1403 | + $types = array_combine($types, $types); |
|
1404 | + if (isset($types['c'])) {$color_i[] = $selector; } |
|
1405 | + if (isset($types['b'])) {$background_i[] = $selector; } |
|
1406 | + if (isset($types['o'])) {$border_i[] = $selector; } |
|
1407 | + if (isset($types['f'])) {$fill_i[] = $selector; } |
|
1408 | 1408 | } |
1409 | 1409 | |
1410 | 1410 | // add any color rules |
1411 | - if(!empty($color)){ |
|
1412 | - $output .= implode(",",$color) . "{color: $color_code;} "; |
|
1411 | + if (!empty($color)) { |
|
1412 | + $output .= implode(",", $color) . "{color: $color_code;} "; |
|
1413 | 1413 | } |
1414 | - if(!empty($color_i)){ |
|
1415 | - $output .= implode(",",$color_i) . "{color: $color_code !important;} "; |
|
1414 | + if (!empty($color_i)) { |
|
1415 | + $output .= implode(",", $color_i) . "{color: $color_code !important;} "; |
|
1416 | 1416 | } |
1417 | 1417 | |
1418 | 1418 | // add any background color rules |
1419 | - if(!empty($background)){ |
|
1420 | - $output .= implode(",",$background) . "{background-color: $color_code;} "; |
|
1419 | + if (!empty($background)) { |
|
1420 | + $output .= implode(",", $background) . "{background-color: $color_code;} "; |
|
1421 | 1421 | } |
1422 | - if(!empty($background_i)){ |
|
1423 | - $output .= implode(",",$background_i) . "{background-color: $color_code !important;} "; |
|
1422 | + if (!empty($background_i)) { |
|
1423 | + $output .= implode(",", $background_i) . "{background-color: $color_code !important;} "; |
|
1424 | 1424 | } |
1425 | 1425 | |
1426 | 1426 | // add any border color rules |
1427 | - if(!empty($border)){ |
|
1428 | - $output .= implode(",",$border) . "{border-color: $color_code;} "; |
|
1427 | + if (!empty($border)) { |
|
1428 | + $output .= implode(",", $border) . "{border-color: $color_code;} "; |
|
1429 | 1429 | } |
1430 | - if(!empty($border_i)){ |
|
1431 | - $output .= implode(",",$border_i) . "{border-color: $color_code !important;} "; |
|
1430 | + if (!empty($border_i)) { |
|
1431 | + $output .= implode(",", $border_i) . "{border-color: $color_code !important;} "; |
|
1432 | 1432 | } |
1433 | 1433 | |
1434 | 1434 | // add any fill color rules |
1435 | - if(!empty($fill)){ |
|
1436 | - $output .= implode(",",$fill) . "{fill: $color_code;} "; |
|
1435 | + if (!empty($fill)) { |
|
1436 | + $output .= implode(",", $fill) . "{fill: $color_code;} "; |
|
1437 | 1437 | } |
1438 | - if(!empty($fill_i)){ |
|
1439 | - $output .= implode(",",$fill_i) . "{fill: $color_code !important;} "; |
|
1438 | + if (!empty($fill_i)) { |
|
1439 | + $output .= implode(",", $fill_i) . "{fill: $color_code !important;} "; |
|
1440 | 1440 | } |
1441 | 1441 | |
1442 | 1442 | |
1443 | 1443 | $prefix = $compatibility ? ".bsui " : ""; |
1444 | 1444 | |
1445 | 1445 | // darken |
1446 | - $darker_075 = self::css_hex_lighten_darken($color_code,"-0.075"); |
|
1447 | - $darker_10 = self::css_hex_lighten_darken($color_code,"-0.10"); |
|
1448 | - $darker_125 = self::css_hex_lighten_darken($color_code,"-0.125"); |
|
1446 | + $darker_075 = self::css_hex_lighten_darken($color_code, "-0.075"); |
|
1447 | + $darker_10 = self::css_hex_lighten_darken($color_code, "-0.10"); |
|
1448 | + $darker_125 = self::css_hex_lighten_darken($color_code, "-0.125"); |
|
1449 | 1449 | |
1450 | 1450 | // lighten |
1451 | - $lighten_25 = self::css_hex_lighten_darken($color_code,"0.25"); |
|
1451 | + $lighten_25 = self::css_hex_lighten_darken($color_code, "0.25"); |
|
1452 | 1452 | |
1453 | 1453 | // opacity see https://css-tricks.com/8-digit-hex-codes/ |
1454 | - $op_25 = $color_code."40"; // 25% opacity |
|
1454 | + $op_25 = $color_code . "40"; // 25% opacity |
|
1455 | 1455 | |
1456 | 1456 | |
1457 | 1457 | // button states |
1458 | - $output .= $prefix ." .btn-secondary:hover{background-color: ".$darker_075."; border-color: ".$darker_10.";} "; |
|
1459 | - $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;} "; |
|
1460 | - $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.";} "; |
|
1461 | - $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;} "; |
|
1458 | + $output .= $prefix . " .btn-secondary:hover{background-color: " . $darker_075 . "; border-color: " . $darker_10 . ";} "; |
|
1459 | + $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;} "; |
|
1460 | + $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 . ";} "; |
|
1461 | + $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;} "; |
|
1462 | 1462 | |
1463 | 1463 | |
1464 | 1464 | return $output; |
@@ -1494,8 +1494,8 @@ discard block |
||
1494 | 1494 | /** |
1495 | 1495 | * Check if we should display examples. |
1496 | 1496 | */ |
1497 | - public function maybe_show_examples(){ |
|
1498 | - if(current_user_can('manage_options') && isset($_REQUEST['preview-aui'])){ |
|
1497 | + public function maybe_show_examples() { |
|
1498 | + if (current_user_can('manage_options') && isset($_REQUEST['preview-aui'])) { |
|
1499 | 1499 | echo "<head>"; |
1500 | 1500 | wp_head(); |
1501 | 1501 | echo "</head>"; |
@@ -1511,7 +1511,7 @@ discard block |
||
1511 | 1511 | * |
1512 | 1512 | * @return string |
1513 | 1513 | */ |
1514 | - public function get_examples(){ |
|
1514 | + public function get_examples() { |
|
1515 | 1515 | $output = ''; |
1516 | 1516 | |
1517 | 1517 |
@@ -6,39 +6,39 @@ |
||
6 | 6 | /** |
7 | 7 | * Bail if we are not in WP. |
8 | 8 | */ |
9 | -if ( ! defined( 'ABSPATH' ) ) { |
|
9 | +if (!defined('ABSPATH')) { |
|
10 | 10 | exit; |
11 | 11 | } |
12 | 12 | |
13 | 13 | /** |
14 | 14 | * Set the version only if its the current newest while loading. |
15 | 15 | */ |
16 | -add_action('after_setup_theme', function () { |
|
17 | - global $ayecode_ui_version,$ayecode_ui_file_key; |
|
16 | +add_action('after_setup_theme', function() { |
|
17 | + global $ayecode_ui_version, $ayecode_ui_file_key; |
|
18 | 18 | $this_version = "0.1.42"; |
19 | - if(version_compare($this_version , $ayecode_ui_version, '>')){ |
|
20 | - $ayecode_ui_version = $this_version ; |
|
21 | - $ayecode_ui_file_key = wp_hash( __FILE__ ); |
|
19 | + if (version_compare($this_version, $ayecode_ui_version, '>')) { |
|
20 | + $ayecode_ui_version = $this_version; |
|
21 | + $ayecode_ui_file_key = wp_hash(__FILE__); |
|
22 | 22 | } |
23 | 23 | },0); |
24 | 24 | |
25 | 25 | /** |
26 | 26 | * Load this version of WP Bootstrap Settings only if the file hash is the current one. |
27 | 27 | */ |
28 | -add_action('after_setup_theme', function () { |
|
28 | +add_action('after_setup_theme', function() { |
|
29 | 29 | global $ayecode_ui_file_key; |
30 | - if($ayecode_ui_file_key && $ayecode_ui_file_key == wp_hash( __FILE__ )){ |
|
31 | - include_once( dirname( __FILE__ ) . '/includes/class-aui.php' ); |
|
32 | - include_once( dirname( __FILE__ ) . '/includes/ayecode-ui-settings.php' ); |
|
30 | + if ($ayecode_ui_file_key && $ayecode_ui_file_key == wp_hash(__FILE__)) { |
|
31 | + include_once(dirname(__FILE__) . '/includes/class-aui.php'); |
|
32 | + include_once(dirname(__FILE__) . '/includes/ayecode-ui-settings.php'); |
|
33 | 33 | } |
34 | 34 | },1); |
35 | 35 | |
36 | 36 | /** |
37 | 37 | * Add the function that calls the class. |
38 | 38 | */ |
39 | -if(!function_exists('aui')){ |
|
40 | - function aui(){ |
|
41 | - if(!class_exists("AUI",false)){ |
|
39 | +if (!function_exists('aui')) { |
|
40 | + function aui() { |
|
41 | + if (!class_exists("AUI", false)) { |
|
42 | 42 | return false; |
43 | 43 | } |
44 | 44 | return AUI::instance(); |
@@ -1,90 +1,90 @@ |
||
1 | -<?php return array ( |
|
1 | +<?php return array( |
|
2 | 2 | 'root' => |
3 | - array ( |
|
3 | + array( |
|
4 | 4 | 'pretty_version' => 'dev-master', |
5 | 5 | 'version' => 'dev-master', |
6 | 6 | 'aliases' => |
7 | - array ( |
|
7 | + array( |
|
8 | 8 | ), |
9 | 9 | 'reference' => '776791abcd5a7b0e32b505816873caff25e96914', |
10 | 10 | 'name' => 'ayecode/invoicing', |
11 | 11 | ), |
12 | 12 | 'versions' => |
13 | - array ( |
|
13 | + array( |
|
14 | 14 | 'ayecode/ayecode-connect-helper' => |
15 | - array ( |
|
15 | + array( |
|
16 | 16 | 'pretty_version' => '1.0.3', |
17 | 17 | 'version' => '1.0.3.0', |
18 | 18 | 'aliases' => |
19 | - array ( |
|
19 | + array( |
|
20 | 20 | ), |
21 | 21 | 'reference' => '1af7cdefdbd20d4443a3ab4834e4c1cd8fe57fb4', |
22 | 22 | ), |
23 | 23 | 'ayecode/invoicing' => |
24 | - array ( |
|
24 | + array( |
|
25 | 25 | 'pretty_version' => 'dev-master', |
26 | 26 | 'version' => 'dev-master', |
27 | 27 | 'aliases' => |
28 | - array ( |
|
28 | + array( |
|
29 | 29 | ), |
30 | 30 | 'reference' => '776791abcd5a7b0e32b505816873caff25e96914', |
31 | 31 | ), |
32 | 32 | 'ayecode/wp-ayecode-ui' => |
33 | - array ( |
|
33 | + array( |
|
34 | 34 | 'pretty_version' => '0.1.42', |
35 | 35 | 'version' => '0.1.42.0', |
36 | 36 | 'aliases' => |
37 | - array ( |
|
37 | + array( |
|
38 | 38 | ), |
39 | 39 | 'reference' => '8d94ec27255e4854d8828d1e13faa8e1b3702790', |
40 | 40 | ), |
41 | 41 | 'ayecode/wp-font-awesome-settings' => |
42 | - array ( |
|
42 | + array( |
|
43 | 43 | 'pretty_version' => '1.0.12', |
44 | 44 | 'version' => '1.0.12.0', |
45 | 45 | 'aliases' => |
46 | - array ( |
|
46 | + array( |
|
47 | 47 | ), |
48 | 48 | 'reference' => '754cca6fda775f3e0b56b90a810dfcaea62ea288', |
49 | 49 | ), |
50 | 50 | 'ayecode/wp-super-duper' => |
51 | - array ( |
|
51 | + array( |
|
52 | 52 | 'pretty_version' => '1.0.23', |
53 | 53 | 'version' => '1.0.23.0', |
54 | 54 | 'aliases' => |
55 | - array ( |
|
55 | + array( |
|
56 | 56 | ), |
57 | 57 | 'reference' => '9473c0b7cf3ef4c32374222994a3e4613cdaeb48', |
58 | 58 | ), |
59 | 59 | 'composer/installers' => |
60 | - array ( |
|
60 | + array( |
|
61 | 61 | 'pretty_version' => 'v1.10.0', |
62 | 62 | 'version' => '1.10.0.0', |
63 | 63 | 'aliases' => |
64 | - array ( |
|
64 | + array( |
|
65 | 65 | ), |
66 | 66 | 'reference' => '1a0357fccad9d1cc1ea0c9a05b8847fbccccb78d', |
67 | 67 | ), |
68 | 68 | 'maxmind-db/reader' => |
69 | - array ( |
|
69 | + array( |
|
70 | 70 | 'pretty_version' => 'v1.6.0', |
71 | 71 | 'version' => '1.6.0.0', |
72 | 72 | 'aliases' => |
73 | - array ( |
|
73 | + array( |
|
74 | 74 | ), |
75 | 75 | 'reference' => 'febd4920bf17c1da84cef58e56a8227dfb37fbe4', |
76 | 76 | ), |
77 | 77 | 'roundcube/plugin-installer' => |
78 | - array ( |
|
78 | + array( |
|
79 | 79 | 'replaced' => |
80 | - array ( |
|
80 | + array( |
|
81 | 81 | 0 => '*', |
82 | 82 | ), |
83 | 83 | ), |
84 | 84 | 'shama/baton' => |
85 | - array ( |
|
85 | + array( |
|
86 | 86 | 'replaced' => |
87 | - array ( |
|
87 | + array( |
|
88 | 88 | 0 => '*', |
89 | 89 | ), |
90 | 90 | ), |
@@ -11,93 +11,93 @@ |
||
11 | 11 | |
12 | 12 | class InstalledVersions |
13 | 13 | { |
14 | -private static $installed = array ( |
|
14 | +private static $installed = array( |
|
15 | 15 | 'root' => |
16 | - array ( |
|
16 | + array( |
|
17 | 17 | 'pretty_version' => 'dev-master', |
18 | 18 | 'version' => 'dev-master', |
19 | 19 | 'aliases' => |
20 | - array ( |
|
20 | + array( |
|
21 | 21 | ), |
22 | 22 | 'reference' => '776791abcd5a7b0e32b505816873caff25e96914', |
23 | 23 | 'name' => 'ayecode/invoicing', |
24 | 24 | ), |
25 | 25 | 'versions' => |
26 | - array ( |
|
26 | + array( |
|
27 | 27 | 'ayecode/ayecode-connect-helper' => |
28 | - array ( |
|
28 | + array( |
|
29 | 29 | 'pretty_version' => '1.0.3', |
30 | 30 | 'version' => '1.0.3.0', |
31 | 31 | 'aliases' => |
32 | - array ( |
|
32 | + array( |
|
33 | 33 | ), |
34 | 34 | 'reference' => '1af7cdefdbd20d4443a3ab4834e4c1cd8fe57fb4', |
35 | 35 | ), |
36 | 36 | 'ayecode/invoicing' => |
37 | - array ( |
|
37 | + array( |
|
38 | 38 | 'pretty_version' => 'dev-master', |
39 | 39 | 'version' => 'dev-master', |
40 | 40 | 'aliases' => |
41 | - array ( |
|
41 | + array( |
|
42 | 42 | ), |
43 | 43 | 'reference' => '776791abcd5a7b0e32b505816873caff25e96914', |
44 | 44 | ), |
45 | 45 | 'ayecode/wp-ayecode-ui' => |
46 | - array ( |
|
46 | + array( |
|
47 | 47 | 'pretty_version' => '0.1.42', |
48 | 48 | 'version' => '0.1.42.0', |
49 | 49 | 'aliases' => |
50 | - array ( |
|
50 | + array( |
|
51 | 51 | ), |
52 | 52 | 'reference' => '8d94ec27255e4854d8828d1e13faa8e1b3702790', |
53 | 53 | ), |
54 | 54 | 'ayecode/wp-font-awesome-settings' => |
55 | - array ( |
|
55 | + array( |
|
56 | 56 | 'pretty_version' => '1.0.12', |
57 | 57 | 'version' => '1.0.12.0', |
58 | 58 | 'aliases' => |
59 | - array ( |
|
59 | + array( |
|
60 | 60 | ), |
61 | 61 | 'reference' => '754cca6fda775f3e0b56b90a810dfcaea62ea288', |
62 | 62 | ), |
63 | 63 | 'ayecode/wp-super-duper' => |
64 | - array ( |
|
64 | + array( |
|
65 | 65 | 'pretty_version' => '1.0.23', |
66 | 66 | 'version' => '1.0.23.0', |
67 | 67 | 'aliases' => |
68 | - array ( |
|
68 | + array( |
|
69 | 69 | ), |
70 | 70 | 'reference' => '9473c0b7cf3ef4c32374222994a3e4613cdaeb48', |
71 | 71 | ), |
72 | 72 | 'composer/installers' => |
73 | - array ( |
|
73 | + array( |
|
74 | 74 | 'pretty_version' => 'v1.10.0', |
75 | 75 | 'version' => '1.10.0.0', |
76 | 76 | 'aliases' => |
77 | - array ( |
|
77 | + array( |
|
78 | 78 | ), |
79 | 79 | 'reference' => '1a0357fccad9d1cc1ea0c9a05b8847fbccccb78d', |
80 | 80 | ), |
81 | 81 | 'maxmind-db/reader' => |
82 | - array ( |
|
82 | + array( |
|
83 | 83 | 'pretty_version' => 'v1.6.0', |
84 | 84 | 'version' => '1.6.0.0', |
85 | 85 | 'aliases' => |
86 | - array ( |
|
86 | + array( |
|
87 | 87 | ), |
88 | 88 | 'reference' => 'febd4920bf17c1da84cef58e56a8227dfb37fbe4', |
89 | 89 | ), |
90 | 90 | 'roundcube/plugin-installer' => |
91 | - array ( |
|
91 | + array( |
|
92 | 92 | 'replaced' => |
93 | - array ( |
|
93 | + array( |
|
94 | 94 | 0 => '*', |
95 | 95 | ), |
96 | 96 | ), |
97 | 97 | 'shama/baton' => |
98 | - array ( |
|
98 | + array( |
|
99 | 99 | 'replaced' => |
100 | - array ( |
|
100 | + array( |
|
101 | 101 | 0 => '*', |
102 | 102 | ), |
103 | 103 | ), |