static function Theme::canUpdateDirectory

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');
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Updater!Theme.php/function/Theme::canUpdateDirectory/8.1.x