API17:JHtml::stylesheet
From Joomla! Documentation
(Difference between revisions)
(Bulk upload by Doxiki2) |
(Updated to r1448:247ba8d88526) |
||
| (One intermediate revision by one user not shown) | |||
| Line 8: | Line 8: | ||
<nowiki>[</nowiki>[[Description:JHtml::stylesheet|Edit Descripton]]<nowiki>]</nowiki> | <nowiki>[</nowiki>[[Description:JHtml::stylesheet|Edit Descripton]]<nowiki>]</nowiki> | ||
</span> | </span> | ||
| − | |||
| − | |||
| − | |||
<source lang="php"> | <source lang="php"> | ||
| − | public static | + | public static function stylesheet ( |
| + | $file | ||
| + | $attribs=array | ||
| + | $relative=false | ||
| + | $path_only=false | ||
| + | $detect_browser=true | ||
| + | ) | ||
</source> | </source> | ||
{| class="wikitable" | {| class="wikitable" | ||
| Line 48: | Line 51: | ||
|- | |- | ||
|} | |} | ||
| − | + | * '''Returns''' mixed nothing if $path_only is false, null, path or array of path if specific css browser files were detected | |
| − | 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''' {{JVer|11.1 }} | |
| − | libraries/joomla/html/html.php | + | |
| − | + | ||
===See also=== | ===See also=== | ||
| + | * {{JVer|11.1}} '''JHtml::stylesheet source code''' on [[jplatform:html/html.php#cl-424|BitBucket]] | ||
| + | * {{JVer|11.1}} Class [[JHtml/11.1|JHtml]] | ||
| + | * {{JVer|11.1}} Subpackage [[Subpackage_Html/11.1|Html]] | ||
| + | * [[JHtml::stylesheet|Other versions of JHtml::stylesheet]] | ||
| + | {{SeeAlso:JHtml::stylesheet}} | ||
<span class="editsection" style="font-size:76%;"> | <span class="editsection" style="font-size:76%;"> | ||
<nowiki>[</nowiki>[[SeeAlso:JHtml::stylesheet|Edit See Also]]<nowiki>]</nowiki> | <nowiki>[</nowiki>[[SeeAlso:JHtml::stylesheet|Edit See Also]]<nowiki>]</nowiki> | ||
</span> | </span> | ||
| − | + | ===User contributed notes=== | |
| − | + | ||
| − | + | ||
| − | === | + | |
<CodeExamplesForm /> | <CodeExamplesForm /> | ||
<dpl> | <dpl> | ||
| Line 68: | Line 71: | ||
category=MethodExample | category=MethodExample | ||
include=* | include=* | ||
| + | namespace=CodeExample | ||
format= ,,, | format= ,,, | ||
</dpl> | </dpl> | ||
<noinclude>[[Category:JHtml]][[Category:JHtml::stylesheet]]</noinclude> | <noinclude>[[Category:JHtml]][[Category:JHtml::stylesheet]]</noinclude> | ||
Revision as of 21:05, 27 April 2011
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
JHtml::stylesheet
Description
Write a <link rel="stylesheet" style="text/css"> element.
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
See also
-
JHtml::stylesheet source code on BitBucket
-
Class JHtml
-
Subpackage Html
- Other versions of JHtml::stylesheet
SeeAlso:JHtml::stylesheet [Edit See Also]
User contributed notes
<CodeExamplesForm />
