summaryrefslogtreecommitdiff
path: root/classes/plugin.php
diff options
context:
space:
mode:
Diffstat (limited to 'classes/plugin.php')
-rw-r--r--classes/plugin.php15
1 files changed, 14 insertions, 1 deletions
diff --git a/classes/plugin.php b/classes/plugin.php
index 59cb64f53..e655a2062 100644
--- a/classes/plugin.php
+++ b/classes/plugin.php
@@ -3,9 +3,22 @@ class Plugin {
private $link;
private $host;
- function __construct($host) {
+ function init($host) {
$this->link = $host->get_link();
$this->host = $host;
}
+
+ function about() {
+ // version, name, description, author, is_system
+ return array(1.0, "plugin", "No description", "No author", false);
+ }
+
+ function get_js() {
+ return "";
+ }
+
+ function get_prefs_js() {
+ return "";
+ }
}
?>