]> git.wh0rd.org - tt-rss.git/blobdiff - classes/plugin.php
add a link to headlines-spacer to open next unread feed
[tt-rss.git] / classes / plugin.php
index b96874a20864f0773741e65f4f21a8e24a7c4d43..8fbacf363a82d65de5da8da8be0c73e344a578f9 100644 (file)
@@ -1,21 +1,30 @@
 <?php
 class Plugin {
-       protected $link;
-       protected $handler;
+       private $dbh;
+       private $host;
 
-       function __construct($link, $handler) {
-               $this->link = $link;
-               $this->handler = $handler;
-               $this->initialize();
+       const API_VERSION_COMPAT = 1;
+
+       function init($host) {
+               $this->dbh = $host->get_dbh();
+               $this->host = $host;
        }
 
-       function initialize() {
+       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 "";
        }
 
-       function add_listener($hook) {
-               $this->handler->add_listener($hook, $this);
+       function api_version() {
+               return Plugin::API_VERSION_COMPAT;
        }
 }
 ?>