@@ -1,7 +1,7 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | 3 | if ( ! defined( 'ABSPATH' ) ) { |
4 | - exit; // Exit if accessed directly |
|
4 | + exit; // Exit if accessed directly |
|
5 | 5 | } |
6 | 6 | |
7 | 7 | /** |
@@ -11,231 +11,231 @@ discard block |
||
11 | 11 | */ |
12 | 12 | class AUI { |
13 | 13 | |
14 | - /** |
|
15 | - * Holds the class instance. |
|
16 | - * |
|
17 | - * @since 1.0.0 |
|
18 | - * @var null |
|
19 | - */ |
|
20 | - private static $instance = null; |
|
21 | - |
|
22 | - /** |
|
23 | - * Holds the current AUI version number. |
|
24 | - * |
|
25 | - * @var string $ver The current version number. |
|
26 | - */ |
|
27 | - public static $ver = '0.1.42'; |
|
28 | - |
|
29 | - public static $options = null; |
|
30 | - |
|
31 | - /** |
|
32 | - * There can be only one. |
|
33 | - * |
|
34 | - * @since 1.0.0 |
|
35 | - * @return AUI|null |
|
36 | - */ |
|
37 | - public static function instance() { |
|
38 | - if ( self::$instance == null ) { |
|
39 | - self::$instance = new AUI(); |
|
40 | - } |
|
41 | - |
|
42 | - return self::$instance; |
|
43 | - } |
|
44 | - |
|
45 | - /** |
|
46 | - * AUI constructor. |
|
47 | - * |
|
48 | - * @since 1.0.0 |
|
49 | - */ |
|
50 | - private function __construct() { |
|
51 | - if ( function_exists( "__autoload" ) ) { |
|
52 | - spl_autoload_register( "__autoload" ); |
|
53 | - } |
|
54 | - spl_autoload_register( array( $this, 'autoload' ) ); |
|
55 | - |
|
56 | - // load options |
|
57 | - self::$options = get_option('aui_options'); |
|
58 | - } |
|
59 | - |
|
60 | - /** |
|
61 | - * Autoload any components on the fly. |
|
62 | - * |
|
63 | - * @since 1.0.0 |
|
64 | - * |
|
65 | - * @param $classname |
|
66 | - */ |
|
67 | - private function autoload( $classname ) { |
|
68 | - $class = str_replace( '_', '-', strtolower( $classname ) ); |
|
69 | - $file_path = trailingslashit( dirname( __FILE__ ) ) . "components/class-" . $class . '.php'; |
|
70 | - if ( $file_path && is_readable( $file_path ) ) { |
|
71 | - include_once( $file_path ); |
|
72 | - } |
|
73 | - } |
|
74 | - |
|
75 | - /** |
|
76 | - * Get the AUI options. |
|
77 | - * |
|
78 | - * @param $option |
|
79 | - * |
|
80 | - * @return string|void |
|
81 | - */ |
|
82 | - public function get_option( $option ){ |
|
83 | - $result = isset(self::$options[$option]) ? esc_attr(self::$options[$option]) : ''; |
|
84 | - |
|
85 | - if ( ! $result && $option) { |
|
86 | - if( $option == 'color_primary' ){ |
|
87 | - $result = AUI_PRIMARY_COLOR; |
|
88 | - }elseif( $option == 'color_secondary' ){ |
|
89 | - $result = AUI_SECONDARY_COLOR; |
|
90 | - } |
|
91 | - } |
|
92 | - return $result; |
|
93 | - } |
|
94 | - |
|
95 | - public function render( $items = array() ) { |
|
96 | - $output = ''; |
|
97 | - |
|
98 | - if ( ! empty( $items ) ) { |
|
99 | - foreach ( $items as $args ) { |
|
100 | - $render = isset( $args['render'] ) ? $args['render'] : ''; |
|
101 | - if ( $render && method_exists( __CLASS__, $render ) ) { |
|
102 | - $output .= $this->$render( $args ); |
|
103 | - } |
|
104 | - } |
|
105 | - } |
|
106 | - |
|
107 | - return $output; |
|
108 | - } |
|
109 | - |
|
110 | - /** |
|
111 | - * Render and return a bootstrap alert component. |
|
112 | - * |
|
113 | - * @since 1.0.0 |
|
114 | - * |
|
115 | - * @param array $args |
|
116 | - * |
|
117 | - * @return string The rendered component. |
|
118 | - */ |
|
119 | - public function alert( $args = array() ) { |
|
120 | - return AUI_Component_Alert::get( $args ); |
|
121 | - } |
|
122 | - |
|
123 | - /** |
|
124 | - * Render and return a bootstrap input component. |
|
125 | - * |
|
126 | - * @since 1.0.0 |
|
127 | - * |
|
128 | - * @param array $args |
|
129 | - * |
|
130 | - * @return string The rendered component. |
|
131 | - */ |
|
132 | - public function input( $args = array() ) { |
|
133 | - return AUI_Component_Input::input( $args ); |
|
134 | - } |
|
135 | - |
|
136 | - /** |
|
137 | - * Render and return a bootstrap textarea component. |
|
138 | - * |
|
139 | - * @since 1.0.0 |
|
140 | - * |
|
141 | - * @param array $args |
|
142 | - * |
|
143 | - * @return string The rendered component. |
|
144 | - */ |
|
145 | - public function textarea( $args = array() ) { |
|
146 | - return AUI_Component_Input::textarea( $args ); |
|
147 | - } |
|
148 | - |
|
149 | - /** |
|
150 | - * Render and return a bootstrap button component. |
|
151 | - * |
|
152 | - * @since 1.0.0 |
|
153 | - * |
|
154 | - * @param array $args |
|
155 | - * |
|
156 | - * @return string The rendered component. |
|
157 | - */ |
|
158 | - public function button( $args = array() ) { |
|
159 | - return AUI_Component_Button::get( $args ); |
|
160 | - } |
|
161 | - |
|
162 | - /** |
|
163 | - * Render and return a bootstrap button component. |
|
164 | - * |
|
165 | - * @since 1.0.0 |
|
166 | - * |
|
167 | - * @param array $args |
|
168 | - * |
|
169 | - * @return string The rendered component. |
|
170 | - */ |
|
171 | - public function badge( $args = array() ) { |
|
172 | - $defaults = array( |
|
173 | - 'class' => 'badge badge-primary align-middle', |
|
174 | - ); |
|
175 | - |
|
176 | - // maybe set type |
|
177 | - if ( empty( $args['href'] ) ) { |
|
178 | - $defaults['type'] = 'badge'; |
|
179 | - } |
|
180 | - |
|
181 | - /** |
|
182 | - * Parse incoming $args into an array and merge it with $defaults |
|
183 | - */ |
|
184 | - $args = wp_parse_args( $args, $defaults ); |
|
185 | - |
|
186 | - return AUI_Component_Button::get( $args ); |
|
187 | - } |
|
188 | - |
|
189 | - /** |
|
190 | - * Render and return a bootstrap dropdown component. |
|
191 | - * |
|
192 | - * @since 1.0.0 |
|
193 | - * |
|
194 | - * @param array $args |
|
195 | - * |
|
196 | - * @return string The rendered component. |
|
197 | - */ |
|
198 | - public function dropdown( $args = array() ) { |
|
199 | - return AUI_Component_Dropdown::get( $args ); |
|
200 | - } |
|
201 | - |
|
202 | - /** |
|
203 | - * Render and return a bootstrap select component. |
|
204 | - * |
|
205 | - * @since 1.0.0 |
|
206 | - * |
|
207 | - * @param array $args |
|
208 | - * |
|
209 | - * @return string The rendered component. |
|
210 | - */ |
|
211 | - public function select( $args = array() ) { |
|
212 | - return AUI_Component_Input::select( $args ); |
|
213 | - } |
|
214 | - |
|
215 | - /** |
|
216 | - * Render and return a bootstrap radio component. |
|
217 | - * |
|
218 | - * @since 1.0.0 |
|
219 | - * |
|
220 | - * @param array $args |
|
221 | - * |
|
222 | - * @return string The rendered component. |
|
223 | - */ |
|
224 | - public function radio( $args = array() ) { |
|
225 | - return AUI_Component_Input::radio( $args ); |
|
226 | - } |
|
227 | - |
|
228 | - /** |
|
229 | - * Render and return a bootstrap pagination component. |
|
230 | - * |
|
231 | - * @since 1.0.0 |
|
232 | - * |
|
233 | - * @param array $args |
|
234 | - * |
|
235 | - * @return string The rendered component. |
|
236 | - */ |
|
237 | - public function pagination( $args = array() ) { |
|
238 | - return AUI_Component_Pagination::get( $args ); |
|
239 | - } |
|
14 | + /** |
|
15 | + * Holds the class instance. |
|
16 | + * |
|
17 | + * @since 1.0.0 |
|
18 | + * @var null |
|
19 | + */ |
|
20 | + private static $instance = null; |
|
21 | + |
|
22 | + /** |
|
23 | + * Holds the current AUI version number. |
|
24 | + * |
|
25 | + * @var string $ver The current version number. |
|
26 | + */ |
|
27 | + public static $ver = '0.1.42'; |
|
28 | + |
|
29 | + public static $options = null; |
|
30 | + |
|
31 | + /** |
|
32 | + * There can be only one. |
|
33 | + * |
|
34 | + * @since 1.0.0 |
|
35 | + * @return AUI|null |
|
36 | + */ |
|
37 | + public static function instance() { |
|
38 | + if ( self::$instance == null ) { |
|
39 | + self::$instance = new AUI(); |
|
40 | + } |
|
41 | + |
|
42 | + return self::$instance; |
|
43 | + } |
|
44 | + |
|
45 | + /** |
|
46 | + * AUI constructor. |
|
47 | + * |
|
48 | + * @since 1.0.0 |
|
49 | + */ |
|
50 | + private function __construct() { |
|
51 | + if ( function_exists( "__autoload" ) ) { |
|
52 | + spl_autoload_register( "__autoload" ); |
|
53 | + } |
|
54 | + spl_autoload_register( array( $this, 'autoload' ) ); |
|
55 | + |
|
56 | + // load options |
|
57 | + self::$options = get_option('aui_options'); |
|
58 | + } |
|
59 | + |
|
60 | + /** |
|
61 | + * Autoload any components on the fly. |
|
62 | + * |
|
63 | + * @since 1.0.0 |
|
64 | + * |
|
65 | + * @param $classname |
|
66 | + */ |
|
67 | + private function autoload( $classname ) { |
|
68 | + $class = str_replace( '_', '-', strtolower( $classname ) ); |
|
69 | + $file_path = trailingslashit( dirname( __FILE__ ) ) . "components/class-" . $class . '.php'; |
|
70 | + if ( $file_path && is_readable( $file_path ) ) { |
|
71 | + include_once( $file_path ); |
|
72 | + } |
|
73 | + } |
|
74 | + |
|
75 | + /** |
|
76 | + * Get the AUI options. |
|
77 | + * |
|
78 | + * @param $option |
|
79 | + * |
|
80 | + * @return string|void |
|
81 | + */ |
|
82 | + public function get_option( $option ){ |
|
83 | + $result = isset(self::$options[$option]) ? esc_attr(self::$options[$option]) : ''; |
|
84 | + |
|
85 | + if ( ! $result && $option) { |
|
86 | + if( $option == 'color_primary' ){ |
|
87 | + $result = AUI_PRIMARY_COLOR; |
|
88 | + }elseif( $option == 'color_secondary' ){ |
|
89 | + $result = AUI_SECONDARY_COLOR; |
|
90 | + } |
|
91 | + } |
|
92 | + return $result; |
|
93 | + } |
|
94 | + |
|
95 | + public function render( $items = array() ) { |
|
96 | + $output = ''; |
|
97 | + |
|
98 | + if ( ! empty( $items ) ) { |
|
99 | + foreach ( $items as $args ) { |
|
100 | + $render = isset( $args['render'] ) ? $args['render'] : ''; |
|
101 | + if ( $render && method_exists( __CLASS__, $render ) ) { |
|
102 | + $output .= $this->$render( $args ); |
|
103 | + } |
|
104 | + } |
|
105 | + } |
|
106 | + |
|
107 | + return $output; |
|
108 | + } |
|
109 | + |
|
110 | + /** |
|
111 | + * Render and return a bootstrap alert component. |
|
112 | + * |
|
113 | + * @since 1.0.0 |
|
114 | + * |
|
115 | + * @param array $args |
|
116 | + * |
|
117 | + * @return string The rendered component. |
|
118 | + */ |
|
119 | + public function alert( $args = array() ) { |
|
120 | + return AUI_Component_Alert::get( $args ); |
|
121 | + } |
|
122 | + |
|
123 | + /** |
|
124 | + * Render and return a bootstrap input component. |
|
125 | + * |
|
126 | + * @since 1.0.0 |
|
127 | + * |
|
128 | + * @param array $args |
|
129 | + * |
|
130 | + * @return string The rendered component. |
|
131 | + */ |
|
132 | + public function input( $args = array() ) { |
|
133 | + return AUI_Component_Input::input( $args ); |
|
134 | + } |
|
135 | + |
|
136 | + /** |
|
137 | + * Render and return a bootstrap textarea component. |
|
138 | + * |
|
139 | + * @since 1.0.0 |
|
140 | + * |
|
141 | + * @param array $args |
|
142 | + * |
|
143 | + * @return string The rendered component. |
|
144 | + */ |
|
145 | + public function textarea( $args = array() ) { |
|
146 | + return AUI_Component_Input::textarea( $args ); |
|
147 | + } |
|
148 | + |
|
149 | + /** |
|
150 | + * Render and return a bootstrap button component. |
|
151 | + * |
|
152 | + * @since 1.0.0 |
|
153 | + * |
|
154 | + * @param array $args |
|
155 | + * |
|
156 | + * @return string The rendered component. |
|
157 | + */ |
|
158 | + public function button( $args = array() ) { |
|
159 | + return AUI_Component_Button::get( $args ); |
|
160 | + } |
|
161 | + |
|
162 | + /** |
|
163 | + * Render and return a bootstrap button component. |
|
164 | + * |
|
165 | + * @since 1.0.0 |
|
166 | + * |
|
167 | + * @param array $args |
|
168 | + * |
|
169 | + * @return string The rendered component. |
|
170 | + */ |
|
171 | + public function badge( $args = array() ) { |
|
172 | + $defaults = array( |
|
173 | + 'class' => 'badge badge-primary align-middle', |
|
174 | + ); |
|
175 | + |
|
176 | + // maybe set type |
|
177 | + if ( empty( $args['href'] ) ) { |
|
178 | + $defaults['type'] = 'badge'; |
|
179 | + } |
|
180 | + |
|
181 | + /** |
|
182 | + * Parse incoming $args into an array and merge it with $defaults |
|
183 | + */ |
|
184 | + $args = wp_parse_args( $args, $defaults ); |
|
185 | + |
|
186 | + return AUI_Component_Button::get( $args ); |
|
187 | + } |
|
188 | + |
|
189 | + /** |
|
190 | + * Render and return a bootstrap dropdown component. |
|
191 | + * |
|
192 | + * @since 1.0.0 |
|
193 | + * |
|
194 | + * @param array $args |
|
195 | + * |
|
196 | + * @return string The rendered component. |
|
197 | + */ |
|
198 | + public function dropdown( $args = array() ) { |
|
199 | + return AUI_Component_Dropdown::get( $args ); |
|
200 | + } |
|
201 | + |
|
202 | + /** |
|
203 | + * Render and return a bootstrap select component. |
|
204 | + * |
|
205 | + * @since 1.0.0 |
|
206 | + * |
|
207 | + * @param array $args |
|
208 | + * |
|
209 | + * @return string The rendered component. |
|
210 | + */ |
|
211 | + public function select( $args = array() ) { |
|
212 | + return AUI_Component_Input::select( $args ); |
|
213 | + } |
|
214 | + |
|
215 | + /** |
|
216 | + * Render and return a bootstrap radio component. |
|
217 | + * |
|
218 | + * @since 1.0.0 |
|
219 | + * |
|
220 | + * @param array $args |
|
221 | + * |
|
222 | + * @return string The rendered component. |
|
223 | + */ |
|
224 | + public function radio( $args = array() ) { |
|
225 | + return AUI_Component_Input::radio( $args ); |
|
226 | + } |
|
227 | + |
|
228 | + /** |
|
229 | + * Render and return a bootstrap pagination component. |
|
230 | + * |
|
231 | + * @since 1.0.0 |
|
232 | + * |
|
233 | + * @param array $args |
|
234 | + * |
|
235 | + * @return string The rendered component. |
|
236 | + */ |
|
237 | + public function pagination( $args = array() ) { |
|
238 | + return AUI_Component_Pagination::get( $args ); |
|
239 | + } |
|
240 | 240 | |
241 | 241 | } |
242 | 242 | \ No newline at end of file |
@@ -13,7 +13,7 @@ discard block |
||
13 | 13 | * Bail if we are not in WP. |
14 | 14 | */ |
15 | 15 | if ( ! defined( 'ABSPATH' ) ) { |
16 | - exit; |
|
16 | + exit; |
|
17 | 17 | } |
18 | 18 | |
19 | 19 | /** |
@@ -21,202 +21,202 @@ discard block |
||
21 | 21 | */ |
22 | 22 | if ( ! class_exists( 'AyeCode_UI_Settings' ) ) { |
23 | 23 | |
24 | - /** |
|
25 | - * A Class to be able to change settings for Font Awesome. |
|
26 | - * |
|
27 | - * Class AyeCode_UI_Settings |
|
28 | - * @ver 1.0.0 |
|
29 | - * @todo decide how to implement textdomain |
|
30 | - */ |
|
31 | - class AyeCode_UI_Settings { |
|
32 | - |
|
33 | - /** |
|
34 | - * Class version version. |
|
35 | - * |
|
36 | - * @var string |
|
37 | - */ |
|
38 | - public $version = '1.0.1'; |
|
39 | - |
|
40 | - /** |
|
41 | - * Class textdomain. |
|
42 | - * |
|
43 | - * @var string |
|
44 | - */ |
|
45 | - public $textdomain = 'aui'; |
|
46 | - |
|
47 | - /** |
|
48 | - * Latest version of Bootstrap at time of publish published. |
|
49 | - * |
|
50 | - * @var string |
|
51 | - */ |
|
52 | - public $latest = "4.5.3"; |
|
53 | - |
|
54 | - /** |
|
55 | - * Current version of select2 being used. |
|
56 | - * |
|
57 | - * @var string |
|
58 | - */ |
|
59 | - public $select2_version = "4.0.11"; |
|
60 | - |
|
61 | - /** |
|
62 | - * The title. |
|
63 | - * |
|
64 | - * @var string |
|
65 | - */ |
|
66 | - public $name = 'AyeCode UI'; |
|
67 | - |
|
68 | - /** |
|
69 | - * The relative url to the assets. |
|
70 | - * |
|
71 | - * @var string |
|
72 | - */ |
|
73 | - public $url = ''; |
|
74 | - |
|
75 | - /** |
|
76 | - * Holds the settings values. |
|
77 | - * |
|
78 | - * @var array |
|
79 | - */ |
|
80 | - private $settings; |
|
81 | - |
|
82 | - /** |
|
83 | - * AyeCode_UI_Settings instance. |
|
84 | - * |
|
85 | - * @access private |
|
86 | - * @since 1.0.0 |
|
87 | - * @var AyeCode_UI_Settings There can be only one! |
|
88 | - */ |
|
89 | - private static $instance = null; |
|
90 | - |
|
91 | - /** |
|
92 | - * Main AyeCode_UI_Settings Instance. |
|
93 | - * |
|
94 | - * Ensures only one instance of AyeCode_UI_Settings is loaded or can be loaded. |
|
95 | - * |
|
96 | - * @since 1.0.0 |
|
97 | - * @static |
|
98 | - * @return AyeCode_UI_Settings - Main instance. |
|
99 | - */ |
|
100 | - public static function instance() { |
|
101 | - if ( ! isset( self::$instance ) && ! ( self::$instance instanceof AyeCode_UI_Settings ) ) { |
|
102 | - |
|
103 | - self::$instance = new AyeCode_UI_Settings; |
|
104 | - |
|
105 | - add_action( 'init', array( self::$instance, 'init' ) ); // set settings |
|
106 | - |
|
107 | - if ( is_admin() ) { |
|
108 | - add_action( 'admin_menu', array( self::$instance, 'menu_item' ) ); |
|
109 | - add_action( 'admin_init', array( self::$instance, 'register_settings' ) ); |
|
110 | - |
|
111 | - // Maybe show example page |
|
112 | - add_action( 'template_redirect', array( self::$instance,'maybe_show_examples' ) ); |
|
113 | - } |
|
24 | + /** |
|
25 | + * A Class to be able to change settings for Font Awesome. |
|
26 | + * |
|
27 | + * Class AyeCode_UI_Settings |
|
28 | + * @ver 1.0.0 |
|
29 | + * @todo decide how to implement textdomain |
|
30 | + */ |
|
31 | + class AyeCode_UI_Settings { |
|
32 | + |
|
33 | + /** |
|
34 | + * Class version version. |
|
35 | + * |
|
36 | + * @var string |
|
37 | + */ |
|
38 | + public $version = '1.0.1'; |
|
39 | + |
|
40 | + /** |
|
41 | + * Class textdomain. |
|
42 | + * |
|
43 | + * @var string |
|
44 | + */ |
|
45 | + public $textdomain = 'aui'; |
|
46 | + |
|
47 | + /** |
|
48 | + * Latest version of Bootstrap at time of publish published. |
|
49 | + * |
|
50 | + * @var string |
|
51 | + */ |
|
52 | + public $latest = "4.5.3"; |
|
53 | + |
|
54 | + /** |
|
55 | + * Current version of select2 being used. |
|
56 | + * |
|
57 | + * @var string |
|
58 | + */ |
|
59 | + public $select2_version = "4.0.11"; |
|
60 | + |
|
61 | + /** |
|
62 | + * The title. |
|
63 | + * |
|
64 | + * @var string |
|
65 | + */ |
|
66 | + public $name = 'AyeCode UI'; |
|
67 | + |
|
68 | + /** |
|
69 | + * The relative url to the assets. |
|
70 | + * |
|
71 | + * @var string |
|
72 | + */ |
|
73 | + public $url = ''; |
|
74 | + |
|
75 | + /** |
|
76 | + * Holds the settings values. |
|
77 | + * |
|
78 | + * @var array |
|
79 | + */ |
|
80 | + private $settings; |
|
81 | + |
|
82 | + /** |
|
83 | + * AyeCode_UI_Settings instance. |
|
84 | + * |
|
85 | + * @access private |
|
86 | + * @since 1.0.0 |
|
87 | + * @var AyeCode_UI_Settings There can be only one! |
|
88 | + */ |
|
89 | + private static $instance = null; |
|
90 | + |
|
91 | + /** |
|
92 | + * Main AyeCode_UI_Settings Instance. |
|
93 | + * |
|
94 | + * Ensures only one instance of AyeCode_UI_Settings is loaded or can be loaded. |
|
95 | + * |
|
96 | + * @since 1.0.0 |
|
97 | + * @static |
|
98 | + * @return AyeCode_UI_Settings - Main instance. |
|
99 | + */ |
|
100 | + public static function instance() { |
|
101 | + if ( ! isset( self::$instance ) && ! ( self::$instance instanceof AyeCode_UI_Settings ) ) { |
|
102 | + |
|
103 | + self::$instance = new AyeCode_UI_Settings; |
|
104 | + |
|
105 | + add_action( 'init', array( self::$instance, 'init' ) ); // set settings |
|
106 | + |
|
107 | + if ( is_admin() ) { |
|
108 | + add_action( 'admin_menu', array( self::$instance, 'menu_item' ) ); |
|
109 | + add_action( 'admin_init', array( self::$instance, 'register_settings' ) ); |
|
110 | + |
|
111 | + // Maybe show example page |
|
112 | + add_action( 'template_redirect', array( self::$instance,'maybe_show_examples' ) ); |
|
113 | + } |
|
114 | 114 | |
115 | - add_action( 'customize_register', array( self::$instance, 'customizer_settings' )); |
|
116 | - |
|
117 | - do_action( 'ayecode_ui_settings_loaded' ); |
|
118 | - } |
|
119 | - |
|
120 | - return self::$instance; |
|
121 | - } |
|
122 | - |
|
123 | - /** |
|
124 | - * Setup some constants. |
|
125 | - */ |
|
126 | - public function constants(){ |
|
127 | - define('AUI_PRIMARY_COLOR_ORIGINAL', "#1e73be"); |
|
128 | - define('AUI_SECONDARY_COLOR_ORIGINAL', '#6c757d'); |
|
129 | - if (!defined('AUI_PRIMARY_COLOR')) define('AUI_PRIMARY_COLOR', AUI_PRIMARY_COLOR_ORIGINAL); |
|
130 | - if (!defined('AUI_SECONDARY_COLOR')) define('AUI_SECONDARY_COLOR', AUI_SECONDARY_COLOR_ORIGINAL); |
|
131 | - } |
|
132 | - |
|
133 | - /** |
|
134 | - * Initiate the settings and add the required action hooks. |
|
135 | - */ |
|
136 | - public function init() { |
|
137 | - $this->constants(); |
|
138 | - $this->settings = $this->get_settings(); |
|
139 | - $this->url = $this->get_url(); |
|
140 | - |
|
141 | - /** |
|
142 | - * Maybe load CSS |
|
143 | - * |
|
144 | - * We load super early in case there is a theme version that might change the colors |
|
145 | - */ |
|
146 | - if ( $this->settings['css'] ) { |
|
147 | - add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_style' ), 1 ); |
|
148 | - } |
|
149 | - if ( $this->settings['css_backend'] && $this->load_admin_scripts() ) { |
|
150 | - add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_style' ), 1 ); |
|
151 | - } |
|
152 | - |
|
153 | - // maybe load JS |
|
154 | - if ( $this->settings['js'] ) { |
|
155 | - $priority = $this->is_bs3_compat() ? 100 : 1; |
|
156 | - add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ), $priority ); |
|
157 | - } |
|
158 | - if ( $this->settings['js_backend'] && $this->load_admin_scripts() ) { |
|
159 | - add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ), 1 ); |
|
160 | - } |
|
161 | - |
|
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 ); |
|
165 | - } |
|
166 | - |
|
167 | - |
|
168 | - } |
|
169 | - |
|
170 | - /** |
|
171 | - * Check if we should load the admin scripts or not. |
|
172 | - * |
|
173 | - * @return bool |
|
174 | - */ |
|
175 | - public function load_admin_scripts(){ |
|
176 | - $result = true; |
|
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 ){ |
|
182 | - return false; // return early, no point checking further |
|
183 | - } |
|
184 | - } |
|
185 | - } |
|
115 | + add_action( 'customize_register', array( self::$instance, 'customizer_settings' )); |
|
116 | + |
|
117 | + do_action( 'ayecode_ui_settings_loaded' ); |
|
118 | + } |
|
119 | + |
|
120 | + return self::$instance; |
|
121 | + } |
|
122 | + |
|
123 | + /** |
|
124 | + * Setup some constants. |
|
125 | + */ |
|
126 | + public function constants(){ |
|
127 | + define('AUI_PRIMARY_COLOR_ORIGINAL', "#1e73be"); |
|
128 | + define('AUI_SECONDARY_COLOR_ORIGINAL', '#6c757d'); |
|
129 | + if (!defined('AUI_PRIMARY_COLOR')) define('AUI_PRIMARY_COLOR', AUI_PRIMARY_COLOR_ORIGINAL); |
|
130 | + if (!defined('AUI_SECONDARY_COLOR')) define('AUI_SECONDARY_COLOR', AUI_SECONDARY_COLOR_ORIGINAL); |
|
131 | + } |
|
132 | + |
|
133 | + /** |
|
134 | + * Initiate the settings and add the required action hooks. |
|
135 | + */ |
|
136 | + public function init() { |
|
137 | + $this->constants(); |
|
138 | + $this->settings = $this->get_settings(); |
|
139 | + $this->url = $this->get_url(); |
|
140 | + |
|
141 | + /** |
|
142 | + * Maybe load CSS |
|
143 | + * |
|
144 | + * We load super early in case there is a theme version that might change the colors |
|
145 | + */ |
|
146 | + if ( $this->settings['css'] ) { |
|
147 | + add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_style' ), 1 ); |
|
148 | + } |
|
149 | + if ( $this->settings['css_backend'] && $this->load_admin_scripts() ) { |
|
150 | + add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_style' ), 1 ); |
|
151 | + } |
|
152 | + |
|
153 | + // maybe load JS |
|
154 | + if ( $this->settings['js'] ) { |
|
155 | + $priority = $this->is_bs3_compat() ? 100 : 1; |
|
156 | + add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ), $priority ); |
|
157 | + } |
|
158 | + if ( $this->settings['js_backend'] && $this->load_admin_scripts() ) { |
|
159 | + add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ), 1 ); |
|
160 | + } |
|
161 | + |
|
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 ); |
|
165 | + } |
|
166 | + |
|
167 | + |
|
168 | + } |
|
169 | + |
|
170 | + /** |
|
171 | + * Check if we should load the admin scripts or not. |
|
172 | + * |
|
173 | + * @return bool |
|
174 | + */ |
|
175 | + public function load_admin_scripts(){ |
|
176 | + $result = true; |
|
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 ){ |
|
182 | + return false; // return early, no point checking further |
|
183 | + } |
|
184 | + } |
|
185 | + } |
|
186 | 186 | |
187 | - return $result; |
|
188 | - } |
|
187 | + return $result; |
|
188 | + } |
|
189 | 189 | |
190 | - /** |
|
191 | - * Add a html font size to the footer. |
|
192 | - */ |
|
193 | - public function html_font_size(){ |
|
194 | - $this->settings = $this->get_settings(); |
|
195 | - echo "<style>html{font-size:".absint($this->settings['html_font_size'])."px;}</style>"; |
|
196 | - } |
|
190 | + /** |
|
191 | + * Add a html font size to the footer. |
|
192 | + */ |
|
193 | + public function html_font_size(){ |
|
194 | + $this->settings = $this->get_settings(); |
|
195 | + echo "<style>html{font-size:".absint($this->settings['html_font_size'])."px;}</style>"; |
|
196 | + } |
|
197 | 197 | |
198 | - /** |
|
199 | - * Adds the styles. |
|
200 | - */ |
|
201 | - public function enqueue_style() { |
|
198 | + /** |
|
199 | + * Adds the styles. |
|
200 | + */ |
|
201 | + public function enqueue_style() { |
|
202 | 202 | |
203 | - $css_setting = current_action() == 'wp_enqueue_scripts' ? 'css' : 'css_backend'; |
|
203 | + $css_setting = current_action() == 'wp_enqueue_scripts' ? 'css' : 'css_backend'; |
|
204 | 204 | |
205 | - $rtl = is_rtl() ? '-rtl' : ''; |
|
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 | - // flatpickr |
|
214 | - wp_register_style( 'flatpickr', $this->url.'assets/css/flatpickr.min.css', array(), $this->latest ); |
|
213 | + // flatpickr |
|
214 | + wp_register_style( 'flatpickr', $this->url.'assets/css/flatpickr.min.css', array(), $this->latest ); |
|
215 | 215 | |
216 | 216 | |
217 | - // fix some wp-admin issues |
|
218 | - if(is_admin()){ |
|
219 | - $custom_css = " |
|
217 | + // fix some wp-admin issues |
|
218 | + if(is_admin()){ |
|
219 | + $custom_css = " |
|
220 | 220 | body{ |
221 | 221 | background-color: #f1f1f1; |
222 | 222 | font-family: -apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen-Sans,Ubuntu,Cantarell,\"Helvetica Neue\",sans-serif; |
@@ -252,29 +252,29 @@ discard block |
||
252 | 252 | } |
253 | 253 | "; |
254 | 254 | |
255 | - // @todo, remove once fixed :: fix for this bug https://github.com/WordPress/gutenberg/issues/14377 |
|
256 | - $custom_css .= " |
|
255 | + // @todo, remove once fixed :: fix for this bug https://github.com/WordPress/gutenberg/issues/14377 |
|
256 | + $custom_css .= " |
|
257 | 257 | .edit-post-sidebar input[type=color].components-text-control__input{ |
258 | 258 | padding: 0; |
259 | 259 | } |
260 | 260 | "; |
261 | - wp_add_inline_style( 'ayecode-ui', $custom_css ); |
|
262 | - } |
|
261 | + wp_add_inline_style( 'ayecode-ui', $custom_css ); |
|
262 | + } |
|
263 | 263 | |
264 | - // custom changes |
|
265 | - wp_add_inline_style( 'ayecode-ui', self::custom_css($compatibility) ); |
|
264 | + // custom changes |
|
265 | + wp_add_inline_style( 'ayecode-ui', self::custom_css($compatibility) ); |
|
266 | 266 | |
267 | - } |
|
268 | - } |
|
267 | + } |
|
268 | + } |
|
269 | 269 | |
270 | - /** |
|
271 | - * Get inline script used if bootstrap enqueued |
|
272 | - * |
|
273 | - * If this remains small then its best to use this than to add another JS file. |
|
274 | - */ |
|
275 | - public function inline_script(){ |
|
276 | - ob_start(); |
|
277 | - ?> |
|
270 | + /** |
|
271 | + * Get inline script used if bootstrap enqueued |
|
272 | + * |
|
273 | + * If this remains small then its best to use this than to add another JS file. |
|
274 | + */ |
|
275 | + public function inline_script(){ |
|
276 | + ob_start(); |
|
277 | + ?> |
|
278 | 278 | <script> |
279 | 279 | |
280 | 280 | /** |
@@ -766,27 +766,27 @@ discard block |
||
766 | 766 | |
767 | 767 | </script> |
768 | 768 | <?php |
769 | - $output = ob_get_clean(); |
|
769 | + $output = ob_get_clean(); |
|
770 | 770 | |
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( |
|
775 | - '<script>', |
|
776 | - '</script>' |
|
777 | - ), '', $output ); |
|
778 | - } |
|
779 | - |
|
780 | - |
|
781 | - /** |
|
782 | - * JS to help with conflict issues with other plugins and themes using bootstrap v3. |
|
783 | - * |
|
784 | - * @TODO we may need this when other conflicts arrise. |
|
785 | - * @return mixed |
|
786 | - */ |
|
787 | - public static function bs3_compat_js() { |
|
788 | - ob_start(); |
|
789 | - ?> |
|
774 | + return str_replace( array( |
|
775 | + '<script>', |
|
776 | + '</script>' |
|
777 | + ), '', $output ); |
|
778 | + } |
|
779 | + |
|
780 | + |
|
781 | + /** |
|
782 | + * JS to help with conflict issues with other plugins and themes using bootstrap v3. |
|
783 | + * |
|
784 | + * @TODO we may need this when other conflicts arrise. |
|
785 | + * @return mixed |
|
786 | + */ |
|
787 | + public static function bs3_compat_js() { |
|
788 | + ob_start(); |
|
789 | + ?> |
|
790 | 790 | <script> |
791 | 791 | <?php if( defined( 'FUSION_BUILDER_VERSION' ) ){ ?> |
792 | 792 | /* With Avada builder */ |
@@ -794,20 +794,20 @@ discard block |
||
794 | 794 | <?php } ?> |
795 | 795 | </script> |
796 | 796 | <?php |
797 | - return str_replace( array( |
|
798 | - '<script>', |
|
799 | - '</script>' |
|
800 | - ), '', ob_get_clean()); |
|
801 | - } |
|
802 | - |
|
803 | - /** |
|
804 | - * Get inline script used if bootstrap file browser enqueued. |
|
805 | - * |
|
806 | - * If this remains small then its best to use this than to add another JS file. |
|
807 | - */ |
|
808 | - public function inline_script_file_browser(){ |
|
809 | - ob_start(); |
|
810 | - ?> |
|
797 | + return str_replace( array( |
|
798 | + '<script>', |
|
799 | + '</script>' |
|
800 | + ), '', ob_get_clean()); |
|
801 | + } |
|
802 | + |
|
803 | + /** |
|
804 | + * Get inline script used if bootstrap file browser enqueued. |
|
805 | + * |
|
806 | + * If this remains small then its best to use this than to add another JS file. |
|
807 | + */ |
|
808 | + public function inline_script_file_browser(){ |
|
809 | + ob_start(); |
|
810 | + ?> |
|
811 | 811 | <script> |
812 | 812 | // run on doc ready |
813 | 813 | jQuery(document).ready(function () { |
@@ -815,184 +815,184 @@ discard block |
||
815 | 815 | }); |
816 | 816 | </script> |
817 | 817 | <?php |
818 | - $output = ob_get_clean(); |
|
818 | + $output = ob_get_clean(); |
|
819 | 819 | |
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( |
|
824 | - '<script>', |
|
825 | - '</script>' |
|
826 | - ), '', $output ); |
|
827 | - } |
|
828 | - |
|
829 | - /** |
|
830 | - * Adds the Font Awesome JS. |
|
831 | - */ |
|
832 | - public function enqueue_scripts() { |
|
833 | - |
|
834 | - $js_setting = current_action() == 'wp_enqueue_scripts' ? 'js' : 'js_backend'; |
|
835 | - |
|
836 | - // select2 |
|
837 | - wp_register_script( 'select2', $this->url.'assets/js/select2.min.js', array('jquery'), $this->select2_version ); |
|
838 | - |
|
839 | - // flatpickr |
|
840 | - wp_register_script( 'flatpickr', $this->url.'assets/js/flatpickr.min.js', array(), $this->latest ); |
|
841 | - |
|
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() ); |
|
845 | - |
|
846 | - $load_inline = false; |
|
847 | - |
|
848 | - if($this->settings[$js_setting]=='core-popper'){ |
|
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() ); |
|
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'); |
|
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' ); |
|
860 | - $load_inline = true; |
|
861 | - }else{ |
|
862 | - $load_inline = true; |
|
863 | - } |
|
864 | - |
|
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' ); |
|
869 | - $script = $this->inline_script(); |
|
870 | - wp_add_inline_script( 'bootstrap-dummy', $script ); |
|
871 | - } |
|
872 | - |
|
873 | - } |
|
874 | - |
|
875 | - /** |
|
876 | - * Enqueue flatpickr if called. |
|
877 | - */ |
|
878 | - public function enqueue_flatpickr(){ |
|
879 | - wp_enqueue_style( 'flatpickr' ); |
|
880 | - wp_enqueue_script( 'flatpickr' ); |
|
881 | - } |
|
882 | - |
|
883 | - /** |
|
884 | - * Get the url path to the current folder. |
|
885 | - * |
|
886 | - * @return string |
|
887 | - */ |
|
888 | - public function get_url() { |
|
889 | - |
|
890 | - $url = ''; |
|
891 | - // check if we are inside a plugin |
|
892 | - $file_dir = str_replace( "/includes","", wp_normalize_path( dirname( __FILE__ ) ) ); |
|
893 | - |
|
894 | - // add check in-case user has changed wp-content dir name. |
|
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()); |
|
898 | - |
|
899 | - if(!empty($url_parts[0]) && !empty($dir_parts[1])){ |
|
900 | - $url = trailingslashit( $url_parts[0]."/$wp_content_folder_name/".$dir_parts[1] ); |
|
901 | - } |
|
902 | - |
|
903 | - return $url; |
|
904 | - } |
|
905 | - |
|
906 | - /** |
|
907 | - * Register the database settings with WordPress. |
|
908 | - */ |
|
909 | - public function register_settings() { |
|
910 | - register_setting( 'ayecode-ui-settings', 'ayecode-ui-settings' ); |
|
911 | - } |
|
912 | - |
|
913 | - /** |
|
914 | - * Add the WordPress settings menu item. |
|
915 | - * @since 1.0.10 Calling function name direct will fail theme check so we don't. |
|
916 | - */ |
|
917 | - public function menu_item() { |
|
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( |
|
920 | - $this, |
|
921 | - 'settings_page' |
|
922 | - ) ); |
|
923 | - } |
|
924 | - |
|
925 | - /** |
|
926 | - * Get a list of themes and their default JS settings. |
|
927 | - * |
|
928 | - * @return array |
|
929 | - */ |
|
930 | - public function theme_js_settings(){ |
|
931 | - return array( |
|
932 | - 'ayetheme' => 'popper', |
|
933 | - 'listimia' => 'required', |
|
934 | - 'listimia_backend' => 'core-popper', |
|
935 | - 'avada' => 'required', |
|
936 | - ); |
|
937 | - } |
|
938 | - |
|
939 | - /** |
|
940 | - * Get the current Font Awesome output settings. |
|
941 | - * |
|
942 | - * @return array The array of settings. |
|
943 | - */ |
|
944 | - public function get_settings() { |
|
945 | - |
|
946 | - $db_settings = get_option( 'ayecode-ui-settings' ); |
|
947 | - $js_default = 'core-popper'; |
|
948 | - $js_default_backend = $js_default; |
|
949 | - |
|
950 | - // maybe set defaults (if no settings set) |
|
951 | - if(empty($db_settings)){ |
|
952 | - $active_theme = strtolower( get_template() ); // active parent theme. |
|
953 | - $theme_js_settings = self::theme_js_settings(); |
|
954 | - if(isset($theme_js_settings[$active_theme])){ |
|
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; |
|
957 | - } |
|
958 | - } |
|
959 | - |
|
960 | - $defaults = array( |
|
961 | - 'css' => 'compatibility', // core, compatibility |
|
962 | - 'js' => $js_default, // js to load, core-popper, popper |
|
963 | - 'html_font_size' => '16', // js to load, core-popper, popper |
|
964 | - 'css_backend' => 'compatibility', // core, compatibility |
|
965 | - 'js_backend' => $js_default_backend, // js to load, core-popper, popper |
|
966 | - 'disable_admin' => '', // URL snippets to disable loading on admin |
|
967 | - ); |
|
968 | - |
|
969 | - $settings = wp_parse_args( $db_settings, $defaults ); |
|
970 | - |
|
971 | - /** |
|
972 | - * Filter the Bootstrap settings. |
|
973 | - * |
|
974 | - * @todo if we add this filer people might use it and then it defeates the purpose of this class :/ |
|
975 | - */ |
|
976 | - return $this->settings = apply_filters( 'ayecode-ui-settings', $settings, $db_settings, $defaults ); |
|
977 | - } |
|
978 | - |
|
979 | - |
|
980 | - /** |
|
981 | - * The settings page html output. |
|
982 | - */ |
|
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' ) ); |
|
986 | - } |
|
987 | - ?> |
|
823 | + return str_replace( array( |
|
824 | + '<script>', |
|
825 | + '</script>' |
|
826 | + ), '', $output ); |
|
827 | + } |
|
828 | + |
|
829 | + /** |
|
830 | + * Adds the Font Awesome JS. |
|
831 | + */ |
|
832 | + public function enqueue_scripts() { |
|
833 | + |
|
834 | + $js_setting = current_action() == 'wp_enqueue_scripts' ? 'js' : 'js_backend'; |
|
835 | + |
|
836 | + // select2 |
|
837 | + wp_register_script( 'select2', $this->url.'assets/js/select2.min.js', array('jquery'), $this->select2_version ); |
|
838 | + |
|
839 | + // flatpickr |
|
840 | + wp_register_script( 'flatpickr', $this->url.'assets/js/flatpickr.min.js', array(), $this->latest ); |
|
841 | + |
|
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() ); |
|
845 | + |
|
846 | + $load_inline = false; |
|
847 | + |
|
848 | + if($this->settings[$js_setting]=='core-popper'){ |
|
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() ); |
|
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'); |
|
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' ); |
|
860 | + $load_inline = true; |
|
861 | + }else{ |
|
862 | + $load_inline = true; |
|
863 | + } |
|
864 | + |
|
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' ); |
|
869 | + $script = $this->inline_script(); |
|
870 | + wp_add_inline_script( 'bootstrap-dummy', $script ); |
|
871 | + } |
|
872 | + |
|
873 | + } |
|
874 | + |
|
875 | + /** |
|
876 | + * Enqueue flatpickr if called. |
|
877 | + */ |
|
878 | + public function enqueue_flatpickr(){ |
|
879 | + wp_enqueue_style( 'flatpickr' ); |
|
880 | + wp_enqueue_script( 'flatpickr' ); |
|
881 | + } |
|
882 | + |
|
883 | + /** |
|
884 | + * Get the url path to the current folder. |
|
885 | + * |
|
886 | + * @return string |
|
887 | + */ |
|
888 | + public function get_url() { |
|
889 | + |
|
890 | + $url = ''; |
|
891 | + // check if we are inside a plugin |
|
892 | + $file_dir = str_replace( "/includes","", wp_normalize_path( dirname( __FILE__ ) ) ); |
|
893 | + |
|
894 | + // add check in-case user has changed wp-content dir name. |
|
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()); |
|
898 | + |
|
899 | + if(!empty($url_parts[0]) && !empty($dir_parts[1])){ |
|
900 | + $url = trailingslashit( $url_parts[0]."/$wp_content_folder_name/".$dir_parts[1] ); |
|
901 | + } |
|
902 | + |
|
903 | + return $url; |
|
904 | + } |
|
905 | + |
|
906 | + /** |
|
907 | + * Register the database settings with WordPress. |
|
908 | + */ |
|
909 | + public function register_settings() { |
|
910 | + register_setting( 'ayecode-ui-settings', 'ayecode-ui-settings' ); |
|
911 | + } |
|
912 | + |
|
913 | + /** |
|
914 | + * Add the WordPress settings menu item. |
|
915 | + * @since 1.0.10 Calling function name direct will fail theme check so we don't. |
|
916 | + */ |
|
917 | + public function menu_item() { |
|
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( |
|
920 | + $this, |
|
921 | + 'settings_page' |
|
922 | + ) ); |
|
923 | + } |
|
924 | + |
|
925 | + /** |
|
926 | + * Get a list of themes and their default JS settings. |
|
927 | + * |
|
928 | + * @return array |
|
929 | + */ |
|
930 | + public function theme_js_settings(){ |
|
931 | + return array( |
|
932 | + 'ayetheme' => 'popper', |
|
933 | + 'listimia' => 'required', |
|
934 | + 'listimia_backend' => 'core-popper', |
|
935 | + 'avada' => 'required', |
|
936 | + ); |
|
937 | + } |
|
938 | + |
|
939 | + /** |
|
940 | + * Get the current Font Awesome output settings. |
|
941 | + * |
|
942 | + * @return array The array of settings. |
|
943 | + */ |
|
944 | + public function get_settings() { |
|
945 | + |
|
946 | + $db_settings = get_option( 'ayecode-ui-settings' ); |
|
947 | + $js_default = 'core-popper'; |
|
948 | + $js_default_backend = $js_default; |
|
949 | + |
|
950 | + // maybe set defaults (if no settings set) |
|
951 | + if(empty($db_settings)){ |
|
952 | + $active_theme = strtolower( get_template() ); // active parent theme. |
|
953 | + $theme_js_settings = self::theme_js_settings(); |
|
954 | + if(isset($theme_js_settings[$active_theme])){ |
|
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; |
|
957 | + } |
|
958 | + } |
|
959 | + |
|
960 | + $defaults = array( |
|
961 | + 'css' => 'compatibility', // core, compatibility |
|
962 | + 'js' => $js_default, // js to load, core-popper, popper |
|
963 | + 'html_font_size' => '16', // js to load, core-popper, popper |
|
964 | + 'css_backend' => 'compatibility', // core, compatibility |
|
965 | + 'js_backend' => $js_default_backend, // js to load, core-popper, popper |
|
966 | + 'disable_admin' => '', // URL snippets to disable loading on admin |
|
967 | + ); |
|
968 | + |
|
969 | + $settings = wp_parse_args( $db_settings, $defaults ); |
|
970 | + |
|
971 | + /** |
|
972 | + * Filter the Bootstrap settings. |
|
973 | + * |
|
974 | + * @todo if we add this filer people might use it and then it defeates the purpose of this class :/ |
|
975 | + */ |
|
976 | + return $this->settings = apply_filters( 'ayecode-ui-settings', $settings, $db_settings, $defaults ); |
|
977 | + } |
|
978 | + |
|
979 | + |
|
980 | + /** |
|
981 | + * The settings page html output. |
|
982 | + */ |
|
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' ) ); |
|
986 | + } |
|
987 | + ?> |
|
988 | 988 | <div class="wrap"> |
989 | 989 | <h1><?php echo $this->name; ?></h1> |
990 | 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' ); |
|
995 | - ?> |
|
993 | + settings_fields( 'ayecode-ui-settings' ); |
|
994 | + do_settings_sections( 'ayecode-ui-settings' ); |
|
995 | + ?> |
|
996 | 996 | |
997 | 997 | <h2><?php _e( 'Frontend', 'aui' ); ?></h2> |
998 | 998 | <table class="form-table wpbs-table-settings"> |
@@ -1072,60 +1072,60 @@ discard block |
||
1072 | 1072 | </table> |
1073 | 1073 | |
1074 | 1074 | <?php |
1075 | - submit_button(); |
|
1076 | - ?> |
|
1075 | + submit_button(); |
|
1076 | + ?> |
|
1077 | 1077 | </form> |
1078 | 1078 | |
1079 | 1079 | <div id="wpbs-version"><?php echo $this->version; ?></div> |
1080 | 1080 | </div> |
1081 | 1081 | |
1082 | 1082 | <?php |
1083 | - } |
|
1084 | - |
|
1085 | - public function customizer_settings($wp_customize){ |
|
1086 | - $wp_customize->add_section('aui_settings', array( |
|
1087 | - 'title' => __('AyeCode UI','aui'), |
|
1088 | - 'priority' => 120, |
|
1089 | - )); |
|
1090 | - |
|
1091 | - // ============================= |
|
1092 | - // = Color Picker = |
|
1093 | - // ============================= |
|
1094 | - $wp_customize->add_setting('aui_options[color_primary]', array( |
|
1095 | - 'default' => AUI_PRIMARY_COLOR, |
|
1096 | - 'sanitize_callback' => 'sanitize_hex_color', |
|
1097 | - 'capability' => 'edit_theme_options', |
|
1098 | - 'type' => 'option', |
|
1099 | - 'transport' => 'refresh', |
|
1100 | - )); |
|
1101 | - $wp_customize->add_control( new WP_Customize_Color_Control($wp_customize, 'color_primary', array( |
|
1102 | - 'label' => __('Primary Color','aui'), |
|
1103 | - 'section' => 'aui_settings', |
|
1104 | - 'settings' => 'aui_options[color_primary]', |
|
1105 | - ))); |
|
1106 | - |
|
1107 | - $wp_customize->add_setting('aui_options[color_secondary]', array( |
|
1108 | - 'default' => '#6c757d', |
|
1109 | - 'sanitize_callback' => 'sanitize_hex_color', |
|
1110 | - 'capability' => 'edit_theme_options', |
|
1111 | - 'type' => 'option', |
|
1112 | - 'transport' => 'refresh', |
|
1113 | - )); |
|
1114 | - $wp_customize->add_control( new WP_Customize_Color_Control($wp_customize, 'color_secondary', array( |
|
1115 | - 'label' => __('Secondary Color','aui'), |
|
1116 | - 'section' => 'aui_settings', |
|
1117 | - 'settings' => 'aui_options[color_secondary]', |
|
1118 | - ))); |
|
1119 | - } |
|
1120 | - |
|
1121 | - /** |
|
1122 | - * CSS to help with conflict issues with other plugins and themes using bootstrap v3. |
|
1123 | - * |
|
1124 | - * @return mixed |
|
1125 | - */ |
|
1126 | - public static function bs3_compat_css() { |
|
1127 | - ob_start(); |
|
1128 | - ?> |
|
1083 | + } |
|
1084 | + |
|
1085 | + public function customizer_settings($wp_customize){ |
|
1086 | + $wp_customize->add_section('aui_settings', array( |
|
1087 | + 'title' => __('AyeCode UI','aui'), |
|
1088 | + 'priority' => 120, |
|
1089 | + )); |
|
1090 | + |
|
1091 | + // ============================= |
|
1092 | + // = Color Picker = |
|
1093 | + // ============================= |
|
1094 | + $wp_customize->add_setting('aui_options[color_primary]', array( |
|
1095 | + 'default' => AUI_PRIMARY_COLOR, |
|
1096 | + 'sanitize_callback' => 'sanitize_hex_color', |
|
1097 | + 'capability' => 'edit_theme_options', |
|
1098 | + 'type' => 'option', |
|
1099 | + 'transport' => 'refresh', |
|
1100 | + )); |
|
1101 | + $wp_customize->add_control( new WP_Customize_Color_Control($wp_customize, 'color_primary', array( |
|
1102 | + 'label' => __('Primary Color','aui'), |
|
1103 | + 'section' => 'aui_settings', |
|
1104 | + 'settings' => 'aui_options[color_primary]', |
|
1105 | + ))); |
|
1106 | + |
|
1107 | + $wp_customize->add_setting('aui_options[color_secondary]', array( |
|
1108 | + 'default' => '#6c757d', |
|
1109 | + 'sanitize_callback' => 'sanitize_hex_color', |
|
1110 | + 'capability' => 'edit_theme_options', |
|
1111 | + 'type' => 'option', |
|
1112 | + 'transport' => 'refresh', |
|
1113 | + )); |
|
1114 | + $wp_customize->add_control( new WP_Customize_Color_Control($wp_customize, 'color_secondary', array( |
|
1115 | + 'label' => __('Secondary Color','aui'), |
|
1116 | + 'section' => 'aui_settings', |
|
1117 | + 'settings' => 'aui_options[color_secondary]', |
|
1118 | + ))); |
|
1119 | + } |
|
1120 | + |
|
1121 | + /** |
|
1122 | + * CSS to help with conflict issues with other plugins and themes using bootstrap v3. |
|
1123 | + * |
|
1124 | + * @return mixed |
|
1125 | + */ |
|
1126 | + public static function bs3_compat_css() { |
|
1127 | + ob_start(); |
|
1128 | + ?> |
|
1129 | 1129 | <style> |
1130 | 1130 | /* Bootstrap 3 compatibility */ |
1131 | 1131 | body.modal-open .modal-backdrop.show:not(.in) {opacity:0.5;} |
@@ -1151,467 +1151,467 @@ discard block |
||
1151 | 1151 | <?php } ?> |
1152 | 1152 | </style> |
1153 | 1153 | <?php |
1154 | - return str_replace( array( |
|
1155 | - '<style>', |
|
1156 | - '</style>' |
|
1157 | - ), '', ob_get_clean()); |
|
1158 | - } |
|
1154 | + return str_replace( array( |
|
1155 | + '<style>', |
|
1156 | + '</style>' |
|
1157 | + ), '', ob_get_clean()); |
|
1158 | + } |
|
1159 | 1159 | |
1160 | 1160 | |
1161 | - public static function custom_css($compatibility = true) { |
|
1162 | - $settings = get_option('aui_options'); |
|
1161 | + public static function custom_css($compatibility = true) { |
|
1162 | + $settings = get_option('aui_options'); |
|
1163 | 1163 | |
1164 | - ob_start(); |
|
1164 | + ob_start(); |
|
1165 | 1165 | |
1166 | - $primary_color = !empty($settings['color_primary']) ? $settings['color_primary'] : AUI_PRIMARY_COLOR; |
|
1167 | - $secondary_color = !empty($settings['color_secondary']) ? $settings['color_secondary'] : AUI_SECONDARY_COLOR; |
|
1168 | - //AUI_PRIMARY_COLOR_ORIGINAL |
|
1169 | - ?> |
|
1166 | + $primary_color = !empty($settings['color_primary']) ? $settings['color_primary'] : AUI_PRIMARY_COLOR; |
|
1167 | + $secondary_color = !empty($settings['color_secondary']) ? $settings['color_secondary'] : AUI_SECONDARY_COLOR; |
|
1168 | + //AUI_PRIMARY_COLOR_ORIGINAL |
|
1169 | + ?> |
|
1170 | 1170 | <style> |
1171 | 1171 | <?php |
1172 | 1172 | |
1173 | - // BS v3 compat |
|
1174 | - if( self::is_bs3_compat() ){ |
|
1175 | - echo self::bs3_compat_css(); |
|
1176 | - } |
|
1173 | + // BS v3 compat |
|
1174 | + if( self::is_bs3_compat() ){ |
|
1175 | + echo self::bs3_compat_css(); |
|
1176 | + } |
|
1177 | 1177 | |
1178 | - if(!is_admin() && $primary_color != AUI_PRIMARY_COLOR_ORIGINAL){ |
|
1179 | - echo self::css_primary($primary_color,$compatibility); |
|
1180 | - } |
|
1178 | + if(!is_admin() && $primary_color != AUI_PRIMARY_COLOR_ORIGINAL){ |
|
1179 | + echo self::css_primary($primary_color,$compatibility); |
|
1180 | + } |
|
1181 | 1181 | |
1182 | - if(!is_admin() && $secondary_color != AUI_SECONDARY_COLOR_ORIGINAL){ |
|
1183 | - echo self::css_secondary($settings['color_secondary'],$compatibility); |
|
1184 | - } |
|
1182 | + if(!is_admin() && $secondary_color != AUI_SECONDARY_COLOR_ORIGINAL){ |
|
1183 | + echo self::css_secondary($settings['color_secondary'],$compatibility); |
|
1184 | + } |
|
1185 | 1185 | |
1186 | - // Set admin bar z-index lower when modal is open. |
|
1187 | - echo ' body.modal-open #wpadminbar{z-index:999}'; |
|
1186 | + // Set admin bar z-index lower when modal is open. |
|
1187 | + echo ' body.modal-open #wpadminbar{z-index:999}'; |
|
1188 | 1188 | ?> |
1189 | 1189 | </style> |
1190 | 1190 | <?php |
1191 | 1191 | |
1192 | 1192 | |
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( |
|
1197 | - '<style>', |
|
1198 | - '</style>' |
|
1199 | - ), '', ob_get_clean()); |
|
1200 | - } |
|
1201 | - |
|
1202 | - /** |
|
1203 | - * Check if we should add booststrap 3 compatibility changes. |
|
1204 | - * |
|
1205 | - * @return bool |
|
1206 | - */ |
|
1207 | - public static function is_bs3_compat(){ |
|
1208 | - return defined('AYECODE_UI_BS3_COMPAT') || defined('SVQ_THEME_VERSION') || defined('FUSION_BUILDER_VERSION'); |
|
1209 | - } |
|
1210 | - |
|
1211 | - public static function css_primary($color_code,$compatibility){; |
|
1212 | - $color_code = sanitize_hex_color($color_code); |
|
1213 | - if(!$color_code){return '';} |
|
1214 | - /** |
|
1215 | - * c = color, b = background color, o = border-color, f = fill |
|
1216 | - */ |
|
1217 | - $selectors = array( |
|
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'), |
|
1227 | - '.btn-link' => array('c'), |
|
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'), |
|
1196 | + return str_replace( array( |
|
1197 | + '<style>', |
|
1198 | + '</style>' |
|
1199 | + ), '', ob_get_clean()); |
|
1200 | + } |
|
1201 | + |
|
1202 | + /** |
|
1203 | + * Check if we should add booststrap 3 compatibility changes. |
|
1204 | + * |
|
1205 | + * @return bool |
|
1206 | + */ |
|
1207 | + public static function is_bs3_compat(){ |
|
1208 | + return defined('AYECODE_UI_BS3_COMPAT') || defined('SVQ_THEME_VERSION') || defined('FUSION_BUILDER_VERSION'); |
|
1209 | + } |
|
1210 | + |
|
1211 | + public static function css_primary($color_code,$compatibility){; |
|
1212 | + $color_code = sanitize_hex_color($color_code); |
|
1213 | + if(!$color_code){return '';} |
|
1214 | + /** |
|
1215 | + * c = color, b = background color, o = border-color, f = fill |
|
1216 | + */ |
|
1217 | + $selectors = array( |
|
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'), |
|
1227 | + '.btn-link' => array('c'), |
|
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'), |
|
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 | - '.nav-pills .nav-link.active' => array('b'), |
|
1235 | - '.nav-pills .show>.nav-link' => array('b'), |
|
1236 | - '.page-link' => array('c'), |
|
1237 | - '.page-item.active .page-link' => array('b','o'), |
|
1238 | - '.badge-primary' => array('b'), |
|
1239 | - '.alert-primary' => array('b','o'), |
|
1240 | - '.progress-bar' => array('b'), |
|
1241 | - '.list-group-item.active' => array('b','o'), |
|
1242 | - '.bg-primary' => array('b','f'), |
|
1243 | - '.btn-link.btn-primary' => array('c'), |
|
1244 | - '.select2-container .select2-results__option--highlighted.select2-results__option[aria-selected=true]' => array('b'), |
|
1245 | - ); |
|
1246 | - |
|
1247 | - $important_selectors = array( |
|
1248 | - '.bg-primary' => array('b','f'), |
|
1249 | - '.border-primary' => array('o'), |
|
1250 | - '.text-primary' => array('c'), |
|
1251 | - ); |
|
1252 | - |
|
1253 | - $color = array(); |
|
1254 | - $color_i = array(); |
|
1255 | - $background = array(); |
|
1256 | - $background_i = array(); |
|
1257 | - $border = array(); |
|
1258 | - $border_i = array(); |
|
1259 | - $fill = array(); |
|
1260 | - $fill_i = array(); |
|
1261 | - |
|
1262 | - $output = ''; |
|
1263 | - |
|
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;} |
|
1272 | - } |
|
1273 | - |
|
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;} |
|
1282 | - } |
|
1283 | - |
|
1284 | - // add any color rules |
|
1285 | - if(!empty($color)){ |
|
1286 | - $output .= implode(",",$color) . "{color: $color_code;} "; |
|
1287 | - } |
|
1288 | - if(!empty($color_i)){ |
|
1289 | - $output .= implode(",",$color_i) . "{color: $color_code !important;} "; |
|
1290 | - } |
|
1291 | - |
|
1292 | - // add any background color rules |
|
1293 | - if(!empty($background)){ |
|
1294 | - $output .= implode(",",$background) . "{background-color: $color_code;} "; |
|
1295 | - } |
|
1296 | - if(!empty($background_i)){ |
|
1297 | - $output .= implode(",",$background_i) . "{background-color: $color_code !important;} "; |
|
1298 | - } |
|
1299 | - |
|
1300 | - // add any border color rules |
|
1301 | - if(!empty($border)){ |
|
1302 | - $output .= implode(",",$border) . "{border-color: $color_code;} "; |
|
1303 | - } |
|
1304 | - if(!empty($border_i)){ |
|
1305 | - $output .= implode(",",$border_i) . "{border-color: $color_code !important;} "; |
|
1306 | - } |
|
1307 | - |
|
1308 | - // add any fill color rules |
|
1309 | - if(!empty($fill)){ |
|
1310 | - $output .= implode(",",$fill) . "{fill: $color_code;} "; |
|
1311 | - } |
|
1312 | - if(!empty($fill_i)){ |
|
1313 | - $output .= implode(",",$fill_i) . "{fill: $color_code !important;} "; |
|
1314 | - } |
|
1315 | - |
|
1316 | - |
|
1317 | - $prefix = $compatibility ? ".bsui " : ""; |
|
1318 | - |
|
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"); |
|
1323 | - |
|
1324 | - // lighten |
|
1325 | - $lighten_25 = self::css_hex_lighten_darken($color_code,"0.25"); |
|
1326 | - |
|
1327 | - // opacity see https://css-tricks.com/8-digit-hex-codes/ |
|
1328 | - $op_25 = $color_code."40"; // 25% opacity |
|
1329 | - |
|
1330 | - |
|
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;} "; |
|
1336 | - |
|
1337 | - |
|
1338 | - // dropdown's |
|
1339 | - $output .= $prefix ." .dropdown-item.active, $prefix .dropdown-item:active{background-color: $color_code;} "; |
|
1340 | - |
|
1341 | - |
|
1342 | - // input states |
|
1343 | - $output .= $prefix ." .form-control:focus{border-color: ".$lighten_25.";box-shadow: 0 0 0 0.2rem $op_25;} "; |
|
1344 | - |
|
1345 | - // page link |
|
1346 | - $output .= $prefix ." .page-link:focus{box-shadow: 0 0 0 0.2rem $op_25;} "; |
|
1347 | - |
|
1348 | - return $output; |
|
1349 | - } |
|
1350 | - |
|
1351 | - public static function css_secondary($color_code,$compatibility){; |
|
1352 | - $color_code = sanitize_hex_color($color_code); |
|
1353 | - if(!$color_code){return '';} |
|
1354 | - /** |
|
1355 | - * c = color, b = background color, o = border-color, f = fill |
|
1356 | - */ |
|
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'), |
|
1363 | - '.btn-outline-secondary.disabled' => array('c'), |
|
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'), |
|
1368 | - '.badge-secondary' => array('b'), |
|
1369 | - '.alert-secondary' => array('b','o'), |
|
1370 | - '.btn-link.btn-secondary' => array('c'), |
|
1371 | - ); |
|
1372 | - |
|
1373 | - $important_selectors = array( |
|
1374 | - '.bg-secondary' => array('b','f'), |
|
1375 | - '.border-secondary' => array('o'), |
|
1376 | - '.text-secondary' => array('c'), |
|
1377 | - ); |
|
1378 | - |
|
1379 | - $color = array(); |
|
1380 | - $color_i = array(); |
|
1381 | - $background = array(); |
|
1382 | - $background_i = array(); |
|
1383 | - $border = array(); |
|
1384 | - $border_i = array(); |
|
1385 | - $fill = array(); |
|
1386 | - $fill_i = array(); |
|
1387 | - |
|
1388 | - $output = ''; |
|
1389 | - |
|
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;} |
|
1398 | - } |
|
1399 | - |
|
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;} |
|
1408 | - } |
|
1409 | - |
|
1410 | - // add any color rules |
|
1411 | - if(!empty($color)){ |
|
1412 | - $output .= implode(",",$color) . "{color: $color_code;} "; |
|
1413 | - } |
|
1414 | - if(!empty($color_i)){ |
|
1415 | - $output .= implode(",",$color_i) . "{color: $color_code !important;} "; |
|
1416 | - } |
|
1417 | - |
|
1418 | - // add any background color rules |
|
1419 | - if(!empty($background)){ |
|
1420 | - $output .= implode(",",$background) . "{background-color: $color_code;} "; |
|
1421 | - } |
|
1422 | - if(!empty($background_i)){ |
|
1423 | - $output .= implode(",",$background_i) . "{background-color: $color_code !important;} "; |
|
1424 | - } |
|
1425 | - |
|
1426 | - // add any border color rules |
|
1427 | - if(!empty($border)){ |
|
1428 | - $output .= implode(",",$border) . "{border-color: $color_code;} "; |
|
1429 | - } |
|
1430 | - if(!empty($border_i)){ |
|
1431 | - $output .= implode(",",$border_i) . "{border-color: $color_code !important;} "; |
|
1432 | - } |
|
1433 | - |
|
1434 | - // add any fill color rules |
|
1435 | - if(!empty($fill)){ |
|
1436 | - $output .= implode(",",$fill) . "{fill: $color_code;} "; |
|
1437 | - } |
|
1438 | - if(!empty($fill_i)){ |
|
1439 | - $output .= implode(",",$fill_i) . "{fill: $color_code !important;} "; |
|
1440 | - } |
|
1441 | - |
|
1442 | - |
|
1443 | - $prefix = $compatibility ? ".bsui " : ""; |
|
1444 | - |
|
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"); |
|
1449 | - |
|
1450 | - // lighten |
|
1451 | - $lighten_25 = self::css_hex_lighten_darken($color_code,"0.25"); |
|
1452 | - |
|
1453 | - // opacity see https://css-tricks.com/8-digit-hex-codes/ |
|
1454 | - $op_25 = $color_code."40"; // 25% opacity |
|
1455 | - |
|
1456 | - |
|
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;} "; |
|
1462 | - |
|
1463 | - |
|
1464 | - return $output; |
|
1465 | - } |
|
1466 | - |
|
1467 | - /** |
|
1468 | - * Increases or decreases the brightness of a color by a percentage of the current brightness. |
|
1469 | - * |
|
1470 | - * @param string $hexCode Supported formats: `#FFF`, `#FFFFFF`, `FFF`, `FFFFFF` |
|
1471 | - * @param float $adjustPercent A number between -1 and 1. E.g. 0.3 = 30% lighter; -0.4 = 40% darker. |
|
1472 | - * |
|
1473 | - * @return string |
|
1474 | - */ |
|
1475 | - public static function css_hex_lighten_darken($hexCode, $adjustPercent) { |
|
1476 | - $hexCode = ltrim($hexCode, '#'); |
|
1477 | - |
|
1478 | - if (strlen($hexCode) == 3) { |
|
1479 | - $hexCode = $hexCode[0] . $hexCode[0] . $hexCode[1] . $hexCode[1] . $hexCode[2] . $hexCode[2]; |
|
1480 | - } |
|
1481 | - |
|
1482 | - $hexCode = array_map('hexdec', str_split($hexCode, 2)); |
|
1483 | - |
|
1484 | - foreach ($hexCode as & $color) { |
|
1485 | - $adjustableLimit = $adjustPercent < 0 ? $color : 255 - $color; |
|
1486 | - $adjustAmount = ceil($adjustableLimit * $adjustPercent); |
|
1487 | - |
|
1488 | - $color = str_pad(dechex($color + $adjustAmount), 2, '0', STR_PAD_LEFT); |
|
1489 | - } |
|
1490 | - |
|
1491 | - return '#' . implode($hexCode); |
|
1492 | - } |
|
1493 | - |
|
1494 | - /** |
|
1495 | - * Check if we should display examples. |
|
1496 | - */ |
|
1497 | - public function maybe_show_examples(){ |
|
1498 | - if(current_user_can('manage_options') && isset($_REQUEST['preview-aui'])){ |
|
1499 | - echo "<head>"; |
|
1500 | - wp_head(); |
|
1501 | - echo "</head>"; |
|
1502 | - echo "<body>"; |
|
1503 | - echo $this->get_examples(); |
|
1504 | - echo "</body>"; |
|
1505 | - exit; |
|
1506 | - } |
|
1507 | - } |
|
1508 | - |
|
1509 | - /** |
|
1510 | - * Get developer examples. |
|
1511 | - * |
|
1512 | - * @return string |
|
1513 | - */ |
|
1514 | - public function get_examples(){ |
|
1515 | - $output = ''; |
|
1516 | - |
|
1517 | - |
|
1518 | - // open form |
|
1519 | - $output .= "<form class='p-5 m-5 border rounded'>"; |
|
1520 | - |
|
1521 | - // input example |
|
1522 | - $output .= aui()->input(array( |
|
1523 | - 'type' => 'text', |
|
1524 | - 'id' => 'text-example', |
|
1525 | - 'name' => 'text-example', |
|
1526 | - 'placeholder' => 'text placeholder', |
|
1527 | - 'title' => 'Text input example', |
|
1528 | - 'value' => '', |
|
1529 | - 'required' => false, |
|
1530 | - 'help_text' => 'help text', |
|
1531 | - 'label' => 'Text input example label' |
|
1532 | - )); |
|
1533 | - |
|
1534 | - // input example |
|
1535 | - $output .= aui()->input(array( |
|
1536 | - 'type' => 'url', |
|
1537 | - 'id' => 'text-example2', |
|
1538 | - 'name' => 'text-example', |
|
1539 | - 'placeholder' => 'url placeholder', |
|
1540 | - 'title' => 'Text input example', |
|
1541 | - 'value' => '', |
|
1542 | - 'required' => false, |
|
1543 | - 'help_text' => 'help text', |
|
1544 | - 'label' => 'Text input example label' |
|
1545 | - )); |
|
1546 | - |
|
1547 | - // checkbox example |
|
1548 | - $output .= aui()->input(array( |
|
1549 | - 'type' => 'checkbox', |
|
1550 | - 'id' => 'checkbox-example', |
|
1551 | - 'name' => 'checkbox-example', |
|
1552 | - 'placeholder' => 'checkbox-example', |
|
1553 | - 'title' => 'Checkbox example', |
|
1554 | - 'value' => '1', |
|
1555 | - 'checked' => true, |
|
1556 | - 'required' => false, |
|
1557 | - 'help_text' => 'help text', |
|
1558 | - 'label' => 'Checkbox checked' |
|
1559 | - )); |
|
1560 | - |
|
1561 | - // checkbox example |
|
1562 | - $output .= aui()->input(array( |
|
1563 | - 'type' => 'checkbox', |
|
1564 | - 'id' => 'checkbox-example2', |
|
1565 | - 'name' => 'checkbox-example2', |
|
1566 | - 'placeholder' => 'checkbox-example', |
|
1567 | - 'title' => 'Checkbox example', |
|
1568 | - 'value' => '1', |
|
1569 | - 'checked' => false, |
|
1570 | - 'required' => false, |
|
1571 | - 'help_text' => 'help text', |
|
1572 | - 'label' => 'Checkbox un-checked' |
|
1573 | - )); |
|
1574 | - |
|
1575 | - // switch example |
|
1576 | - $output .= aui()->input(array( |
|
1577 | - 'type' => 'checkbox', |
|
1578 | - 'id' => 'switch-example', |
|
1579 | - 'name' => 'switch-example', |
|
1580 | - 'placeholder' => 'checkbox-example', |
|
1581 | - 'title' => 'Switch example', |
|
1582 | - 'value' => '1', |
|
1583 | - 'checked' => true, |
|
1584 | - 'switch' => true, |
|
1585 | - 'required' => false, |
|
1586 | - 'help_text' => 'help text', |
|
1587 | - 'label' => 'Switch on' |
|
1588 | - )); |
|
1589 | - |
|
1590 | - // switch example |
|
1591 | - $output .= aui()->input(array( |
|
1592 | - 'type' => 'checkbox', |
|
1593 | - 'id' => 'switch-example2', |
|
1594 | - 'name' => 'switch-example2', |
|
1595 | - 'placeholder' => 'checkbox-example', |
|
1596 | - 'title' => 'Switch example', |
|
1597 | - 'value' => '1', |
|
1598 | - 'checked' => false, |
|
1599 | - 'switch' => true, |
|
1600 | - 'required' => false, |
|
1601 | - 'help_text' => 'help text', |
|
1602 | - 'label' => 'Switch off' |
|
1603 | - )); |
|
1604 | - |
|
1605 | - // close form |
|
1606 | - $output .= "</form>"; |
|
1607 | - |
|
1608 | - return $output; |
|
1609 | - } |
|
1610 | - |
|
1611 | - } |
|
1612 | - |
|
1613 | - /** |
|
1614 | - * Run the class if found. |
|
1615 | - */ |
|
1616 | - AyeCode_UI_Settings::instance(); |
|
1234 | + '.nav-pills .nav-link.active' => array('b'), |
|
1235 | + '.nav-pills .show>.nav-link' => array('b'), |
|
1236 | + '.page-link' => array('c'), |
|
1237 | + '.page-item.active .page-link' => array('b','o'), |
|
1238 | + '.badge-primary' => array('b'), |
|
1239 | + '.alert-primary' => array('b','o'), |
|
1240 | + '.progress-bar' => array('b'), |
|
1241 | + '.list-group-item.active' => array('b','o'), |
|
1242 | + '.bg-primary' => array('b','f'), |
|
1243 | + '.btn-link.btn-primary' => array('c'), |
|
1244 | + '.select2-container .select2-results__option--highlighted.select2-results__option[aria-selected=true]' => array('b'), |
|
1245 | + ); |
|
1246 | + |
|
1247 | + $important_selectors = array( |
|
1248 | + '.bg-primary' => array('b','f'), |
|
1249 | + '.border-primary' => array('o'), |
|
1250 | + '.text-primary' => array('c'), |
|
1251 | + ); |
|
1252 | + |
|
1253 | + $color = array(); |
|
1254 | + $color_i = array(); |
|
1255 | + $background = array(); |
|
1256 | + $background_i = array(); |
|
1257 | + $border = array(); |
|
1258 | + $border_i = array(); |
|
1259 | + $fill = array(); |
|
1260 | + $fill_i = array(); |
|
1261 | + |
|
1262 | + $output = ''; |
|
1263 | + |
|
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;} |
|
1272 | + } |
|
1273 | + |
|
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;} |
|
1282 | + } |
|
1283 | + |
|
1284 | + // add any color rules |
|
1285 | + if(!empty($color)){ |
|
1286 | + $output .= implode(",",$color) . "{color: $color_code;} "; |
|
1287 | + } |
|
1288 | + if(!empty($color_i)){ |
|
1289 | + $output .= implode(",",$color_i) . "{color: $color_code !important;} "; |
|
1290 | + } |
|
1291 | + |
|
1292 | + // add any background color rules |
|
1293 | + if(!empty($background)){ |
|
1294 | + $output .= implode(",",$background) . "{background-color: $color_code;} "; |
|
1295 | + } |
|
1296 | + if(!empty($background_i)){ |
|
1297 | + $output .= implode(",",$background_i) . "{background-color: $color_code !important;} "; |
|
1298 | + } |
|
1299 | + |
|
1300 | + // add any border color rules |
|
1301 | + if(!empty($border)){ |
|
1302 | + $output .= implode(",",$border) . "{border-color: $color_code;} "; |
|
1303 | + } |
|
1304 | + if(!empty($border_i)){ |
|
1305 | + $output .= implode(",",$border_i) . "{border-color: $color_code !important;} "; |
|
1306 | + } |
|
1307 | + |
|
1308 | + // add any fill color rules |
|
1309 | + if(!empty($fill)){ |
|
1310 | + $output .= implode(",",$fill) . "{fill: $color_code;} "; |
|
1311 | + } |
|
1312 | + if(!empty($fill_i)){ |
|
1313 | + $output .= implode(",",$fill_i) . "{fill: $color_code !important;} "; |
|
1314 | + } |
|
1315 | + |
|
1316 | + |
|
1317 | + $prefix = $compatibility ? ".bsui " : ""; |
|
1318 | + |
|
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"); |
|
1323 | + |
|
1324 | + // lighten |
|
1325 | + $lighten_25 = self::css_hex_lighten_darken($color_code,"0.25"); |
|
1326 | + |
|
1327 | + // opacity see https://css-tricks.com/8-digit-hex-codes/ |
|
1328 | + $op_25 = $color_code."40"; // 25% opacity |
|
1329 | + |
|
1330 | + |
|
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;} "; |
|
1336 | + |
|
1337 | + |
|
1338 | + // dropdown's |
|
1339 | + $output .= $prefix ." .dropdown-item.active, $prefix .dropdown-item:active{background-color: $color_code;} "; |
|
1340 | + |
|
1341 | + |
|
1342 | + // input states |
|
1343 | + $output .= $prefix ." .form-control:focus{border-color: ".$lighten_25.";box-shadow: 0 0 0 0.2rem $op_25;} "; |
|
1344 | + |
|
1345 | + // page link |
|
1346 | + $output .= $prefix ." .page-link:focus{box-shadow: 0 0 0 0.2rem $op_25;} "; |
|
1347 | + |
|
1348 | + return $output; |
|
1349 | + } |
|
1350 | + |
|
1351 | + public static function css_secondary($color_code,$compatibility){; |
|
1352 | + $color_code = sanitize_hex_color($color_code); |
|
1353 | + if(!$color_code){return '';} |
|
1354 | + /** |
|
1355 | + * c = color, b = background color, o = border-color, f = fill |
|
1356 | + */ |
|
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'), |
|
1363 | + '.btn-outline-secondary.disabled' => array('c'), |
|
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'), |
|
1368 | + '.badge-secondary' => array('b'), |
|
1369 | + '.alert-secondary' => array('b','o'), |
|
1370 | + '.btn-link.btn-secondary' => array('c'), |
|
1371 | + ); |
|
1372 | + |
|
1373 | + $important_selectors = array( |
|
1374 | + '.bg-secondary' => array('b','f'), |
|
1375 | + '.border-secondary' => array('o'), |
|
1376 | + '.text-secondary' => array('c'), |
|
1377 | + ); |
|
1378 | + |
|
1379 | + $color = array(); |
|
1380 | + $color_i = array(); |
|
1381 | + $background = array(); |
|
1382 | + $background_i = array(); |
|
1383 | + $border = array(); |
|
1384 | + $border_i = array(); |
|
1385 | + $fill = array(); |
|
1386 | + $fill_i = array(); |
|
1387 | + |
|
1388 | + $output = ''; |
|
1389 | + |
|
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;} |
|
1398 | + } |
|
1399 | + |
|
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;} |
|
1408 | + } |
|
1409 | + |
|
1410 | + // add any color rules |
|
1411 | + if(!empty($color)){ |
|
1412 | + $output .= implode(",",$color) . "{color: $color_code;} "; |
|
1413 | + } |
|
1414 | + if(!empty($color_i)){ |
|
1415 | + $output .= implode(",",$color_i) . "{color: $color_code !important;} "; |
|
1416 | + } |
|
1417 | + |
|
1418 | + // add any background color rules |
|
1419 | + if(!empty($background)){ |
|
1420 | + $output .= implode(",",$background) . "{background-color: $color_code;} "; |
|
1421 | + } |
|
1422 | + if(!empty($background_i)){ |
|
1423 | + $output .= implode(",",$background_i) . "{background-color: $color_code !important;} "; |
|
1424 | + } |
|
1425 | + |
|
1426 | + // add any border color rules |
|
1427 | + if(!empty($border)){ |
|
1428 | + $output .= implode(",",$border) . "{border-color: $color_code;} "; |
|
1429 | + } |
|
1430 | + if(!empty($border_i)){ |
|
1431 | + $output .= implode(",",$border_i) . "{border-color: $color_code !important;} "; |
|
1432 | + } |
|
1433 | + |
|
1434 | + // add any fill color rules |
|
1435 | + if(!empty($fill)){ |
|
1436 | + $output .= implode(",",$fill) . "{fill: $color_code;} "; |
|
1437 | + } |
|
1438 | + if(!empty($fill_i)){ |
|
1439 | + $output .= implode(",",$fill_i) . "{fill: $color_code !important;} "; |
|
1440 | + } |
|
1441 | + |
|
1442 | + |
|
1443 | + $prefix = $compatibility ? ".bsui " : ""; |
|
1444 | + |
|
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"); |
|
1449 | + |
|
1450 | + // lighten |
|
1451 | + $lighten_25 = self::css_hex_lighten_darken($color_code,"0.25"); |
|
1452 | + |
|
1453 | + // opacity see https://css-tricks.com/8-digit-hex-codes/ |
|
1454 | + $op_25 = $color_code."40"; // 25% opacity |
|
1455 | + |
|
1456 | + |
|
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;} "; |
|
1462 | + |
|
1463 | + |
|
1464 | + return $output; |
|
1465 | + } |
|
1466 | + |
|
1467 | + /** |
|
1468 | + * Increases or decreases the brightness of a color by a percentage of the current brightness. |
|
1469 | + * |
|
1470 | + * @param string $hexCode Supported formats: `#FFF`, `#FFFFFF`, `FFF`, `FFFFFF` |
|
1471 | + * @param float $adjustPercent A number between -1 and 1. E.g. 0.3 = 30% lighter; -0.4 = 40% darker. |
|
1472 | + * |
|
1473 | + * @return string |
|
1474 | + */ |
|
1475 | + public static function css_hex_lighten_darken($hexCode, $adjustPercent) { |
|
1476 | + $hexCode = ltrim($hexCode, '#'); |
|
1477 | + |
|
1478 | + if (strlen($hexCode) == 3) { |
|
1479 | + $hexCode = $hexCode[0] . $hexCode[0] . $hexCode[1] . $hexCode[1] . $hexCode[2] . $hexCode[2]; |
|
1480 | + } |
|
1481 | + |
|
1482 | + $hexCode = array_map('hexdec', str_split($hexCode, 2)); |
|
1483 | + |
|
1484 | + foreach ($hexCode as & $color) { |
|
1485 | + $adjustableLimit = $adjustPercent < 0 ? $color : 255 - $color; |
|
1486 | + $adjustAmount = ceil($adjustableLimit * $adjustPercent); |
|
1487 | + |
|
1488 | + $color = str_pad(dechex($color + $adjustAmount), 2, '0', STR_PAD_LEFT); |
|
1489 | + } |
|
1490 | + |
|
1491 | + return '#' . implode($hexCode); |
|
1492 | + } |
|
1493 | + |
|
1494 | + /** |
|
1495 | + * Check if we should display examples. |
|
1496 | + */ |
|
1497 | + public function maybe_show_examples(){ |
|
1498 | + if(current_user_can('manage_options') && isset($_REQUEST['preview-aui'])){ |
|
1499 | + echo "<head>"; |
|
1500 | + wp_head(); |
|
1501 | + echo "</head>"; |
|
1502 | + echo "<body>"; |
|
1503 | + echo $this->get_examples(); |
|
1504 | + echo "</body>"; |
|
1505 | + exit; |
|
1506 | + } |
|
1507 | + } |
|
1508 | + |
|
1509 | + /** |
|
1510 | + * Get developer examples. |
|
1511 | + * |
|
1512 | + * @return string |
|
1513 | + */ |
|
1514 | + public function get_examples(){ |
|
1515 | + $output = ''; |
|
1516 | + |
|
1517 | + |
|
1518 | + // open form |
|
1519 | + $output .= "<form class='p-5 m-5 border rounded'>"; |
|
1520 | + |
|
1521 | + // input example |
|
1522 | + $output .= aui()->input(array( |
|
1523 | + 'type' => 'text', |
|
1524 | + 'id' => 'text-example', |
|
1525 | + 'name' => 'text-example', |
|
1526 | + 'placeholder' => 'text placeholder', |
|
1527 | + 'title' => 'Text input example', |
|
1528 | + 'value' => '', |
|
1529 | + 'required' => false, |
|
1530 | + 'help_text' => 'help text', |
|
1531 | + 'label' => 'Text input example label' |
|
1532 | + )); |
|
1533 | + |
|
1534 | + // input example |
|
1535 | + $output .= aui()->input(array( |
|
1536 | + 'type' => 'url', |
|
1537 | + 'id' => 'text-example2', |
|
1538 | + 'name' => 'text-example', |
|
1539 | + 'placeholder' => 'url placeholder', |
|
1540 | + 'title' => 'Text input example', |
|
1541 | + 'value' => '', |
|
1542 | + 'required' => false, |
|
1543 | + 'help_text' => 'help text', |
|
1544 | + 'label' => 'Text input example label' |
|
1545 | + )); |
|
1546 | + |
|
1547 | + // checkbox example |
|
1548 | + $output .= aui()->input(array( |
|
1549 | + 'type' => 'checkbox', |
|
1550 | + 'id' => 'checkbox-example', |
|
1551 | + 'name' => 'checkbox-example', |
|
1552 | + 'placeholder' => 'checkbox-example', |
|
1553 | + 'title' => 'Checkbox example', |
|
1554 | + 'value' => '1', |
|
1555 | + 'checked' => true, |
|
1556 | + 'required' => false, |
|
1557 | + 'help_text' => 'help text', |
|
1558 | + 'label' => 'Checkbox checked' |
|
1559 | + )); |
|
1560 | + |
|
1561 | + // checkbox example |
|
1562 | + $output .= aui()->input(array( |
|
1563 | + 'type' => 'checkbox', |
|
1564 | + 'id' => 'checkbox-example2', |
|
1565 | + 'name' => 'checkbox-example2', |
|
1566 | + 'placeholder' => 'checkbox-example', |
|
1567 | + 'title' => 'Checkbox example', |
|
1568 | + 'value' => '1', |
|
1569 | + 'checked' => false, |
|
1570 | + 'required' => false, |
|
1571 | + 'help_text' => 'help text', |
|
1572 | + 'label' => 'Checkbox un-checked' |
|
1573 | + )); |
|
1574 | + |
|
1575 | + // switch example |
|
1576 | + $output .= aui()->input(array( |
|
1577 | + 'type' => 'checkbox', |
|
1578 | + 'id' => 'switch-example', |
|
1579 | + 'name' => 'switch-example', |
|
1580 | + 'placeholder' => 'checkbox-example', |
|
1581 | + 'title' => 'Switch example', |
|
1582 | + 'value' => '1', |
|
1583 | + 'checked' => true, |
|
1584 | + 'switch' => true, |
|
1585 | + 'required' => false, |
|
1586 | + 'help_text' => 'help text', |
|
1587 | + 'label' => 'Switch on' |
|
1588 | + )); |
|
1589 | + |
|
1590 | + // switch example |
|
1591 | + $output .= aui()->input(array( |
|
1592 | + 'type' => 'checkbox', |
|
1593 | + 'id' => 'switch-example2', |
|
1594 | + 'name' => 'switch-example2', |
|
1595 | + 'placeholder' => 'checkbox-example', |
|
1596 | + 'title' => 'Switch example', |
|
1597 | + 'value' => '1', |
|
1598 | + 'checked' => false, |
|
1599 | + 'switch' => true, |
|
1600 | + 'required' => false, |
|
1601 | + 'help_text' => 'help text', |
|
1602 | + 'label' => 'Switch off' |
|
1603 | + )); |
|
1604 | + |
|
1605 | + // close form |
|
1606 | + $output .= "</form>"; |
|
1607 | + |
|
1608 | + return $output; |
|
1609 | + } |
|
1610 | + |
|
1611 | + } |
|
1612 | + |
|
1613 | + /** |
|
1614 | + * Run the class if found. |
|
1615 | + */ |
|
1616 | + AyeCode_UI_Settings::instance(); |
|
1617 | 1617 | } |
1618 | 1618 | \ No newline at end of file |
@@ -7,40 +7,40 @@ |
||
7 | 7 | * Bail if we are not in WP. |
8 | 8 | */ |
9 | 9 | if ( ! defined( 'ABSPATH' ) ) { |
10 | - exit; |
|
10 | + exit; |
|
11 | 11 | } |
12 | 12 | |
13 | 13 | /** |
14 | 14 | * Set the version only if its the current newest while loading. |
15 | 15 | */ |
16 | 16 | add_action('after_setup_theme', function () { |
17 | - global $ayecode_ui_version,$ayecode_ui_file_key; |
|
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__ ); |
|
22 | - } |
|
17 | + global $ayecode_ui_version,$ayecode_ui_file_key; |
|
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__ ); |
|
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 | 28 | add_action('after_setup_theme', function () { |
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' ); |
|
33 | - } |
|
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' ); |
|
33 | + } |
|
34 | 34 | },1); |
35 | 35 | |
36 | 36 | /** |
37 | 37 | * Add the function that calls the class. |
38 | 38 | */ |
39 | 39 | if(!function_exists('aui')){ |
40 | - function aui(){ |
|
41 | - if(!class_exists("AUI",false)){ |
|
42 | - return false; |
|
43 | - } |
|
44 | - return AUI::instance(); |
|
45 | - } |
|
40 | + function aui(){ |
|
41 | + if(!class_exists("AUI",false)){ |
|
42 | + return false; |
|
43 | + } |
|
44 | + return AUI::instance(); |
|
45 | + } |
|
46 | 46 | } |
47 | 47 | \ No newline at end of file |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php return array ( |
2 | - 'root' => |
|
3 | - array ( |
|
2 | + 'root' => |
|
3 | + array ( |
|
4 | 4 | 'pretty_version' => 'dev-master', |
5 | 5 | 'version' => 'dev-master', |
6 | 6 | 'aliases' => |
@@ -8,85 +8,85 @@ discard block |
||
8 | 8 | ), |
9 | 9 | 'reference' => '776791abcd5a7b0e32b505816873caff25e96914', |
10 | 10 | 'name' => 'ayecode/invoicing', |
11 | - ), |
|
12 | - 'versions' => |
|
13 | - array ( |
|
11 | + ), |
|
12 | + 'versions' => |
|
13 | + array ( |
|
14 | 14 | 'ayecode/ayecode-connect-helper' => |
15 | 15 | array ( |
16 | - 'pretty_version' => '1.0.3', |
|
17 | - 'version' => '1.0.3.0', |
|
18 | - 'aliases' => |
|
19 | - array ( |
|
20 | - ), |
|
21 | - 'reference' => '1af7cdefdbd20d4443a3ab4834e4c1cd8fe57fb4', |
|
16 | + 'pretty_version' => '1.0.3', |
|
17 | + 'version' => '1.0.3.0', |
|
18 | + 'aliases' => |
|
19 | + array ( |
|
20 | + ), |
|
21 | + 'reference' => '1af7cdefdbd20d4443a3ab4834e4c1cd8fe57fb4', |
|
22 | 22 | ), |
23 | 23 | 'ayecode/invoicing' => |
24 | 24 | array ( |
25 | - 'pretty_version' => 'dev-master', |
|
26 | - 'version' => 'dev-master', |
|
27 | - 'aliases' => |
|
28 | - array ( |
|
29 | - ), |
|
30 | - 'reference' => '776791abcd5a7b0e32b505816873caff25e96914', |
|
25 | + 'pretty_version' => 'dev-master', |
|
26 | + 'version' => 'dev-master', |
|
27 | + 'aliases' => |
|
28 | + array ( |
|
29 | + ), |
|
30 | + 'reference' => '776791abcd5a7b0e32b505816873caff25e96914', |
|
31 | 31 | ), |
32 | 32 | 'ayecode/wp-ayecode-ui' => |
33 | 33 | array ( |
34 | - 'pretty_version' => '0.1.42', |
|
35 | - 'version' => '0.1.42.0', |
|
36 | - 'aliases' => |
|
37 | - array ( |
|
38 | - ), |
|
39 | - 'reference' => '8d94ec27255e4854d8828d1e13faa8e1b3702790', |
|
34 | + 'pretty_version' => '0.1.42', |
|
35 | + 'version' => '0.1.42.0', |
|
36 | + 'aliases' => |
|
37 | + array ( |
|
38 | + ), |
|
39 | + 'reference' => '8d94ec27255e4854d8828d1e13faa8e1b3702790', |
|
40 | 40 | ), |
41 | 41 | 'ayecode/wp-font-awesome-settings' => |
42 | 42 | array ( |
43 | - 'pretty_version' => '1.0.12', |
|
44 | - 'version' => '1.0.12.0', |
|
45 | - 'aliases' => |
|
46 | - array ( |
|
47 | - ), |
|
48 | - 'reference' => '754cca6fda775f3e0b56b90a810dfcaea62ea288', |
|
43 | + 'pretty_version' => '1.0.12', |
|
44 | + 'version' => '1.0.12.0', |
|
45 | + 'aliases' => |
|
46 | + array ( |
|
47 | + ), |
|
48 | + 'reference' => '754cca6fda775f3e0b56b90a810dfcaea62ea288', |
|
49 | 49 | ), |
50 | 50 | 'ayecode/wp-super-duper' => |
51 | 51 | array ( |
52 | - 'pretty_version' => '1.0.23', |
|
53 | - 'version' => '1.0.23.0', |
|
54 | - 'aliases' => |
|
55 | - array ( |
|
56 | - ), |
|
57 | - 'reference' => '9473c0b7cf3ef4c32374222994a3e4613cdaeb48', |
|
52 | + 'pretty_version' => '1.0.23', |
|
53 | + 'version' => '1.0.23.0', |
|
54 | + 'aliases' => |
|
55 | + array ( |
|
56 | + ), |
|
57 | + 'reference' => '9473c0b7cf3ef4c32374222994a3e4613cdaeb48', |
|
58 | 58 | ), |
59 | 59 | 'composer/installers' => |
60 | 60 | array ( |
61 | - 'pretty_version' => 'v1.10.0', |
|
62 | - 'version' => '1.10.0.0', |
|
63 | - 'aliases' => |
|
64 | - array ( |
|
65 | - ), |
|
66 | - 'reference' => '1a0357fccad9d1cc1ea0c9a05b8847fbccccb78d', |
|
61 | + 'pretty_version' => 'v1.10.0', |
|
62 | + 'version' => '1.10.0.0', |
|
63 | + 'aliases' => |
|
64 | + array ( |
|
65 | + ), |
|
66 | + 'reference' => '1a0357fccad9d1cc1ea0c9a05b8847fbccccb78d', |
|
67 | 67 | ), |
68 | 68 | 'maxmind-db/reader' => |
69 | 69 | array ( |
70 | - 'pretty_version' => 'v1.6.0', |
|
71 | - 'version' => '1.6.0.0', |
|
72 | - 'aliases' => |
|
73 | - array ( |
|
74 | - ), |
|
75 | - 'reference' => 'febd4920bf17c1da84cef58e56a8227dfb37fbe4', |
|
70 | + 'pretty_version' => 'v1.6.0', |
|
71 | + 'version' => '1.6.0.0', |
|
72 | + 'aliases' => |
|
73 | + array ( |
|
74 | + ), |
|
75 | + 'reference' => 'febd4920bf17c1da84cef58e56a8227dfb37fbe4', |
|
76 | 76 | ), |
77 | 77 | 'roundcube/plugin-installer' => |
78 | 78 | array ( |
79 | - 'replaced' => |
|
80 | - array ( |
|
79 | + 'replaced' => |
|
80 | + array ( |
|
81 | 81 | 0 => '*', |
82 | - ), |
|
82 | + ), |
|
83 | 83 | ), |
84 | 84 | 'shama/baton' => |
85 | 85 | array ( |
86 | - 'replaced' => |
|
87 | - array ( |
|
86 | + 'replaced' => |
|
87 | + array ( |
|
88 | 88 | 0 => '*', |
89 | - ), |
|
89 | + ), |
|
90 | + ), |
|
90 | 91 | ), |
91 | - ), |
|
92 | 92 | ); |
@@ -12,8 +12,8 @@ discard block |
||
12 | 12 | class InstalledVersions |
13 | 13 | { |
14 | 14 | private static $installed = array ( |
15 | - 'root' => |
|
16 | - array ( |
|
15 | + 'root' => |
|
16 | + array ( |
|
17 | 17 | 'pretty_version' => 'dev-master', |
18 | 18 | 'version' => 'dev-master', |
19 | 19 | 'aliases' => |
@@ -21,87 +21,87 @@ discard block |
||
21 | 21 | ), |
22 | 22 | 'reference' => '776791abcd5a7b0e32b505816873caff25e96914', |
23 | 23 | 'name' => 'ayecode/invoicing', |
24 | - ), |
|
25 | - 'versions' => |
|
26 | - array ( |
|
24 | + ), |
|
25 | + 'versions' => |
|
26 | + array ( |
|
27 | 27 | 'ayecode/ayecode-connect-helper' => |
28 | 28 | array ( |
29 | - 'pretty_version' => '1.0.3', |
|
30 | - 'version' => '1.0.3.0', |
|
31 | - 'aliases' => |
|
32 | - array ( |
|
33 | - ), |
|
34 | - 'reference' => '1af7cdefdbd20d4443a3ab4834e4c1cd8fe57fb4', |
|
29 | + 'pretty_version' => '1.0.3', |
|
30 | + 'version' => '1.0.3.0', |
|
31 | + 'aliases' => |
|
32 | + array ( |
|
33 | + ), |
|
34 | + 'reference' => '1af7cdefdbd20d4443a3ab4834e4c1cd8fe57fb4', |
|
35 | 35 | ), |
36 | 36 | 'ayecode/invoicing' => |
37 | 37 | array ( |
38 | - 'pretty_version' => 'dev-master', |
|
39 | - 'version' => 'dev-master', |
|
40 | - 'aliases' => |
|
41 | - array ( |
|
42 | - ), |
|
43 | - 'reference' => '776791abcd5a7b0e32b505816873caff25e96914', |
|
38 | + 'pretty_version' => 'dev-master', |
|
39 | + 'version' => 'dev-master', |
|
40 | + 'aliases' => |
|
41 | + array ( |
|
42 | + ), |
|
43 | + 'reference' => '776791abcd5a7b0e32b505816873caff25e96914', |
|
44 | 44 | ), |
45 | 45 | 'ayecode/wp-ayecode-ui' => |
46 | 46 | array ( |
47 | - 'pretty_version' => '0.1.42', |
|
48 | - 'version' => '0.1.42.0', |
|
49 | - 'aliases' => |
|
50 | - array ( |
|
51 | - ), |
|
52 | - 'reference' => '8d94ec27255e4854d8828d1e13faa8e1b3702790', |
|
47 | + 'pretty_version' => '0.1.42', |
|
48 | + 'version' => '0.1.42.0', |
|
49 | + 'aliases' => |
|
50 | + array ( |
|
51 | + ), |
|
52 | + 'reference' => '8d94ec27255e4854d8828d1e13faa8e1b3702790', |
|
53 | 53 | ), |
54 | 54 | 'ayecode/wp-font-awesome-settings' => |
55 | 55 | array ( |
56 | - 'pretty_version' => '1.0.12', |
|
57 | - 'version' => '1.0.12.0', |
|
58 | - 'aliases' => |
|
59 | - array ( |
|
60 | - ), |
|
61 | - 'reference' => '754cca6fda775f3e0b56b90a810dfcaea62ea288', |
|
56 | + 'pretty_version' => '1.0.12', |
|
57 | + 'version' => '1.0.12.0', |
|
58 | + 'aliases' => |
|
59 | + array ( |
|
60 | + ), |
|
61 | + 'reference' => '754cca6fda775f3e0b56b90a810dfcaea62ea288', |
|
62 | 62 | ), |
63 | 63 | 'ayecode/wp-super-duper' => |
64 | 64 | array ( |
65 | - 'pretty_version' => '1.0.23', |
|
66 | - 'version' => '1.0.23.0', |
|
67 | - 'aliases' => |
|
68 | - array ( |
|
69 | - ), |
|
70 | - 'reference' => '9473c0b7cf3ef4c32374222994a3e4613cdaeb48', |
|
65 | + 'pretty_version' => '1.0.23', |
|
66 | + 'version' => '1.0.23.0', |
|
67 | + 'aliases' => |
|
68 | + array ( |
|
69 | + ), |
|
70 | + 'reference' => '9473c0b7cf3ef4c32374222994a3e4613cdaeb48', |
|
71 | 71 | ), |
72 | 72 | 'composer/installers' => |
73 | 73 | array ( |
74 | - 'pretty_version' => 'v1.10.0', |
|
75 | - 'version' => '1.10.0.0', |
|
76 | - 'aliases' => |
|
77 | - array ( |
|
78 | - ), |
|
79 | - 'reference' => '1a0357fccad9d1cc1ea0c9a05b8847fbccccb78d', |
|
74 | + 'pretty_version' => 'v1.10.0', |
|
75 | + 'version' => '1.10.0.0', |
|
76 | + 'aliases' => |
|
77 | + array ( |
|
78 | + ), |
|
79 | + 'reference' => '1a0357fccad9d1cc1ea0c9a05b8847fbccccb78d', |
|
80 | 80 | ), |
81 | 81 | 'maxmind-db/reader' => |
82 | 82 | array ( |
83 | - 'pretty_version' => 'v1.6.0', |
|
84 | - 'version' => '1.6.0.0', |
|
85 | - 'aliases' => |
|
86 | - array ( |
|
87 | - ), |
|
88 | - 'reference' => 'febd4920bf17c1da84cef58e56a8227dfb37fbe4', |
|
83 | + 'pretty_version' => 'v1.6.0', |
|
84 | + 'version' => '1.6.0.0', |
|
85 | + 'aliases' => |
|
86 | + array ( |
|
87 | + ), |
|
88 | + 'reference' => 'febd4920bf17c1da84cef58e56a8227dfb37fbe4', |
|
89 | 89 | ), |
90 | 90 | 'roundcube/plugin-installer' => |
91 | 91 | array ( |
92 | - 'replaced' => |
|
93 | - array ( |
|
92 | + 'replaced' => |
|
93 | + array ( |
|
94 | 94 | 0 => '*', |
95 | - ), |
|
95 | + ), |
|
96 | 96 | ), |
97 | 97 | 'shama/baton' => |
98 | 98 | array ( |
99 | - 'replaced' => |
|
100 | - array ( |
|
99 | + 'replaced' => |
|
100 | + array ( |
|
101 | 101 | 0 => '*', |
102 | - ), |
|
102 | + ), |
|
103 | + ), |
|
103 | 104 | ), |
104 | - ), |
|
105 | 105 | ); |
106 | 106 | |
107 | 107 |