interface TeamInvitationNotifierInterface in Apigee Edge 8
Defines an interface for team_invitation notifiers.
Hierarchy
- interface \Drupal\apigee_edge_teams\TeamInvitationNotifierInterface
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_teamsView 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
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
TeamInvitationNotifierInterface:: |
public | function | Sends notification for the provided team_invitation. | 1 |