Elgg
Version 6.2
|
Notification Event Handler handles preparation of a notification. More...
Public Member Functions | |
__construct (NotificationEvent $event, NotificationsService $service, array $params=[]) | |
Constructor. More... | |
send () | |
Process the event. More... | |
getSubscriptions () | |
Returns subscriptions for the event. More... | |
getMethods () | |
Returns methods to be used for this notification. More... | |
Static Public Member Functions | |
static | isConfigurableByUser () |
Is this event configurable by the user on the notification settings page. More... | |
static | isConfigurableForEntity (\ElggEntity $entity) |
Can this event be configured for a specific entity. More... | |
Protected Member Functions | |
prepareSubscriptions () | |
Returns subscriptions. More... | |
filterMutedSubscriptions () | |
Should muted subscribers be filtered. More... | |
getNotificationSubsciptionExclusionGUIDs () | |
Get an array of GUIDs to not get the subscription records for. More... | |
excludeOwnerSubscribers () | |
Exclude the NotificationEvent object owner_guid when fetching the subscription records for this notification. More... | |
excludeContainerSubscribers () | |
Exclude the NotificationEvent object container_guid when fetching the subscription records for this notification. More... | |
excludeEntitySubscribers () | |
Exclude the NotificationEvent object guid when fetching the subscription records for this notification. More... | |
sendNotifications (array $subscriptions, array $params=[]) | |
Sends the notifications based on subscriptions. More... | |
sendNotification (int $guid, string $method, array $params=[]) | |
Send a notification to a subscriber. More... | |
deliverNotification (Notification $notification, string $method) | |
Deliver a notification. More... | |
prepareNotification (array $params) | |
Prepares a notification for delivery. More... | |
getNotificationSubject (\ElggUser $recipient, string $method) | |
Get subject for the notification. More... | |
getNotificationBody (\ElggUser $recipient, string $method) | |
Get body for the notification. More... | |
getNotificationSummary (\ElggUser $recipient, string $method) | |
Return the summary for a notification. More... | |
getNotificationURL (\ElggUser $recipient, string $method) | |
Returns the url related to this notification. More... | |
getEventActor () | |
Get the acting user from the notification event. More... | |
getEventEntity () | |
Get the entity from the notification event. More... | |
addMuteLink () | |
Add a mute link in the email notification. More... | |
Static Protected Member Functions | |
static | isConfigurableForUser (\ElggUser $user) |
Can this event be configured for a specific user. More... | |
static | isConfigurableForGroup (\ElggGroup $group) |
Can this event be configured for a specific group. More... | |
Protected Attributes | |
$event | |
$service | |
$params = [] | |
Notification Event Handler handles preparation of a notification.
Definition at line 14 of file NotificationEventHandler.php.
Elgg\Notifications\NotificationEventHandler::__construct | ( | NotificationEvent | $event, |
NotificationsService | $service, | ||
array | $params = [] |
||
) |
Constructor.
NotificationEvent | $event | event to handle |
NotificationsService | $service | service that handles the events |
array | $params | additional params for event handling |
Definition at line 34 of file NotificationEventHandler.php.
|
protected |
Add a mute link in the email notification.
Reimplemented in Elgg\Notifications\UnbanUserEventHandler, Elgg\Notifications\RemoveAdminUserEventHandler, Elgg\Notifications\MentionsEventHandler, Elgg\Notifications\MakeAdminUserEventHandler, and Elgg\Notifications\InstantNotificationEventHandler.
Definition at line 543 of file NotificationEventHandler.php.
|
finalprotected |
Deliver a notification.
Notification | $notification | Notification to deliver |
string | $method | Method to use for delivery |
Definition at line 300 of file NotificationEventHandler.php.
|
protected |
Exclude the NotificationEvent object container_guid when fetching the subscription records for this notification.
Definition at line 148 of file NotificationEventHandler.php.
|
protected |
Exclude the NotificationEvent object guid when fetching the subscription records for this notification.
Definition at line 158 of file NotificationEventHandler.php.
|
protected |
Exclude the NotificationEvent object owner_guid when fetching the subscription records for this notification.
Reimplemented in Elgg\Notifications\CreateCommentEventHandler.
Definition at line 138 of file NotificationEventHandler.php.
|
protected |
Should muted subscribers be filtered.
Definition at line 92 of file NotificationEventHandler.php.
|
protected |
Get the acting user from the notification event.
Definition at line 465 of file NotificationEventHandler.php.
|
protected |
Get the entity from the notification event.
Definition at line 477 of file NotificationEventHandler.php.
|
final |
Returns methods to be used for this notification.
Definition at line 167 of file NotificationEventHandler.php.
|
protected |
Get body for the notification.
Plugin can define a subtype specific body simply by providing a translation for the string "notification:<action>:<type>:<subtype>:body".
The arguments passed into the translation are:
Argument swapping can be used to change the order of the parameters. See http://php.net/manual/en/function.sprintf.php#example-5427
\ElggUser | $recipient | Notification recipient |
string | $method | Method |
Reimplemented in Elgg\Notifications\UnbanUserEventHandler, Elgg\Notifications\RemoveAdminUserEventHandler, Elgg\Notifications\MentionsEventHandler, Elgg\Notifications\MakeAdminUserEventHandler, and Elgg\Notifications\CreateCommentEventHandler.
Definition at line 406 of file NotificationEventHandler.php.
|
protected |
Get subject for the notification.
Plugins can define a subtype specific subject simply by providing a translation for the string "notification:<action>:<type>:<subtype>:subject".
\ElggUser | $recipient | Notification recipient |
string | $method | Method |
Reimplemented in Elgg\Notifications\UnbanUserEventHandler, Elgg\Notifications\RemoveAdminUserEventHandler, Elgg\Notifications\MentionsEventHandler, Elgg\Notifications\MakeAdminUserEventHandler, and Elgg\Notifications\CreateCommentEventHandler.
Definition at line 367 of file NotificationEventHandler.php.
|
finalprotected |
Get an array of GUIDs to not get the subscription records for.
Definition at line 110 of file NotificationEventHandler.php.
|
protected |
Return the summary for a notification.
\ElggUser | $recipient | Notification recipient |
string | $method | Method |
Reimplemented in Elgg\Notifications\CreateCommentEventHandler.
Definition at line 441 of file NotificationEventHandler.php.
|
protected |
Returns the url related to this notification.
\ElggUser | $recipient | Notification recipient |
string | $method | Method |
Reimplemented in Elgg\Notifications\RemoveAdminUserEventHandler, and Elgg\Notifications\MakeAdminUserEventHandler.
Definition at line 453 of file NotificationEventHandler.php.
Elgg\Notifications\NotificationEventHandler::getSubscriptions | ( | ) |
Returns subscriptions for the event.
Reimplemented in Elgg\Notifications\UnbanUserEventHandler, Elgg\Notifications\RemoveAdminUserEventHandler, Elgg\Notifications\MentionsEventHandler, Elgg\Notifications\MakeAdminUserEventHandler, and Elgg\Notifications\InstantNotificationEventHandler.
Definition at line 101 of file NotificationEventHandler.php.
|
static |
Is this event configurable by the user on the notification settings page.
Reimplemented in Elgg\Notifications\UnbanUserEventHandler, Elgg\Notifications\RemoveAdminUserEventHandler, Elgg\Notifications\MakeAdminUserEventHandler, and Elgg\Notifications\CreateCommentEventHandler.
Definition at line 488 of file NotificationEventHandler.php.
|
staticfinal |
Can this event be configured for a specific entity.
For example this can be based on a group tools option which is enabled or not
\ElggEntity | $entity | the entity to check for |
Definition at line 502 of file NotificationEventHandler.php.
|
staticprotected |
Can this event be configured for a specific group.
For example this can be based on a group tools option which is enabled or not
\ElggGroup | $group | the group to check for |
Reimplemented in Elgg\Notifications\MentionsEventHandler.
Definition at line 534 of file NotificationEventHandler.php.
|
staticprotected |
Can this event be configured for a specific user.
\ElggUser | $user | the user to check for |
Reimplemented in Elgg\Notifications\MentionsEventHandler.
Definition at line 520 of file NotificationEventHandler.php.
|
finalprotected |
Prepares a notification for delivery.
array | $params | Parameters to initialize notification with |
RuntimeException |
Definition at line 329 of file NotificationEventHandler.php.
|
finalprotected |
|
final |
Process the event.
Definition at line 49 of file NotificationEventHandler.php.
|
finalprotected |
Send a notification to a subscriber.
int | $guid | The guid of the subscriber |
string | $method | The notification method |
array | $params | Default notification params |
Definition at line 234 of file NotificationEventHandler.php.
|
finalprotected |
Sends the notifications based on subscriptions.
Returns an array in the form: [ 25 => [ 'email' => true, 'sms' => false, ], 55 => [], ]
array | $subscriptions | Subscriptions for this event |
array | $params | Default notification parameters |
Definition at line 190 of file NotificationEventHandler.php.
|
protected |
Definition at line 19 of file NotificationEventHandler.php.
|
protected |
Definition at line 25 of file NotificationEventHandler.php.
|
protected |
Definition at line 22 of file NotificationEventHandler.php.