API16:JComponentHelper/isEnabled
From Joomla! Documentation
Description
Checks if the component is enabled
<! removed transcluded page call, red link never existed >
Syntax
static isEnabled($option, $strict=false)
| Parameter Name | Default Value | Description |
|---|---|---|
| $option | $option The component option. | |
| $strict | false | $string If set and a component does not exist, false will be returned |
Returns
boolean
Defined in
libraries/joomla/application/component/helper.php
Importing
jimport( 'joomla.application.component.helper' );
Source Body
public static function isEnabled($option, $strict = false)
{
$result = &self::getComponent($option, $strict);
return ($result->enabled | JFactory::getApplication()->isAdmin());
}
<! removed transcluded page call, red link never existed >
Examples
Code Examples