API16:JComponentHelper/isEnabled
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
Checks if the component is enabled
Description:JComponentHelper/isEnabled
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()); }
[Edit See Also] SeeAlso:JComponentHelper/isEnabled
Examples
<CodeExamplesForm />
