Gdn_ApplicationManager::isEnabled PHP Method

isEnabled() public method

Check whether or not an application is enabled.
Deprecation:
Since: 2.2
public isEnabled ( string $Name ) : boolean
$Name string The name of the application.
return boolean Whether or not the application is enabled.
    public function isEnabled($Name)
    {
        deprecated('Gdn_ApplicationManager->isEnabled()', 'AddonManager->isEnabled()');
        return $this->addonManager->isEnabled($Name, Addon::TYPE_ADDON);
    }