feedprefs/init.php

26 lines
328 B
PHP
Raw Normal View History

2019-05-01 18:24:45 +02:00
<?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;
}
}
?>