| 3 |
// $Id$ |
// $Id$ |
| 4 |
// ------------------------------------------------------------------------------- |
// ------------------------------------------------------------------------------- |
| 5 |
// $Log$ |
// $Log$ |
| 6 |
|
// Revision 1.3 2002/12/19 06:17:32 joko |
| 7 |
|
// + database, smarty, and langtext (lt) now gets initialized here (on Site startup) |
| 8 |
|
// |
| 9 |
// Revision 1.2 2002/12/13 09:17:41 joko |
// Revision 1.2 2002/12/13 09:17:41 joko |
| 10 |
// + function getLastRequest |
// + function getLastRequest |
| 11 |
// + function cacheRequest |
// + function cacheRequest |
| 63 |
$this->_init_logger(); |
$this->_init_logger(); |
| 64 |
$this->_init_helpers(); |
$this->_init_helpers(); |
| 65 |
$this->_init_application(); |
$this->_init_application(); |
| 66 |
//$this->_init_database(); |
$this->_init_database(); |
| 67 |
|
$this->_init_smarty(); |
| 68 |
|
$this->_init_lt(); |
| 69 |
} |
} |
| 70 |
|
|
| 71 |
// Dispatchers for all subobjects |
// Dispatchers for all subobjects |
| 112 |
function &loadPage($a) { |
function &loadPage($a) { |
| 113 |
return $this->loader->loadPage($a); |
return $this->loader->loadPage($a); |
| 114 |
} |
} |
| 115 |
|
function &loadTemplate($a, $b = array(), $c = "") { |
| 116 |
|
return $this->loader->loadTemplate($a, $b, $c); |
| 117 |
|
} |
| 118 |
|
|
| 119 |
// dispatchers for Http |
// dispatchers for Http |
| 120 |
function &redirect($a) { |
function &redirect($a) { |