ttrss/classes/plugin.php

38 lines
576 B
PHP
Raw Normal View History

2012-12-23 12:29:16 +01:00
<?php
class Plugin {
2013-04-17 14:23:15 +02:00
private $dbh;
2012-12-23 12:29:16 +01:00
private $host;
const API_VERSION_COMPAT = 1;
function init($host) {
2013-04-17 14:23:15 +02:00
$this->dbh = $host->get_dbh();
2012-12-23 12:29:16 +01:00
$this->host = $host;
}
function about() {
// version, name, description, author, is_system
return array(1.0, "plugin", "No description", "No author", false);
}
function flags() {
/* associative array, possible keys:
needs_curl = boolean
*/
return array();
}
function get_js() {
return "";
}
function get_prefs_js() {
return "";
}
function api_version() {
return Plugin::API_VERSION_COMPAT;
}
2012-12-23 12:29:16 +01:00
}
?>