public static function FileStorage::getFileExtension

Returns the file extension used by the file storage for all configuration files.

Return value

string The file extension.

5 calls to FileStorage::getFileExtension()
FileStorage::getFilePath in drupal/core/lib/Drupal/Core/Config/FileStorage.php
Returns the path to the configuration file.
FileStorage::listAll in drupal/core/lib/Drupal/Core/Config/FileStorage.php
Implements Drupal\Core\Config\StorageInterface::listAll().
InstallStorage::getComponentNames in drupal/core/lib/Drupal/Core/Config/InstallStorage.php
Get all configuration names and folders for a list of modules or themes.
InstallStorage::getFilePath in drupal/core/lib/Drupal/Core/Config/InstallStorage.php
Overrides Drupal\Core\Config\FileStorage::getFilePath().
install_begin_request in drupal/core/includes/install.core.inc
Begins an installation request, modifying the installation state as needed.

File

drupal/core/lib/Drupal/Core/Config/FileStorage.php, line 65
Definition of Drupal\Core\Config\FileStorage.

Class

FileStorage
Defines the file storage controller.

Namespace

Drupal\Core\Config

Code

public static function getFileExtension() {
  return 'yml';
}