index.php
401 Bytes
<?php
// define our application directory
define ('OEDL_DIR', '/var/www/localhost/htdocs/newhome/');
// define smarty lib directory
define ('SAVANT_DIR', '/usr/share/php/Savant2/');
// initialize gettext
require_once (OEDL_DIR . 'libs/init_gettext.php');
// get oedl_controller
require_once (OEDL_DIR . 'libs/oedl_ctrl.php');
$oedl =& new OEDLController;
$oedl->doRequest ($_REQUEST);
?>