API16:JComponentHelper/getComponent
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Contents |
Description
Get the component information.
Description:JComponentHelper/getComponent
Syntax
static getComponent($option, $strict=false)
| Parameter Name | Default Value | Description |
|---|---|---|
| $option | $option The component option. | |
| $strict | false | $string If set and a component does not exist, the enabled attribue will be set to false |
Returns
object An object with the fields for the component.
Defined in
libraries/joomla/application/component/helper.php
Importing
jimport( 'joomla.application.component.helper' );
Source Body
public static function getComponent($option, $strict = false) { if (!isset(self::$_components[$option])) { if (self::_load($option)){ $result = &self::$_components[$option]; } else { $result = new stdClass; $result->enabled = $strict ? false : true; $result->params = new JParameter; } } else { $result = &self::$_components[$option]; } return $result; }
[Edit See Also] SeeAlso:JComponentHelper/getComponent
Examples
<CodeExamplesForm />
