public static function Theme::canUpdateDirectory in Drupal 8
Same name and namespace in other branches
- 9 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 59
Class
- Theme
- Defines a class for updating themes using Drupal\Core\FileTransfer\FileTransfer classes via authorize.php.
Namespace
Drupal\Core\UpdaterCode
public static function canUpdateDirectory($directory) {
$info = static::getExtensionInfo($directory);
return isset($info['type']) && $info['type'] == 'theme';
}