summaryrefslogtreecommitdiff
path: root/classes/plugin.php
blob: 5939d51c0c61345771ae8ca5e1cd5f31a1a9c612 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?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();
	}

	/**
	 * @SuppressWarnings(PHPMD.UnusedFormalParameter)
	 */
	function is_public_method($method) {
		return false;
	}

	function get_js() {
		return "";
	}

	function get_prefs_js() {
		return "";
	}

	function api_version() {
		return Plugin::API_VERSION_COMPAT;
	}
}