You are here

public function EdgeEntityAddMemberEventDeriver::getLabel in Apigee Edge 8

Returns the event's label. Example: 'After saving a new App'.

Parameters

\Drupal\apigee_edge\Entity\EdgeEntityTypeInterface $entity_type: The Apigee Edge entity type.

Return value

string The event's label.

Overrides EdgeEntityEventDeriverInterface::getLabel

File

modules/apigee_edge_actions/src/Plugin/RulesEvent/EdgeEntityAddMemberEventDeriver.php, line 34

Class

EdgeEntityAddMemberEventDeriver
Deriver for Edge entity add_member events.

Namespace

Drupal\apigee_edge_actions\Plugin\RulesEvent

Code

public function getLabel(EdgeEntityTypeInterface $entity_type) : string {
  return $this
    ->t('After adding a team member');
}