Skip to content
Snippets Groups Projects
Select Git revision
  • aa72efb204287848a56a74e90dd30553277c2abf
  • master default
2 results

Test.php

Blame
  • Forked from UNL Information Services / NMC-PHP-Framework
    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();
        }
    }
    
    ?>