Elgg  Version 2.3
NotificationEvent.php
Go to the documentation of this file.
1 <?php
2 
3 namespace Elgg\Notifications;
4 
5 use ElggData;
6 use ElggEntity;
7 use Serializable;
8 
15 interface NotificationEvent extends Serializable {
16 
22  public function getActor();
23 
29  public function getActorGUID();
30 
36  public function getObject();
37 
43  public function getAction();
44 
50  public function getDescription();
51 
52 }
getActorGUID()
Get the GUID of the actor.
getDescription()
Get a description of the event.
getActor()
Get the actor of the event.
getAction()
Get the name of the action.
getObject()
Get the object of the event.