API16

API16:JDocumentXML/ construct

From Joomla! Documentation

Description

Class constructor


<! 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/xml/xml.php

Importing

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

Source Body

public function __construct($options = array())
{
        parent::__construct($options);

        //set mime type
        $this->_mime = 'application/xml';

        //set document type
        $this->_type = 'xml';
}


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

Examples

Code Examples