public function EdgeEntityEventDeriverInterface::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.
1 call to EdgeEntityEventDeriverInterface::getLabel()
- EdgeEntityEventDeriverBase::getDerivativeDefinitions in modules/
apigee_edge_actions/ src/ Plugin/ RulesEvent/ EdgeEntityEventDeriverBase.php - Gets the definition of all derivatives of a base plugin.
7 methods override EdgeEntityEventDeriverInterface::getLabel()
- EdgeEntityAddMemberEventDeriver::getLabel in modules/
apigee_edge_actions/ src/ Plugin/ RulesEvent/ EdgeEntityAddMemberEventDeriver.php - Returns the event's label. Example: 'After saving a new App'.
- EdgeEntityAddProductEventDeriver::getLabel in modules/
apigee_edge_actions/ src/ Plugin/ RulesEvent/ EdgeEntityAddProductEventDeriver.php - Returns the event's label. Example: 'After saving a new App'.
- EdgeEntityDeleteEventDeriver::getLabel in modules/
apigee_edge_actions/ src/ Plugin/ RulesEvent/ EdgeEntityDeleteEventDeriver.php - Returns the event's label. Example: 'After saving a new App'.
- EdgeEntityInsertEventDeriver::getLabel in modules/
apigee_edge_actions/ src/ Plugin/ RulesEvent/ EdgeEntityInsertEventDeriver.php - Returns the event's label. Example: 'After saving a new App'.
- EdgeEntityRemoveMemberEventDeriver::getLabel in modules/
apigee_edge_actions/ src/ Plugin/ RulesEvent/ EdgeEntityRemoveMemberEventDeriver.php - Returns the event's label. Example: 'After saving a new App'.
File
- modules/
apigee_edge_actions/ src/ Plugin/ RulesEvent/ EdgeEntityEventDeriverInterface.php, line 40
Class
- EdgeEntityEventDeriverInterface
- Provides an interface for Apigee Edge entity event deriver.
Namespace
Drupal\apigee_edge_actions\Plugin\RulesEventCode
public function getLabel(EdgeEntityTypeInterface $entity_type) : string;