summaryrefslogtreecommitdiff
path: root/classes/handler.php
diff options
context:
space:
mode:
Diffstat (limited to 'classes/handler.php')
-rw-r--r--classes/handler.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/classes/handler.php b/classes/handler.php
new file mode 100644
index 000000000..3bd82c725
--- /dev/null
+++ b/classes/handler.php
@@ -0,0 +1,15 @@
+<?php
+class Handler {
+ protected $link;
+ protected $args;
+
+ function __construct($link, $args) {
+ $this->link = $link;
+ $this->args = $args;
+ }
+
+ function before() {
+ return true;
+ }
+}
+?>