Skip to content
Snippets Groups Projects
Select Git revision
  • 72afbb6f9d83070bdf9edeb0cb2d78fa3ae75d7f
  • class default protected
2 results

GettingFamiliar.ipynb

Blame
  • Forked from Zeynep Hakguder / csce478
    Source project has a limited visibility.
    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');
        }
    
    }
    
    ?>