API17

Difference between revisions of "JHtml::stylesheet"

From Joomla! Documentation

m (JoomlaWikiBot moved page JHtml::stylesheet/11.1 to API17:JHtml::stylesheet without leaving a redirect: Robot: Moved page)
m (→‎User contributed notes: moving preparation)
Line 74: Line 74:
 
format= ,,,
 
format= ,,,
 
</dpl>
 
</dpl>
<noinclude>[[Category:JHtml]][[Category:JHtml::stylesheet]]</noinclude>
+
<noinclude>[[Category:Platform 11.1]][[Category:Archived pages API17]]</noinclude>

Revision as of 16:31, 11 May 2013

The "API17" 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.

Joomla 11.1 JHtml::stylesheet[edit]

Description[edit]

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

Template:Description:JHtml::stylesheet [Edit Descripton]

public static function stylesheet (
        $file
        $attribs=array
        $relative=false
        $path_only=false
        $detect_browser=true
)
Parameter Type Default Description
$file string path to file
$attribs array array() attributes to be added to the stylesheet
$relative boolean false path to file is relative to /media folder
$path_only boolean false return the path to the file only
$detect_browser boolean true detect browser to include specific browser css files will try to include file, file_*browser*, file_*browser*_*major*, file_*browser*_*major*_*minor*

a lot of others

  • Returns mixed nothing if $path_only is false, null, path or array of path if specific css browser files were detected
  • Defined on line 432 of libraries/joomla/html/html.php
  • Since Joomla 11.1

See also[edit]

Template:SeeAlso:JHtml::stylesheet [Edit See Also]

User contributed notes[edit]

<CodeExamplesForm />