API15

JHTML/stylesheet: Difference between revisions

From Joomla! Documentation

m removing red link to edit, no existant pages
m preparing for archive only
 
Line 55: Line 55:


===Examples===
===Examples===
<CodeExamplesForm />
=== Code Examples ===
<dpl>
<dpl>
  noresultsheader=\n
  noresultsheader=\n
  category=stylesheet
  category=stylesheet
  category=JHTML
  category=JHTML
  category=CodeExample
  namespace=CodeExample
  category=MethodExample
  category=MethodExample
  include=*
  include=*

Latest revision as of 00:38, 25 March 2017

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