blob: 2d12eb698890b5f3f54cdf88312c11ee83edc890 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?php
require_once "class/controller.class.php";
/*
* Root-level controller for Scrott app. This object will delegate the page request to the
* appropriate controller or handle it with an error message page.
*/
class Root extends Controller
{
/*
* Controller implementation
*/
function handle($argv)
{
/* TODO */
}
}
?>
|