You are here

final class TeamInvitationEvents in Apigee Edge 8

Defines a list of events.

Hierarchy

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\Event
View 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

Namesort descending Modifiers Type Description Overrides
TeamInvitationEvents::ACCEPTED constant Name of event fired after a team_invitation is accepted.
TeamInvitationEvents::CANCELLED constant Name of the event fired after a team_invitation is cancelled.
TeamInvitationEvents::CREATED constant Name of the event fired after a team_invitation is created.
TeamInvitationEvents::DECLINED constant Name of the event fired after a team_invitation is declined.
TeamInvitationEvents::DELETED constant Name of the event fired after a team_invitation is deleted.