Skip to content
Snippets Groups Projects
Select Git revision
  • b9415805f55182bb9109cdec2ce0c20f699a1a52
  • hosted default
  • main
  • stand-alone
4 results

canvas_classes.py

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');
        }
    
    }
    
    ?>