]> git.wh0rd.org - tt-rss.git/blame - classes/plugin.php
more work on user-selectable plugins; properly process system and user plugins
[tt-rss.git] / classes / plugin.php
CommitLineData
5a0e0392
AD
1<?php
2class Plugin {
3 private $link;
4 private $host;
5
d2a421e3 6 function init($host) {
5a0e0392
AD
7 $this->link = $host->get_link();
8 $this->host = $host;
9 }
d2a421e3
AD
10
11 function about() {
12 // version, name, description, author, is_system
13 return array(1.0, "plugin", "No description", "No author", false);
14 }
15
16 function get_js() {
17 return "";
18 }
19
20 function get_prefs_js() {
21 return "";
22 }
5a0e0392
AD
23}
24?>