forked from akshitapatel4u/wordpress-css-optimization
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcss-optimization.php
executable file
·89 lines (83 loc) · 2.37 KB
/
css-optimization.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<?php
namespace O10n;
/**
* CSS Optimization
*
* Advanced CSS optimization toolkit. Critical CSS, minification, concatenation, async loading, advanced editor, CSS Lint, Clean CSS (professional), beautifier and more.
*
* @link https://github.com/o10n-x/
* @package o10n
*
* @wordpress-plugin
* Plugin Name: CSS Optimization
* Description: Advanced CSS optimization toolkit. Critical CSS, minification, concatenation, async loading, advanced editor, CSS Lint, Clean CSS (professional), beautifier and more.
* Version: 0.0.70
* Author: Optimization.Team
* Author URI: https://optimization.team/
* GitHub Plugin URI: https://github.com/o10n-x/wordpress-css-optimization
* Text Domain: o10n
* Domain Path: /languages
*/
if (! defined('WPINC')) {
die;
}
// abort loading during upgrades
if (defined('WP_INSTALLING') && WP_INSTALLING) {
return;
}
// settings
$module_version = '0.0.70';
$minimum_core_version = '0.0.44';
$plugin_path = dirname(__FILE__);
// load the optimization module loader
if (!class_exists('\O10n\Module')) {
require $plugin_path . '/core/controllers/module.php';
}
// load module
new Module(
'css',
'CSS Optimization',
$module_version,
$minimum_core_version,
array(
'core' => array(
'http',
'client',
'proxy',
'tools',
'css',
'criticalcss',
'cssminifytest'
),
'admin' => array(
'AdminCss',
'AdminEditor'
),
'admin_global' => array(
'AdminGlobalcss'
)
),
2,
array(
'src' => array(
'path' => 'css/src/',
'file_ext' => '.css',
'alt_exts' => array('.css.map'),
'expire' => false // @todo 259200 // expire after 3 days
),
'concat' => array(
'hash_id' => true, // store data by database index id
'path' => 'css/concat/',
'id_dir' => 'css/',
'file_ext' => '.css',
'alt_exts' => array('.css.map'),
'expire' => false // @todo 86400 // expire after 1 day
),
'proxy' => array(
'path' => 'css/proxy/',
'file_ext' => '.css',
'expire' => false // @todo 86400 // expire after 1 day
)
),
__FILE__
);