Initial commit

This commit is contained in:
2019-05-01 18:24:45 +02:00
commit f88f84bc57
2 changed files with 65 additions and 0 deletions

25
init.php Normal file
View File

@ -0,0 +1,25 @@
<?php
class Feedprefs extends Plugin {
private $host;
function about() {
return array(0.0,
"Per feed preferences.",
"gilles@grandou.net");
}
function init($host) {
$this->host = $host;
}
function get_js() {
return file_get_contents(__DIR__ . "/init.js");
}
function api_version() {
return 2;
}
}
?>