protected FileStorage::getCollectionDirectory()
Gets the directory for the collection.
Return value
string The directory for the collection.
File
- core/lib/Drupal/Core/Config/FileStorage.php, line 351
Class
- FileStorage
- Defines the file storage.
Namespace
Drupal\Core\Config
Code
1 2 3 4 5 6 7 8 9 | protected function getCollectionDirectory() { if ( $this ->collection == StorageInterface::DEFAULT_COLLECTION) { $dir = $this ->directory; } else { $dir = $this ->directory . '/' . str_replace ( '.' , '/' , $this ->collection); } return $dir ; } |
Please login to continue.