public function ConfigFactoryInterface::getEditable in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/Config/ConfigFactoryInterface.php \Drupal\Core\Config\ConfigFactoryInterface::getEditable()
Returns an mutable configuration object for a given name.
Should not be used for config that will have runtime effects. Therefore it is always loaded override free.
Parameters
string $name: The name of the configuration object to construct.
Return value
\Drupal\Core\Config\Config A configuration object.
1 method overrides ConfigFactoryInterface::getEditable()
- ConfigFactory::getEditable in core/
lib/ Drupal/ Core/ Config/ ConfigFactory.php - Returns an mutable configuration object for a given name.
File
- core/
lib/ Drupal/ Core/ Config/ ConfigFactoryInterface.php, line 40 - Contains \Drupal\Core\Config\ConfigFactoryInterface.
Class
- ConfigFactoryInterface
- Defines the interface for a configuration object factory.
Namespace
Drupal\Core\ConfigCode
public function getEditable($name);