function ConfigTestController::enable
Same name in other branches
- 9 core/modules/config/tests/config_test/src/ConfigTestController.php \Drupal\config_test\ConfigTestController::enable()
- 10 core/modules/config/tests/config_test/src/ConfigTestController.php \Drupal\config_test\ConfigTestController::enable()
- 11.x core/modules/config/tests/config_test/src/ConfigTestController.php \Drupal\config_test\ConfigTestController::enable()
Enables a ConfigTest object.
Parameters
\Drupal\config_test\ConfigTest $config_test: The ConfigTest object to enable.
Return value
\Symfony\Component\HttpFoundation\RedirectResponse A redirect response to the config_test listing page.
1 string reference to 'ConfigTestController::enable'
- config_test.routing.yml in core/
modules/ config/ tests/ config_test/ config_test.routing.yml - core/modules/config/tests/config_test/config_test.routing.yml
File
-
core/
modules/ config/ tests/ config_test/ src/ ConfigTestController.php, line 36
Class
- ConfigTestController
- Route controller class for the config_test module.
Namespace
Drupal\config_testCode
public function enable(ConfigTest $config_test) {
$config_test->enable()
->save();
return new RedirectResponse($config_test->toUrl('collection', [
'absolute' => TRUE,
])
->toString());
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.