Changeset 2866
- Timestamp:
- 11/24/08 05:29:54 (7 weeks ago)
- Files:
-
- 1 modified
-
trunk/htdocs/system/classes/stack.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/htdocs/system/classes/stack.php
r2865 r2866 121 121 * @param mixed $value The value to add 122 122 * @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 123 124 * @return array The stack that was added to 124 125 **/ … … 205 206 } 206 207 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 */ 207 214 public static function scripts( $element ) 208 215 { … … 216 223 } 217 224 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 */ 218 232 public static function styles( $element, $typename ) 219 233 {
