2015-06-24 16:01:35 -04:00
|
|
|
<?php
|
|
|
|
/**
|
2015-11-16 11:40:01 -05:00
|
|
|
* Hummingbird Anime Client
|
2015-06-24 16:01:35 -04:00
|
|
|
*
|
2015-11-16 11:40:01 -05:00
|
|
|
* An API client for Hummingbird to manage anime and manga watch lists
|
2015-06-24 16:01:35 -04:00
|
|
|
*
|
2016-02-03 14:57:00 -05:00
|
|
|
* @package HummingbirdAnimeClient
|
|
|
|
* @author Timothy J. Warren
|
2016-01-04 16:58:33 -05:00
|
|
|
* @copyright Copyright (c) 2015 - 2016
|
2016-02-03 14:57:00 -05:00
|
|
|
* @link https://github.com/timw4mail/HummingBirdAnimeClient
|
|
|
|
* @license MIT
|
2015-06-24 16:01:35 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
2016-02-03 14:57:00 -05:00
|
|
|
return [
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| CSS Folder
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| The folder where css files exist, in relation to the document root
|
|
|
|
|
|
|
|
|
*/
|
2016-02-10 17:30:45 -05:00
|
|
|
'css_root' => 'css/',
|
2016-02-03 14:57:00 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Path from
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| Path fragment to rewrite in css files
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
'path_from' => '',
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Path to
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| The path fragment replacement for the css files
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
'path_to' => '',
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| CSS Groups file
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| The file where the css groups are configured
|
|
|
|
|
|
|
|
|
*/
|
2016-02-10 17:30:45 -05:00
|
|
|
'css_groups_file' => __DIR__ . '/minify_css_groups.php',
|
2016-02-03 14:57:00 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| JS Folder
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| The folder where javascript files exist, in relation to the document root
|
|
|
|
|
|
|
|
|
*/
|
2016-02-10 17:30:45 -05:00
|
|
|
'js_root' => 'js/',
|
2016-02-03 14:57:00 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| JS Groups file
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| The file where the javascript groups are configured
|
|
|
|
|
|
|
|
|
*/
|
2016-02-10 17:30:45 -05:00
|
|
|
'js_groups_file' => __DIR__ . '/minify_js_groups.php',
|
2016-02-03 14:57:00 -05:00
|
|
|
|
|
|
|
];
|
|
|
|
// End of minify_config.php
|