You are here

interface TeamInvitationNotifierInterface in Apigee Edge 8

Defines an interface for team_invitation notifiers.

Hierarchy

Expanded class hierarchy of TeamInvitationNotifierInterface

All classes that implement TeamInvitationNotifierInterface

2 files declare their use of TeamInvitationNotifierInterface
TeamInvitationResendForm.php in modules/apigee_edge_teams/src/Entity/Form/TeamInvitationResendForm.php
TeamInvitationSubscriber.php in modules/apigee_edge_teams/src/EventSubscriber/TeamInvitationSubscriber.php

File

modules/apigee_edge_teams/src/TeamInvitationNotifierInterface.php, line 28

Namespace

Drupal\apigee_edge_teams
View source
interface TeamInvitationNotifierInterface {

  /**
   * Sends notification for the provided team_invitation.
   *
   * @param \Drupal\apigee_edge_teams\Entity\TeamInvitationInterface $team_invitation
   *   The team_invitation entity.
   *
   * @return bool
   *   TRUE if notifications successfully sent. FALSE otherwise.
   */
  public function sendNotificationsFor(TeamInvitationInterface $team_invitation) : bool;

}

Members

Namesort descending Modifiers Type Description Overrides
TeamInvitationNotifierInterface::sendNotificationsFor public function Sends notification for the provided team_invitation. 1