API15:JComponentHelper/isEnabled
From Joomla! Documentation
Description
Checks if the component is enabled
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
isEnabled($component, $strict=false)
| Parameter Name | Default Value | Description |
|---|---|---|
| $component | $component The component name | |
| $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
function isEnabled( $component, $strict = false )
{
global $mainframe;
$result = &JComponentHelper::getComponent( $component, $strict );
return ($result->enabled | $mainframe->isAdmin());
}
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
Code Examples