1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-23 11:46:37 +02:00
ttrss/classes/plugin.php
Andrew Dolgov 41245888f1 only stop inline feed updates with open_basedir enabled if there are any plugins that require CURL enabled
add plugin->flags() returning array with additional plugin information, currently only CURL requirement (optional)
2016-01-26 11:45:47 +03:00

38 lines
576 B
PHP

<?php
class Plugin {
private $dbh;
private $host;
const API_VERSION_COMPAT = 1;
function init($host) {
$this->dbh = $host->get_dbh();
$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;
}
}
?>