You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
298 B
PHTML
22 lines
298 B
PHTML
12 years ago
|
<?php
|
||
|
class Plugin {
|
||
|
protected $link;
|
||
|
protected $handler;
|
||
|
|
||
|
function __construct($link, $handler) {
|
||
|
$this->link = $link;
|
||
|
$this->handler = $handler;
|
||
|
$this->initialize();
|
||
|
}
|
||
|
|
||
|
function initialize() {
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
function add_listener($hook) {
|
||
|
$this->handler->add_listener($hook, $this);
|
||
|
}
|
||
|
}
|
||
|
?>
|