Changeset 2866

Show
Ignore:
Timestamp:
11/24/08 05:29:54 (7 weeks ago)
Author:
ringmaster
Message:

Updated code comments.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/htdocs/system/classes/stack.php

    r2865 r2866  
    121121     * @param mixed $value The value to add 
    122122     * @param string $value_name The name of the value to add 
     123     * @param string $after The name of the stack element to insert this new element after 
    123124     * @return array The stack that was added to 
    124125     **/ 
     
    205206    } 
    206207 
     208    /** 
     209     * A callback for Stack::get() that outputs scripts as reference or inline depending on their content 
     210     * 
     211     * @param string $element The script element in the stack 
     212     * @return string The resulting script tag 
     213     */ 
    207214    public static function scripts( $element ) 
    208215    { 
     
    216223    } 
    217224 
     225    /** 
     226     * A callback for Stack::get() that outputs styles as link or inline style tags depending on their content 
     227     * 
     228     * @param string $element The style element in the stack 
     229     * @param string $typename The media disposition of the content 
     230     * @return string The resulting style or link tag 
     231     */ 
    218232    public static function styles( $element, $typename ) 
    219233    {