eventful-cakephp
eventful-cakephp copied to clipboard
Event-driven programming for CakePHP
Results
1
eventful-cakephp issues
Sort by
recently updated
recently updated
newest added
In the file plugins/eventful/vendors/startup.php, the code is currently shown as: App::import('File', APP . 'app_model_events.php'); App::import('File', APP . 'app_controller_events.php'); but should be written as: App::import('File','AppModelEvents',false,array(), APP . 'app_model_events.php'); App::import('File','AppControllerEvents',false,array(), APP ....