API15:JDocumentHTML/ construct
From Joomla! Documentation
Description
Class constructor
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
__construct($options=array())
| Parameter Name | Default Value | Description |
|---|---|---|
| $options | array() | $options Associative array of options |
Defined in
libraries/joomla/document/html/html.php
Importing
jimport( 'joomla.document.html.html' );
Source Body
function __construct($options = array())
{
parent::__construct($options);
//set document type
$this->_type = 'html';
//set mime type
$this->_mime = 'text/html';
//set default document metadata
$this->setMetaData('Content-Type', $this->_mime . '; charset=' . $this->_charset , true );
$this->setMetaData('robots', 'index, follow' );
}
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
Code Examples