API16:JPluginHelper/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 a plugin is enabled.
Description:JPluginHelper/isEnabled
Syntax
static isEnabled($type, $plugin=null)
| Parameter Name | Default Value | Description |
|---|---|---|
| $type | $type The plugin type, relates to the sub-directory in the plugins directory. | |
| $plugin | null | $plugin The plugin name. |
Returns
boolean
Defined in
libraries/joomla/plugin/helper.php
Importing
jimport( 'joomla.plugin.helper' );
Source Body
public static function isEnabled($type, $plugin = null) { $result = &self::getPlugin($type, $plugin); return (!empty($result)); }
[Edit See Also] SeeAlso:JPluginHelper/isEnabled
Examples
<CodeExamplesForm />
