summaryrefslogtreecommitdiff
path: root/classes/plugin.php
blob: 59cb64f53380ca56182565b64b308e58a455e567 (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php
class Plugin {
	private $link;
	private $host;

	function __construct($host) {
		$this->link = $host->get_link();
		$this->host = $host;
	}
}
?>