added the webui to the tarball

This commit is contained in:
SJ
2012-02-08 23:14:28 +01:00
parent 79cdeed1b6
commit 1211e9a39c
272 changed files with 26456 additions and 11 deletions

25
webui/system/registry.php Normal file
View File

@ -0,0 +1,25 @@
<?php
class Registry {
static private $data = array();
static public function get($key) {
return (isset(self::$data[$key]) ? self::$data[$key] : NULL);
}
static public function set($key, $value) {
self::$data[$key] = $value;
}
static public function has($key) {
return isset(self::$data[$key]);
}
}
?>