How can I add a dynamic header to all pages

2006-11-12 Thread devarz

How can I add a dynamic header to all pages?

If I create a header template I can include it in all views, but I
don't know how to go about including the data handling routine to all
the controllers.

Can I create a dedicated controller for this and let all other
controllers inherit from it? Or should I create a component handling
this logic?


--~--~-~--~~~---~--~~
 You received this message because you are subscribed to the Google Groups 
Cake PHP group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



Re: How can I add a dynamic header to all pages

2006-11-12 Thread mariano.iglesias

Why don't you mix it? Create a component that handles the logic to
obtain the data that should be available on all views. Then add that
component to $components in your AppController. Then, on the
beforeRender() method of your AppController interact with your
component and finally set the data for the views with $this-set().


--~--~-~--~~~---~--~~
 You received this message because you are subscribed to the Google Groups 
Cake PHP group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---