Hey all,

Our CakePHP CMS is growing in size and some of the controllers load as
much as 19-20 helpers each, even when all of them are not required.
There are few controller actions which require max of 6-7 helpers at
max. So in order to make CMS more fast, I was thinking it'll be better
to load helpers only when needed.

I know App::import() what'll be better?

1. To import helper in controller action like this:
App::import('Helper', 'AssetsHelper');
$assets = new AssetsHelper();
$this->set('asset', $asset);

or

2. Loading helper like above in the view itself.

Please suggest. Thanks a lot.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to 
cake-php+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to