Skip to content
Snippets Groups Projects
Select Git revision
  • 39547aa6942d31f73ab75b218bc060ec53f6a9e8
  • master default
  • develop
3 results

loan.py

Blame
  • Forked from Wayne Motycka / MyMovieLibrary
    Source project has a limited visibility.
    TestController.php 347 B
    <?php
    
    class TestController extends Nmc_Controller_Action
    {
        public function __construct()
        {
            //$this->_registerPlugin(new Nmc_Controller_Action_Plugin_Authorize());
            $this->_registerPlugin(new Nmc_Controller_Action_Plugin_Test());
        }
    
        public function indexAction()
        {
            $foo = new Nmc_XMPP_Core();
        }
    }
    
    ?>