Select Git revision
functions.inc.php
IndexController.php 380 B
<?php
class IndexController extends Nmc_Controller_Action
{
public function indexAction()
{
$out = new Application_View();
$out->addScriptPath(APPLICATION_PATH . DIRECTORY_SEPARATOR . 'views');
$out->page = 'login';
$out->tagline = '';
$out->clearSidebarModules();
echo $out->render('unlModernWrapper.xhtml');
}
}
?>