1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 07:35:56 +00:00

add and check plugin base class

This commit is contained in:
Andrew Dolgov
2012-12-23 15:29:16 +04:00
parent 7252abe3ea
commit 5a0e03923f
11 changed files with 21 additions and 10 deletions

11
classes/plugin.php Normal file
View File

@@ -0,0 +1,11 @@
<?php
class Plugin {
private $link;
private $host;
function __construct($host) {
$this->link = $host->get_link();
$this->host = $host;
}
}
?>