public function EntityController::editTitle in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/Entity/Controller/EntityController.php \Drupal\Core\Entity\Controller\EntityController::editTitle()
Provides a generic edit title callback.
Parameters
\Drupal\Core\Routing\RouteMatchInterface $route_match: The route match.
\Drupal\Core\Entity\EntityInterface $_entity: (optional) An entity, passed in directly from the request attributes.
Return value
string The title for the entity edit page.
File
- core/
lib/ Drupal/ Core/ Entity/ Controller/ EntityController.php, line 88 - Contains \Drupal\Core\Entity\Controller\EntityController.
Class
- EntityController
- Provides generic entity title callbacks for use in routing.
Namespace
Drupal\Core\Entity\ControllerCode
public function editTitle(RouteMatchInterface $route_match, EntityInterface $_entity = NULL) {
if ($entity = $this
->doGetEntity($route_match, $_entity)) {
return $this
->t('Edit %label', [
'%label' => $entity
->label(),
]);
}
}