protected FileStorage::ensureStorage()
Check if the directory exists and create it if not.
File
- core/lib/Drupal/Core/Config/FileStorage.php, line 77
Class
- FileStorage
- Defines the file storage.
Namespace
Drupal\Core\Config
Code
1 2 3 4 5 6 7 8 9 10 11 12 | protected function ensureStorage() { $dir = $this ->getCollectionDirectory(); $success = file_prepare_directory( $dir , FILE_CREATE_DIRECTORY | FILE_MODIFY_PERMISSIONS); // Only create .htaccess file in root directory. if ( $dir == $this ->directory) { $success = $success && file_save_htaccess( $this ->directory, TRUE, TRUE); } if (! $success ) { throw new StorageException( 'Failed to create config directory ' . $dir ); } return $this ; } |
Please login to continue.