Show
Ignore:
Timestamp:
02/09/2008 12:23:27 AM (11 months ago)
Author:
PugFish
Message:

Converted comments for media module

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/modules/media/config/media.php

    r1633 r2006  
    11<?php defined('SYSPATH') or die('No direct script access.'); 
    22/** 
     3 * @package  Media Module 
     4 * 
     5 * $Id$ 
     6 * 
    37 * The media controller is a way of serving up various media content (JS, CSS, images, etc) 
    4  *  
     8 * 
    59 * The idea is that you have a subdirectory in your application views directory called "media", 
    610 * which contains all the files needed. For example: 
    7  *  
     11 * 
    812 * 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. 
    1115 */ 
    1216 
    1317/** 
    14  * Enable media caching.  
    15  *  
     18 * Enable media caching. 
     19 * 
    1620 * Set to false to disable, true to enable using default cache lifetimes, or number of seconds to cache for 
    17  *  
     21 * 
    1822 * Strongly recommended if you are using packing. 
    1923 */ 
     
    2226/** 
    2327 * If CSS files should be packed (whitespace, comments, etc removed) 
    24  *  
     28 * 
    2529 * Boolean 
    2630 */ 
     
    2933/** 
    3034 * If javascript files should be packed. 
    31  *  
     35 * 
    3236 * Value should be one of: false, 0,10,62,95 or 'Numeric', 'Normal', 'High ASCII'. 
    33  *  
     37 * 
    3438 * false or 0 disables packing 
    3539 */