* @copyright 2012 Jurian Sluiman. * @license http://www.opensource.org/licenses/bsd-license.php BSD License * @link http://zf-commons.github.com */ namespace ZfcAdmin\Controller; use Zend\Mvc\Controller\AbstractActionController; /** * Placeholder controller * * This controller is just here in case you have not defined a controller * behind the 'admin' route yourself. If you haven't, you would otherwise * get a 404: Page not found error. * * If you want to override this controller (and action), create a module and * put this in the module configuration: * * * array( * 'routes' => array( * 'zfcadmin' => array( * 'options' => array( * 'defaults' => array( * 'controller' => 'MyFoo\Controller\OtherController', * 'action' => 'custom', * ), * ), * ), * ), * ), * ); * * * @package ZfcAdmin * @subpackage Controller */ class AdminController extends AbstractActionController { }