public function ThemeUpdater::isInstalled

Checks if the project is installed.

Return value

bool

Overrides DrupalUpdaterInterface::isInstalled

1 call to ThemeUpdater::isInstalled()
ThemeUpdater::getInstallDirectory in drupal/modules/system/system.updater.inc
Return the directory where a theme should be installed.

File

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

Class

ThemeUpdater
Class for updating themes using FileTransfer classes via authorize.php.

Code

public function isInstalled() {
  return (bool) drupal_get_filename('theme', $this->name, NULL, FALSE);
}