2012-12-23 12:29:16 +01:00
|
|
|
<?php
|
2017-05-23 20:16:30 +02:00
|
|
|
abstract class Plugin {
|
2013-04-19 15:26:22 +02:00
|
|
|
const API_VERSION_COMPAT = 1;
|
|
|
|
|
2017-05-23 20:16:30 +02:00
|
|
|
abstract function init($host);
|
2012-12-25 07:02:08 +01:00
|
|
|
|
2017-05-23 20:16:30 +02:00
|
|
|
abstract function about();
|
|
|
|
// return array(1.0, "plugin", "No description", "No author", false);
|
2012-12-25 07:02:08 +01:00
|
|
|
|
2016-01-26 09:45:47 +01:00
|
|
|
function flags() {
|
|
|
|
/* associative array, possible keys:
|
|
|
|
needs_curl = boolean
|
|
|
|
*/
|
|
|
|
return array();
|
|
|
|
}
|
|
|
|
|
2017-04-26 14:29:22 +02:00
|
|
|
/**
|
|
|
|
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
|
|
|
|
*/
|
2017-02-10 14:04:28 +01:00
|
|
|
function is_public_method($method) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-12-25 07:02:08 +01:00
|
|
|
function get_js() {
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
|
|
|
function get_prefs_js() {
|
|
|
|
return "";
|
|
|
|
}
|
2013-04-19 15:26:22 +02:00
|
|
|
|
|
|
|
function api_version() {
|
|
|
|
return Plugin::API_VERSION_COMPAT;
|
|
|
|
}
|
2017-04-26 19:24:18 +02:00
|
|
|
}
|