protected InstallStorage::getCoreFolder()
Get folder inside Drupal core that contains the files.
Return value
string The configuration folder name for core.
File
- core/lib/Drupal/Core/Config/InstallStorage.php, line 256
Class
- InstallStorage
- Storage used by the Drupal installer.
Namespace
Drupal\Core\Config
Code
1 2 3 | protected function getCoreFolder() { return drupal_get_path( 'core' , 'core' ) . '/' . $this ->getCollectionDirectory(); } |
Please login to continue.