API15:JHTML/stylesheet
From Joomla! Documentation
Description
Write a <link rel="stylesheet" style="text/css"> element
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
stylesheet($filename, $path= 'media/system/css/', $attribs=array())
| Parameter Name | Default Value | Description |
|---|---|---|
| $filename | The relative URL to use for the href attribute | |
| $path | 'media/system/css/' | |
| $attribs | array() |
Defined in
libraries/joomla/html/html.php
Importing
jimport( 'joomla.html.html' );
Source Body
function stylesheet($filename, $path = 'media/system/css/', $attribs = array())
{
if(strpos($path, 'http') !== 0) {
$path = JURI::root(true).'/'.$path;
};
$document = &JFactory::getDocument();
$document->addStylesheet( $path.$filename, 'text/css', null, $attribs );
return;
}
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
Code Examples