API16

Difference between revisions of "JDocument/addStyleDeclaration"

From Joomla! Documentation

< API16:JDocument
(New page: ===Description=== Adds a stylesheet declaration to the page <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>[[Description:JDocument/addStyleDeclaration|Edit Descri...)
 
m (removing red link to edit, no existant pages)
Line 3: Line 3:
  
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[Description:JDocument/addStyleDeclaration|Edit Descripton]]<nowiki>]</nowiki>
+
<nowiki>[<! removed edit link to red link >]</nowiki>
 
</span>
 
</span>
  
{{Description:JDocument/addStyleDeclaration}}
+
<! removed transcluded page call, red link never existed >
  
 
===Syntax===
 
===Syntax===
Line 47: Line 47:
  
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[SeeAlso:JDocument/addStyleDeclaration|Edit See Also]]<nowiki>]</nowiki>
+
<nowiki>[<! removed edit link to red link >]</nowiki>
 
</span>
 
</span>
{{SeeAlso:JDocument/addStyleDeclaration}}
+
<! removed transcluded page call, red link never existed >
  
 
===Examples===
 
===Examples===
Line 62: Line 62:
 
  format= ,,,
 
  format= ,,,
 
</dpl>
 
</dpl>
 +
[[Category:Archived pages API16]]

Revision as of 22:04, 12 May 2013

The "API16" 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]

Adds a stylesheet declaration to the page

[<! removed edit link to red link >]

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

Syntax[edit]

addStyleDeclaration($content, $type= 'text/css')
Parameter Name Default Value Description
$content $content Style declarations
$type 'text/css' $type Type of stylesheet (defaults to 'text/css') public

Returns[edit]

void

Defined in[edit]

libraries/joomla/document/document.php

Importing[edit]

jimport( 'joomla.document.document' );

Source Body[edit]

function addStyleDeclaration($content, $type = 'text/css')
{
        if (!isset($this->_style[strtolower($type)])) {
                $this->_style[strtolower($type)] = $content;
        } else {
                $this->_style[strtolower($type)] .= chr(13).$content;
        }
}

[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >

Examples[edit]

<CodeExamplesForm />