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:
11
classes/plugin.php
Normal file
11
classes/plugin.php
Normal file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
class Plugin {
|
||||
private $link;
|
||||
private $host;
|
||||
|
||||
function __construct($host) {
|
||||
$this->link = $host->get_link();
|
||||
$this->host = $host;
|
||||
}
|
||||
}
|
||||
?>
|
||||
Reference in New Issue
Block a user