Page MenuHomePhorge

PhutilEventListener.php
No OneTemporary

PhutilEventListener.php

<?php
abstract class PhutilEventListener extends Phobject {
private $listenerID;
private static $nextListenerID = 1;
final public function __construct() {
// <empty>
}
abstract public function register();
abstract public function handleEvent(PhutilEvent $event);
final public function listen($type) {
$engine = PhutilEventEngine::getInstance();
$engine->addListener($this, $type);
}
/**
* Return a scalar ID unique to this listener. This is used to deduplicate
* listeners which match events on multiple rules, so they are invoked only
* once.
*
* @return int A scalar unique to this object instance.
*/
final public function getListenerID() {
if (!$this->listenerID) {
$this->listenerID = self::$nextListenerID;
self::$nextListenerID++;
}
return $this->listenerID;
}
}

File Metadata

Mime Type
text/x-php
Expires
Mon, Mar 24, 00:32 (1 d, 4 h ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1114713
Default Alt Text
PhutilEventListener.php (855 B)

Event Timeline