You are here

public function ConfigTestController::editTitle in Zircon Profile 8.0

Same name and namespace in other branches
  1. 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 28
Contains \Drupal\config_test\ConfigTestController.

Class

ConfigTestController
Route controller class for the config_test module.

Namespace

Drupal\config_test

Code

public function editTitle(ConfigTest $config_test) {
  return $this
    ->t('Edit %label', array(
    '%label' => $config_test
      ->label(),
  ));
}