You are here

public function EdgeEntityEventDeriverBase::getEntityTypes in Apigee Edge 8

Returns an array of entity types that are compatible to this event.

Return value

array An array of Edge entity types.

Overrides EdgeEntityEventDeriverInterface::getEntityTypes

4 calls to EdgeEntityEventDeriverBase::getEntityTypes()
EdgeEntityAddMemberEventDeriver::getEntityTypes in modules/apigee_edge_actions/src/Plugin/RulesEvent/EdgeEntityAddMemberEventDeriver.php
Returns an array of entity types that are compatible to this event.
EdgeEntityEventDeriverBase::getDerivativeDefinitions in modules/apigee_edge_actions/src/Plugin/RulesEvent/EdgeEntityEventDeriverBase.php
Gets the definition of all derivatives of a base plugin.
EdgeEntityProductEventDeriverBase::getEntityTypes in modules/apigee_edge_actions/src/Plugin/RulesEvent/EdgeEntityProductEventDeriverBase.php
Returns an array of entity types that are compatible to this event.
EdgeEntityRemoveMemberEventDeriver::getEntityTypes in modules/apigee_edge_actions/src/Plugin/RulesEvent/EdgeEntityRemoveMemberEventDeriver.php
Returns an array of entity types that are compatible to this event.
3 methods override EdgeEntityEventDeriverBase::getEntityTypes()
EdgeEntityAddMemberEventDeriver::getEntityTypes in modules/apigee_edge_actions/src/Plugin/RulesEvent/EdgeEntityAddMemberEventDeriver.php
Returns an array of entity types that are compatible to this event.
EdgeEntityProductEventDeriverBase::getEntityTypes in modules/apigee_edge_actions/src/Plugin/RulesEvent/EdgeEntityProductEventDeriverBase.php
Returns an array of entity types that are compatible to this event.
EdgeEntityRemoveMemberEventDeriver::getEntityTypes in modules/apigee_edge_actions/src/Plugin/RulesEvent/EdgeEntityRemoveMemberEventDeriver.php
Returns an array of entity types that are compatible to this event.

File

modules/apigee_edge_actions/src/Plugin/RulesEvent/EdgeEntityEventDeriverBase.php, line 67

Class

EdgeEntityEventDeriverBase
Rules event deriver for Apigee Edge entity types.

Namespace

Drupal\apigee_edge_actions\Plugin\RulesEvent

Code

public function getEntityTypes() : array {
  return $this->edgeEntityTypeManager
    ->getEntityTypes();
}