]> git.wh0rd.org - tt-rss.git/blame - classes/plugin.php
remove $link
[tt-rss.git] / classes / plugin.php
CommitLineData
5a0e0392
AD
1<?php
2class Plugin {
6322ac79 3 private $dbh;
5a0e0392
AD
4 private $host;
5
d2a421e3 6 function init($host) {
6322ac79 7 $this->dbh = $host->get_dbh();
5a0e0392
AD
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?>