* @version 0.5.2 * @package Katharsis */ abstract class Katharsis_Controller_Plugin_Abstract { public function __construct() { $this->_con = Katharsis_DatabaseConnector::getConnection(); } /** * Overwrite this method, if you want something to be processed * _before_ the controller is called * * @return void */ public function preController() { } /** * Overwrite this method, if you want something to be processed * _after_ the controller was called * * @return void */ public function postController() { } }