2011-07-06 19:31:40 -04:00
|
|
|
<?php
|
2012-04-26 10:11:15 -04:00
|
|
|
/**
|
|
|
|
* Easy Min
|
|
|
|
*
|
|
|
|
* Simple minification for better website performance
|
|
|
|
*
|
|
|
|
* @author Timothy J. Warren
|
|
|
|
* @copyright Copyright (c) 2012
|
|
|
|
* @link https://github.com/aviat4ion/Easy-Min
|
|
|
|
* @license http://philsturgeon.co.uk/code/dbad-license
|
|
|
|
*/
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This is the config array for css files to concatenate and minify
|
|
|
|
*/
|
2016-02-08 14:49:30 -05:00
|
|
|
return [
|
2011-07-06 19:31:40 -04:00
|
|
|
/*-----
|
2016-02-08 14:49:30 -05:00
|
|
|
Css
|
2011-07-06 19:31:40 -04:00
|
|
|
-----*/
|
2016-02-08 14:49:30 -05:00
|
|
|
|
2011-07-06 19:31:40 -04:00
|
|
|
/*
|
|
|
|
For each group create an array like so
|
2016-02-08 14:49:30 -05:00
|
|
|
|
|
|
|
'my_group' => [
|
2011-07-06 19:31:40 -04:00
|
|
|
'path/to/css/file1.css',
|
|
|
|
'path/to/css/file2.css'
|
2016-02-08 14:49:30 -05:00
|
|
|
],
|
2011-07-06 19:31:40 -04:00
|
|
|
*/
|
2016-02-08 14:49:30 -05:00
|
|
|
];
|
2012-04-26 10:11:15 -04:00
|
|
|
// End of css_groups.php
|