You are here

protected function EntityAliasTypeBase::getEntityTypeId in View Mode Page 8.3

Same name and namespace in other branches
  1. 4.0.x src/Plugin/view_mode_page/AliasType/EntityAliasTypeBase.php \Drupal\view_mode_page\Plugin\view_mode_page\AliasType\EntityAliasTypeBase::getEntityTypeId()
  2. 3.2.x src/Plugin/view_mode_page/AliasType/EntityAliasTypeBase.php \Drupal\view_mode_page\Plugin\view_mode_page\AliasType\EntityAliasTypeBase::getEntityTypeId()

Returns the entity type ID.

Return value

string The entity type ID.

1 call to EntityAliasTypeBase::getEntityTypeId()
EntityAliasTypeBase::applies in src/Plugin/view_mode_page/AliasType/EntityAliasTypeBase.php
Determines if this plugin type can apply a given object.

File

src/Plugin/view_mode_page/AliasType/EntityAliasTypeBase.php, line 106

Class

EntityAliasTypeBase
A view_mode_page alias type plugin for entities with canonical links.

Namespace

Drupal\view_mode_page\Plugin\view_mode_page\AliasType

Code

protected function getEntityTypeId() {
  return $this
    ->getDerivativeId();
}