StorageInterface::decode

public StorageInterface::decode($raw) Decodes configuration data from the storage-specific format. This is a publicly accessible static method to allow for alternative usages in data conversion scripts and also tests. Parameters string $raw: The raw configuration data string to decode. Return value array The decoded configuration data as an associative array. File core/lib/Drupal/Core/Config/StorageInterface.php, line 119 Class StorageInterface Defines an interface for configuration stor

ThemeHandler::refreshInfo

public ThemeHandler::refreshInfo() Refreshes the theme info data of currently installed themes. Modules can alter theme info, so this is typically called after a module has been installed or uninstalled. Overrides ThemeHandlerInterface::refreshInfo File core/lib/Drupal/Core/Extension/ThemeHandler.php, line 218 Class ThemeHandler Default theme handler using the config system to store installation statuses. Namespace Drupal\Core\Extension Code public function refreshInfo() { $this->

ConfigFactoryInterface::rename

public ConfigFactoryInterface::rename($old_name, $new_name) Renames a configuration object using the storage. Parameters string $old_name: The old name of the configuration object. string $new_name: The new name of the configuration object. Return value $this File core/lib/Drupal/Core/Config/ConfigFactoryInterface.php, line 74 Class ConfigFactoryInterface Defines the interface for a configuration object factory. Namespace Drupal\Core\Config Code public function rename($old_name, $new

FormState::disableCache

public FormState::disableCache() Prevents the form from being cached. Return value $this Overrides FormStateInterface::disableCache File core/lib/Drupal/Core/Form/FormState.php, line 521 Class FormState Stores information about the state of a form. Namespace Drupal\Core\Form Code public function disableCache() { $this->no_cache = TRUE; return $this; }

ConfigFactoryOverrideInterface

Defines the interface for a configuration factory override object. Hierarchy interface \Drupal\Core\Config\ConfigFactoryOverrideInterface File core/lib/Drupal/Core/Config/ConfigFactoryOverrideInterface.php, line 8 Namespace Drupal\Core\Config Members Name Modifiers Type Description ConfigFactoryOverrideInterface::createConfigObject public function Creates a configuration object for use during install and synchronization. ConfigFactoryOverrideInterface::getCacheableMeta

ConfigFactory::$storage

A storage instance for reading and writing configuration data. Type: \Drupal\Core\Config\StorageInterface File core/lib/Drupal/Core/Config/ConfigFactory.php, line 32 Class ConfigFactory Defines the configuration object factory. Namespace Drupal\Core\Config Code protected $storage;

FormState::getAlwaysProcess

public FormState::getAlwaysProcess() Determines if this form should always be processed. Return value bool TRUE if the form should always be processed, FALSE otherwise. Overrides FormStateInterface::getAlwaysProcess File core/lib/Drupal/Core/Form/FormState.php, line 478 Class FormState Stores information about the state of a form. Namespace Drupal\Core\Form Code public function getAlwaysProcess() { return $this->always_process; }

EntityType::getClass

public EntityType::getClass() Gets the class. Return value string A fully qualified class name. Overrides PluginDefinitionInterface::getClass File core/lib/Drupal/Core/Entity/EntityType.php, line 401 Class EntityType Provides an implementation of an entity type and its metadata. Namespace Drupal\Core\Entity Code public function getClass() { return $this->class; }

EntityManager::clearDisplayModeInfo

public EntityManager::clearDisplayModeInfo() Overrides EntityDisplayRepositoryInterface::clearDisplayModeInfo Deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. File core/lib/Drupal/Core/Entity/EntityManager.php, line 349 Class EntityManager Provides a wrapper around many other services relating to entities. Namespace Drupal\Core\Entity Code public function clearDisplayModeInfo() { $this->container->get('entity_display.repository')->clearDisplayModeInfo(); }

FTPExtension::isDirectory

public FTPExtension::isDirectory($path) Checks if a particular path is a directory. Parameters string $path: The path to check Return value bool TRUE if the specified path is a directory, FALSE otherwise. Overrides FileTransfer::isDirectory File core/lib/Drupal/Core/FileTransfer/FTPExtension.php, line 84 Class FTPExtension Defines a file transfer class using the PHP FTP extension. Namespace Drupal\Core\FileTransfer Code public function isDirectory($path) { $result = FALSE; $curr