]> git.wh0rd.org Git - tt-rss.git/blob - classes/plugin.php
more work on user-selectable plugins; properly process system and user plugins
[tt-rss.git] / classes / plugin.php
1 <?php
2 class Plugin {
3         private $link;
4         private $host;
5
6         function init($host) {
7                 $this->link = $host->get_link();
8                 $this->host = $host;
9         }
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         }
23 }
24 ?>