public function ConfigTestController::editTitle in Drupal 9
Same name and namespace in other branches
- 8 core/modules/config/tests/config_test/src/ConfigTestController.php \Drupal\config_test\ConfigTestController::editTitle()
Route title callback.
Parameters
\Drupal\config_test\Entity\ConfigTest $config_test: The ConfigTest object.
Return value
string The title for the ConfigTest edit form.
1 string reference to 'ConfigTestController::editTitle'
- 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 23
Class
- ConfigTestController
- Route controller class for the config_test module.
Namespace
Drupal\config_testCode
public function editTitle(ConfigTest $config_test) {
return $this
->t('Edit %label', [
'%label' => $config_test
->label(),
]);
}