You are here

protected function EntityTranslationNodeHandler::entityFormTitle in Entity Translation 7

Overrides EntityTranslationDefaultHandler::entityFormTitle

See also

EntityTranslationDefaultHandler::entityFormTitle()

File

includes/translation.handler.node.inc, line 109
Node translation handler for the entity translation module.

Class

EntityTranslationNodeHandler
Node translation handler.

Code

protected function entityFormTitle() {
  $type_name = node_type_get_name($this->entity);
  return t('<em>Edit @type</em> @title', array(
    '@type' => $type_name,
    '@title' => $this
      ->getLabel(),
  ));
}