22 lines
451 B
PHP
22 lines
451 B
PHP
<?php
|
|
|
|
define('HBC_File', 'index');
|
|
|
|
require '_inc.php';
|
|
|
|
try {
|
|
$main = RippingCluster_Main::instance();
|
|
RippingCluster_LogEntry::setLocalProgname('webui');
|
|
$smarty = $main->smarty();
|
|
|
|
$page = new RippingCluster_Page($smarty, $main->request());
|
|
if ($page->evaluate()) {
|
|
$smarty->display('index.tpl');
|
|
}
|
|
|
|
} catch (RippingCluster_Exception $e) {
|
|
die("Uncaught Exception: " . $e->getMessage());
|
|
}
|
|
|
|
?>
|