Skip to content
Snippets Groups Projects
Select Git revision
  • master
  • gh-pages
  • v2.1.0
  • v2.0.1
  • v2.0.0
  • v1.4.0
  • v1.3.0
  • v1.2.2
  • v1.2.1
  • v1.2.0
  • v1.1.0
  • v1.0.1
  • v1.0.0
13 results

hooks.php

Blame
  • IndexController.php 423 B
    <?php
    
    class IndexController extends Nmc_Controller_Action
    {
    
        public function indexAction()
        {
            $in = new Zend_Filter_Input($this->_action->getParams());
            $out = new Nmc_View();
            $out->addScriptPath(APPLICATION_PATH . DIRECTORY_SEPARATOR . 'views');
            $out->page = 'login';
            $out->assign('title', 'Curriculum Action Request');
    
            echo $out->render('index.xhtml');
        }
    
    }
    
    ?>