protected function EntityAliasTypeBase::getEntityTypeId in Pathauto 8
Returns the entity type ID.
Return value
string The entity type ID.
5 calls to EntityAliasTypeBase::getEntityTypeId()
- EntityAliasTypeBase::applies in src/Plugin/ pathauto/ AliasType/ EntityAliasTypeBase.php 
- Determines if this plugin type can apply a given object.
- EntityAliasTypeBase::batchDelete in src/Plugin/ pathauto/ AliasType/ EntityAliasTypeBase.php 
- Gets called to batch delete all aliases created by pathauto.
- EntityAliasTypeBase::batchUpdate in src/Plugin/ pathauto/ AliasType/ EntityAliasTypeBase.php 
- Gets called to batch update all entries.
- EntityAliasTypeBase::bulkDelete in src/Plugin/ pathauto/ AliasType/ EntityAliasTypeBase.php 
- Deletes the URL aliases for multiple entities.
- EntityAliasTypeBase::getSourcePrefix in src/Plugin/ pathauto/ AliasType/ EntityAliasTypeBase.php 
- Returns the source prefix; used for bulk delete.
1 method overrides EntityAliasTypeBase::getEntityTypeId()
- ForumAliasType::getEntityTypeId in src/Plugin/ pathauto/ AliasType/ ForumAliasType.php 
- Returns the entity type ID.
File
- src/Plugin/ pathauto/ AliasType/ EntityAliasTypeBase.php, line 251 
Class
- EntityAliasTypeBase
- A pathauto alias type plugin for entities with canonical links.
Namespace
Drupal\pathauto\Plugin\pathauto\AliasTypeCode
protected function getEntityTypeId() {
  return $this
    ->getDerivativeId();
}