2012-12-23 12:29:16 +01:00
|
|
|
<?php
|
|
|
|
class Plugin {
|
|
|
|
private $link;
|
|
|
|
private $host;
|
|
|
|
|
2012-12-25 07:02:08 +01:00
|
|
|
function init($host) {
|
2012-12-23 12:29:16 +01:00
|
|
|
$this->link = $host->get_link();
|
|
|
|
$this->host = $host;
|
|
|
|
}
|
2012-12-25 07:02:08 +01:00
|
|
|
|
|
|
|
function about() {
|
|
|
|
// version, name, description, author, is_system
|
|
|
|
return array(1.0, "plugin", "No description", "No author", false);
|
|
|
|
}
|
|
|
|
|
|
|
|
function get_js() {
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
|
|
|
function get_prefs_js() {
|
|
|
|
return "";
|
|
|
|
}
|
2012-12-23 12:29:16 +01:00
|
|
|
}
|
|
|
|
?>
|