1 system.updater.inc | public ModuleUpdater::isInstalled() |
Checks if the project is installed.
Return value
bool:
Overrides BackdropUpdaterInterface::isInstalled
File
- core/
modules/ system/ system.updater.inc, line 85 - Subclasses of the Updater class to update Backdrop core, modules, themes, and layouts.
Class
- ModuleUpdater
- Class for updating modules using FileTransfer classes via authorize.php.
Code
public function isInstalled() {
return (bool) backdrop_get_path('module', $this->name);
}