I'm trying to create a dynamic menu by adding variables in every controller. Each controller will hold its own links which will be generated in the default template ( default.ctp ). The thing where I am stuck right now is that I have no clue how to get all the controllers as an object so I can retrieve the data right away. I do know how to get all the names.
To get the names I used;
App::objects('Controller');
Beside that, I'm using cakephp 2.5.1 :)