Elgg  Version 5.1
NotificationEvent.php
Go to the documentation of this file.
1 <?php
2 
3 namespace Elgg\Notifications;
4 
10 interface NotificationEvent {
11 
17  public function getActor();
18 
24  public function getActorGUID();
25 
31  public function getObject();
32 
38  public function getAction();
39 
45  public function getDescription();
46 }
getObject()
Get the object of the event.
getDescription()
Get a description of the event.
getActorGUID()
Get the GUID of the actor.
getAction()
Get the name of the action.
getActor()
Get the actor of the event.
Notification event interface.