This repository has been archived on 2024-09-05. You can view files and clone it, but cannot push or open issues or pull requests.
shimmie2/core/requestcontext.class.php
shish df8efa475e start of requestcontext work
git-svn-id: file:///home/shish/svn/shimmie2/trunk@753 7f39781d-f577-437e-ae19-be835c7a54ca
2008-04-04 12:07:38 +00:00

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;
}
?>