API16

JLibraryManifest/ construct

From Joomla! Documentation

< API16:JLibraryManifest
Revision as of 17:54, 22 March 2010 by Doxiki (talk | contribs) (New page: ===Description=== Class constructor, overridden in descendant classes. <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>[[Description:JLibraryManifest/__construct|E...)
(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, overridden in descendant classes.

[Edit Descripton]

Template:Description:JLibraryManifest/ construct

Syntax[edit]

__construct($xmlpath='')
Parameter Name Default Value Description
$properties $properties Either and associative array or another object to set the initial properties of the object.

Defined in[edit]

libraries/joomla/installer/librarymanifest.php

Importing[edit]

jimport( 'joomla.installer.librarymanifest' );

Source Body[edit]

function __construct($xmlpath='')
{
        if (strlen($xmlpath)) $this->loadManifestFromXML($xmlpath);
}

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

Examples[edit]

<CodeExamplesForm />