// +---------------------------------------------------------------------------+ // | An absolute filesystem path to our webapp/config.php script. | // +---------------------------------------------------------------------------+ require_once('/home/www/kiu.ac.jp/webapps/about/access/config.php'); // +---------------------------------------------------------------------------+ // | An absolute filesystem path to the mojavi/mojavi.php script. | // +---------------------------------------------------------------------------+ require_once('/home/www/kiu.ac.jp/mojavi/mojavi.php'); // +---------------------------------------------------------------------------+ // | Create our controller. For this file we're going to use a front | // | controller pattern. This pattern allows us to specify module and action | // | GET/POST parameters and it automatically detects them and finds the | // | expected action. | // +---------------------------------------------------------------------------+ $controller = Controller::newInstance('FrontWebController'); // +---------------------------------------------------------------------------+ // | Dispatch our request. | // +---------------------------------------------------------------------------+ $controller->dispatch();