I've started to learn how to use the CakePHP framework for a part time job. And I decided to build one of my personal projects in this framework to get some practice on it.
I have some models I created using
Cake bake
command and I added the automated CRUD support (It adds to the controllervar $scaffold
for the all relevant actions. I want to edit these actions but I dont have a reference to the generated code. (As I said earlier, it adds the scaffolding member to the controller and that's it.) How can I edit these actions?I want to build my application in Hebrew, I need to change all the generated error messages and status to Hebrew (Also the ones generated in the scaffolding). How can I accomplish that?