miniMVC/assets/config/css_groups.php

36 lines
676 B
PHP
Raw Normal View History

2012-01-13 11:58:06 -05:00
<?php
2012-04-27 16:28:25 -04:00
/**
* MiniMVC
*
* Convention-based micro-framework for PHP
*
* @package miniMVC
* @author Timothy J. Warren
* @copyright Copyright (c) 2011 - 2012
2012-05-23 12:01:13 -04:00
* @link https://github.com/aviat4ion/miniMVC
2012-04-27 16:28:25 -04:00
* @license http://philsturgeon.co.uk/code/dbad-license
*/
// --------------------------------------------------------------------------
/**
* This is the config array for css files to concatenate and minify
*/
return array(
2012-01-13 11:58:06 -05:00
/*-----
Css
-----*/
'css' => array(
2012-01-13 11:58:06 -05:00
'message.css'
),
2012-01-13 11:58:06 -05:00
/*
For each group create an array like so
2012-04-27 16:28:25 -04:00
'my_group' => [
2012-01-13 11:58:06 -05:00
'path/to/css/file1.css',
'path/to/css/file2.css'
2012-04-27 16:28:25 -04:00
],
2012-01-13 11:58:06 -05:00
*/
);
2012-04-27 16:28:25 -04:00
// End of css_groups.php