Changeset 2006 for trunk/modules/media/config/media.php
- Timestamp:
- 02/09/2008 12:23:27 AM (11 months ago)
- Files:
-
- 1 modified
-
trunk/modules/media/config/media.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/modules/media/config/media.php
r1633 r2006 1 1 <?php defined('SYSPATH') or die('No direct script access.'); 2 2 /** 3 * @package Media Module 4 * 5 * $Id$ 6 * 3 7 * The media controller is a way of serving up various media content (JS, CSS, images, etc) 4 * 8 * 5 9 * The idea is that you have a subdirectory in your application views directory called "media", 6 10 * which contains all the files needed. For example: 7 * 11 * 8 12 * http://baseurl/media/css/style1.css -> views/media/css/style1.css or style1.css.php 9 * 10 * Additionally, CSS and Javascript files can be packed and cached. 13 * 14 * Additionally, CSS and Javascript files can be packed and cached. 11 15 */ 12 16 13 17 /** 14 * Enable media caching. 15 * 18 * Enable media caching. 19 * 16 20 * Set to false to disable, true to enable using default cache lifetimes, or number of seconds to cache for 17 * 21 * 18 22 * Strongly recommended if you are using packing. 19 23 */ … … 22 26 /** 23 27 * If CSS files should be packed (whitespace, comments, etc removed) 24 * 28 * 25 29 * Boolean 26 30 */ … … 29 33 /** 30 34 * If javascript files should be packed. 31 * 35 * 32 36 * Value should be one of: false, 0,10,62,95 or 'Numeric', 'Normal', 'High ASCII'. 33 * 37 * 34 38 * false or 0 disables packing 35 39 */
