/ */ class Error_Module extends P4Cms_Module_Integration { /** * Reconfigure the error handler plugin. */ public static function load() { $front = Zend_Controller_Front::getInstance(); $front->registerPlugin( new Zend_Controller_Plugin_ErrorHandler( array( 'module' => 'error', 'controller' => 'index', 'action' => 'error', ) ), 100 ); } }