API16

JDocumentHTML/ construct

From Joomla! Documentation

< API16:JDocumentHTML
Revision as of 17:44, 22 March 2010 by Doxiki (talk | contribs) (New page: ===Description=== Class constructor <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton<nowiki>]</nowiki> </...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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]

Class constructor

[Edit Descripton]

Template:Description:JDocumentHTML/ construct

Syntax[edit]

__construct($options=array())
Parameter Name Default Value Description
$options array() $options Associative array of options

Defined in[edit]

libraries/joomla/document/html/html.php

Importing[edit]

jimport( 'joomla.document.html.html' );

Source Body[edit]

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');
}

[Edit See Also] Template:SeeAlso:JDocumentHTML/ construct

Examples[edit]

<CodeExamplesForm />