mirror of
https://git.tt-rss.org/fox/tt-rss.git
synced 2025-10-05 12:10:59 +02:00
22 lines
298 B
PHP
22 lines
298 B
PHP
<?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);
|
|
}
|
|
}
|
|
?>
|