Select Git revision
TestController.php
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();
}
}
?>