summaryrefslogtreecommitdiff
path: root/classes/plugin.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2012-08-21 14:37:43 +0400
committerAndrew Dolgov <[email protected]>2012-08-21 14:37:43 +0400
commit9aceda3afc70eba20fa236c46c050b1e63ca07ca (patch)
tree74f3e8db16db3b9eb4aef5389be6ed4e00f0347f /classes/plugin.php
parent23d2471c925ed31228e68210e7a55c836234645e (diff)
remove hook-based plugins
Diffstat (limited to 'classes/plugin.php')
-rw-r--r--classes/plugin.php21
1 files changed, 0 insertions, 21 deletions
diff --git a/classes/plugin.php b/classes/plugin.php
deleted file mode 100644
index b96874a20..000000000
--- a/classes/plugin.php
+++ /dev/null
@@ -1,21 +0,0 @@
-<?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);
- }
-}
-?>