static Theme::canUpdateDirectory($directory)
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\Updater
Code
static function canUpdateDirectory($directory) { $info = static::getExtensionInfo($directory); return (isset($info['type']) && $info['type'] == 'theme'); }
Please login to continue.