ModuleUpdater::isInstalled

7 system.updater.inc public ModuleUpdater::isInstalled()

Checks if the project is installed.

Return value

bool

Overrides DrupalUpdaterInterface::isInstalled

File

modules/system/system.updater.inc, line 36
Subclasses of the Updater class to update Drupal core knows how to update. At this time, only modules and themes are supported.

Code

public function isInstalled() {
  return (bool) drupal_get_path('module', $this->name);
}
Login or register to post comments