JDocument/addScriptDeclaration: Difference between revisions
From Joomla! Documentation
m clean up |
m preparing for archive only |
||
| Line 48: | Line 48: | ||
===Examples=== | ===Examples=== | ||
=== Code Examples === | |||
<dpl> | <dpl> | ||
noresultsheader=\n | noresultsheader=\n | ||
category=addScriptDeclaration | category=addScriptDeclaration | ||
category=JDocument | category=JDocument | ||
namespace=CodeExample | |||
category=MethodExample | category=MethodExample | ||
include=* | include=* | ||
Latest revision as of 01:31, 25 March 2017
Description
Adds a script to the page
<! removed transcluded page call, red link never existed >
Syntax
addScriptDeclaration($content, $type= 'text/javascript')
| Parameter Name | Default Value | Description |
|---|---|---|
| $content | $content Script | |
| $type | 'text/javascript' | $type Scripting mime (defaults to 'text/javascript') |
Returns
void
Defined in
libraries/joomla/document/document.php
Importing
jimport( 'joomla.document.document' );
Source Body
function addScriptDeclaration($content, $type = 'text/javascript')
{
if (!isset($this->_script[strtolower($type)])) {
$this->_script[strtolower($type)] = $content;
} else {
$this->_script[strtolower($type)] .= chr(13).$content;
}
}
<! removed transcluded page call, red link never existed >
Examples
Code Examples