Very useful CakePHP Code Snippets

1

A small collection of useful Cake Snippets for all projects made with Cake. First of all: Keep it DRY If you have several projects I recommend extending vendor classes. require_once(VENDORS.’my_model.php’); class AppModel extends MyModel {} Same for AppController, AppHelper, bootstrap…