Elgg  Version 6.1
NotificationEvent.php
Go to the documentation of this file.
1 <?php
2 
3 namespace Elgg\Notifications;
4 
11 interface NotificationEvent {
12 
19  public function getActor();
20 
26  public function getActorGUID();
27 
34  public function getObject();
35 
41  public function getAction();
42 
48  public function getDescription();
49 }
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.