JFactory/getApplication
From Joomla! Documentation
< API16:JFactory
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]
Get a application object
<! removed transcluded page call, red link never existed >
Syntax[edit]
static getApplication($id=null, $config=array(), $prefix='J')
Parameter Name | Default Value | Description |
---|---|---|
$id | null | $id A client identifier or name. |
$config | array() | $config An optional associative array of configuration settings. |
$prefix | 'J' |
Returns[edit]
object
Defined in[edit]
libraries/joomla/factory.php
Importing[edit]
jimport( 'joomla.factory' );
Source Body[edit]
public static function getApplication($id = null, $config = array(), $prefix='J')
{
if (!is_object(JFactory::$application))
{
jimport('joomla.application.application');
if (!$id) {
JError::raiseError(500, 'Application Instantiation Error');
}
JFactory::$application = JApplication::getInstance($id, $config, $prefix);
}
return JFactory::$application;
}
<! removed transcluded page call, red link never existed >
Examples[edit]
Code Examples[edit]