API16

JInstaller/getManifest: Difference between revisions

From Joomla! Documentation

m clean up
m preparing for archive only
 
Line 33: Line 33:


===Examples===
===Examples===
<CodeExamplesForm />
=== Code Examples ===
<dpl>
<dpl>
  noresultsheader=\n
  noresultsheader=\n
  category=getManifest
  category=getManifest
  category=JInstaller
  category=JInstaller
  category=CodeExample
  namespace=CodeExample
  category=MethodExample
  category=MethodExample
  include=*
  include=*

Latest revision as of 01:48, 25 March 2017

Description

Get the installation manifest object


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

Syntax

getManifest()


Returns

object Manifest object

Defined in

libraries/joomla/installer/installer.php

Importing

jimport( 'joomla.installer.installer' );

Source Body

public function getManifest()
{
        if (!is_object($this->manifest)) {
                $this->findManifest();
        }
        return $this->manifest;
}


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

Examples

Code Examples