final class TeamInvitationEvents in Apigee Edge 8
Defines a list of events.
Hierarchy
- class \Drupal\apigee_edge_teams\Event\TeamInvitationEvents
Expanded class hierarchy of TeamInvitationEvents
3 files declare their use of TeamInvitationEvents
- TeamInvitationStorage.php in modules/
apigee_edge_teams/ src/ Entity/ Storage/ TeamInvitationStorage.php - TeamInvitationSubscriber.php in modules/
apigee_edge_teams/ src/ EventSubscriber/ TeamInvitationSubscriber.php - TeamInvitationSubscriber.php in modules/
apigee_edge_teams/ tests/ modules/ apigee_edge_teams_invitation_test/ src/ EventSubscriber/ TeamInvitationSubscriber.php
File
- modules/
apigee_edge_teams/ src/ Event/ TeamInvitationEvents.php, line 26
Namespace
Drupal\apigee_edge_teams\EventView source
final class TeamInvitationEvents {
/**
* Name of the event fired after a team_invitation is created.
*/
const CREATED = "apigee_edge_teams.team_invitation.created";
/**
* Name of event fired after a team_invitation is accepted.
*/
const ACCEPTED = "apigee_edge_teams.team_invitation.accepted";
/**
* Name of the event fired after a team_invitation is declined.
*/
const DECLINED = "apigee_edge_teams.team_invitation.declined";
/**
* Name of the event fired after a team_invitation is cancelled.
*/
const CANCELLED = "apigee_edge_teams.team_invitation.cancelled";
/**
* Name of the event fired after a team_invitation is deleted.
*/
const DELETED = "apigee_edge_teams.team_invitation.deleted";
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
TeamInvitationEvents:: |
constant | Name of event fired after a team_invitation is accepted. | ||
TeamInvitationEvents:: |
constant | Name of the event fired after a team_invitation is cancelled. | ||
TeamInvitationEvents:: |
constant | Name of the event fired after a team_invitation is created. | ||
TeamInvitationEvents:: |
constant | Name of the event fired after a team_invitation is declined. | ||
TeamInvitationEvents:: |
constant | Name of the event fired after a team_invitation is deleted. |