Projekt

Obecné

Profil

Stáhnout (418 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1 6daefa8c Petr Lukašík
<?php
2
3
/**
4
 * A class that implements the plugin system
5
 *
6
 * $Id: Plugin.php,v 1.2 2005/06/16 14:40:12 chriskl Exp $
7
 */
8
9
class Plugin {
10
11
	var $tabname = null;
12
	var $config = null;
13
	var $name = null;
14
	
15
	/**
16
	 * Constructor
17
	 */
18
	function Plugin($name) {
19
		$this->name = $name;
20
		
21
		// Read in configuration
22
		if ($this->config !== null) {
23
			global $conf;
24
			include('./conf/' . $name . '.inc.php');			
25
		}
26
	}
27
28
}
29
30
?>