public static function Module::getRootDirectoryRelativePath in Drupal 8
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/Updater/Module.php \Drupal\Core\Updater\Module::getRootDirectoryRelativePath()
 - 10 core/lib/Drupal/Core/Updater/Module.php \Drupal\Core\Updater\Module::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 Module::getRootDirectoryRelativePath()
- Module::getInstallDirectory in core/
lib/ Drupal/ Core/ Updater/ Module.php  - Returns the directory where a module should be installed.
 
File
- core/
lib/ Drupal/ Core/ Updater/ Module.php, line 42  
Class
- Module
 - Defines a class for updating modules using Drupal\Core\FileTransfer\FileTransfer classes via authorize.php.
 
Namespace
Drupal\Core\UpdaterCode
public static function getRootDirectoryRelativePath() {
  return 'modules';
}