You are here

static function Theme::canUpdateDirectory in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/Updater/Theme.php \Drupal\Core\Updater\Theme::canUpdateDirectory()

Determines if the Updater can handle the project provided in $directory.

Parameters

string $directory:

Return value

bool TRUE if the project is installed, FALSE if not.

Overrides UpdaterInterface::canUpdateDirectory

File

core/lib/Drupal/Core/Updater/Theme.php, line 64
Contains \Drupal\Core\Updater\Theme.

Class

Theme
Defines a class for updating themes using Drupal\Core\FileTransfer\FileTransfer classes via authorize.php.

Namespace

Drupal\Core\Updater

Code

static function canUpdateDirectory($directory) {
  $info = static::getExtensionInfo($directory);
  return isset($info['type']) && $info['type'] == 'theme';
}