You are here

public function AbstractEntityFormModesFactory::editPageTitle in Form mode manager 8.2

Return value

string The title context for "edit" form.

Overrides EntityFormModeManagerInterface::editPageTitle

File

src/AbstractEntityFormModesFactory.php, line 238

Class

AbstractEntityFormModesFactory
Abstract Factory to generate object used by routing of Form Mode Manager.

Namespace

Drupal\form_mode_manager

Code

public function editPageTitle(RouteMatchInterface $route_match) {
  return $this
    ->pageTitle($route_match, $this
    ->t('Edit'));
}