JDocument/addStyleDeclaration
From Joomla! Documentation
< JDocument(Difference between revisions)
(→Example) |
(→Example) |
||
| Line 24: | Line 24: | ||
<source lang="php"> | <source lang="php"> | ||
$doc =& JFactory::getDocument(); | $doc =& JFactory::getDocument(); | ||
| − | $style = ' | + | $style = 'BODY {' |
. 'background: #00ff00;' | . 'background: #00ff00;' | ||
. 'color: rgb(0,0,255);' | . 'color: rgb(0,0,255);' | ||
Latest revision as of 07:54, 2 April 2009
Adds an internal stylesheet to the document object. The stylesheet is appended to the document objects' internal stylesheet buffer for the specified type.
[edit] Syntax
void addStyleDeclaration( $content, $type )
where:
| Argument | Data type | Description | Default |
|---|---|---|---|
| $content | string | Stylesheet content. | |
| $type | string | MIME type of stylesheet. | 'text/css' |
[edit] Example
To add a CSS style to the document, you could use:
$doc =& JFactory::getDocument(); $style = 'BODY {' . 'background: #00ff00;' . 'color: rgb(0,0,255);' . '}'; $doc->addStyleDeclaration( $style );