public Theme::getInstallDirectory()
Returns the directory where a theme should be installed.
If the theme is already installed, drupal_get_path() will return a valid path and we should install it there. If we're installing a new theme, we always want it to go into /themes, since that's where all the documentation recommends users install their themes, and there's no way that can conflict on a multi-site installation, since the Update manager won't let you install a new theme if it's already found on your system, and if there was a copy in the top-level we'd see it.
Return value
string The absolute path of the directory.
Overrides UpdaterInterface::getInstallDirectory
File
- core/lib/Drupal/Core/Updater/Theme.php, line 27
Class
- Theme
- Defines a class for updating themes using Drupal\Core\FileTransfer\FileTransfer classes via authorize.php.
Namespace
Drupal\Core\Updater
Code
1 2 3 4 5 6 7 8 9 10 11 | public function getInstallDirectory() { if ( $this ->isInstalled() && ( $relative_path = drupal_get_path( 'theme' , $this ->name))) { // The return value of drupal_get_path() is always relative to the site, // so prepend DRUPAL_ROOT. return DRUPAL_ROOT . '/' . dirname( $relative_path ); } else { // When installing a new theme, prepend the requested root directory. return $this ->root . '/' . $this ->getRootDirectoryRelativePath(); } } |
Please login to continue.