df8efa475e
git-svn-id: file:///home/shish/svn/shimmie2/trunk@753 7f39781d-f577-437e-ae19-be835c7a54ca
11 lines
168 B
PHP
11 lines
168 B
PHP
<?php
|
|
/*
|
|
* The context for a request, should be used instead of global variables
|
|
*/
|
|
class RequestContext {
|
|
var $database;
|
|
var $config;
|
|
var $user;
|
|
var $page;
|
|
}
|
|
?>
|