API15

JHTML/stylesheet

From Joomla! Documentation

< API15:JHTML
Revision as of 19:38, 24 March 2017 by JoomlaWikiBot (talk | contribs) (preparing for archive only)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

The "API15" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

Description[edit]

Write a <link rel="stylesheet" style="text/css"> element

[<! removed edit link to red link >]

<! removed transcluded page call, red link never existed >

Syntax[edit]

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[edit]

libraries/joomla/html/html.php

Importing[edit]

jimport( 'joomla.html.html' );

Source Body[edit]

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[edit]

Code Examples[edit]