public static function Theme::getRootDirectoryRelativePath in Drupal 9
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Updater/Theme.php \Drupal\Core\Updater\Theme::getRootDirectoryRelativePath()
Returns the name of the root directory under which projects will be copied.
Return value
string A relative path to the root directory.
Overrides UpdaterInterface::getRootDirectoryRelativePath
1 call to Theme::getRootDirectoryRelativePath()
- Theme::getInstallDirectory in core/
lib/ Drupal/ Core/ Updater/ Theme.php - Returns the directory where a theme should be installed.
File
- core/
lib/ Drupal/ Core/ Updater/ Theme.php, line 44
Class
- Theme
- Defines a class for updating themes using Drupal\Core\FileTransfer\FileTransfer classes via authorize.php.
Namespace
Drupal\Core\UpdaterCode
public static function getRootDirectoryRelativePath() {
return 'themes';
}