Re: Advice on menu setup

2015-10-20 Thread heavyKevy
Is the menu supposed to be displayed on every page? I gather that the menu is dynamically driven by data in the Db... That tells me that you should have a model for it. If it is to be included on every page, then I would load the menu model in the App Controller, probably in the beforeRender() me

Re: Advice on menu setup

2015-10-19 Thread Rob Maurer
Your existing menu likely is a series of elements each containing (link) elements, yes? Simply replace the ... with Html->link(...) ?>. A good place to do this is app/View/Layouts/default.ctp. -- Like Us on FaceBook https://www.facebook.com/CakePHP Find us on Twitter http://twitter.com/CakePH

Re: Advice on menu setup

2015-10-19 Thread Rob Maurer
Your existing menu is likely a series of elements with in them, yes? Replace the elements with Html->link() ?> calls. A good place to set this up is in app/View/Layouts/default.ctp. -Rob On Monday, October 19, 2015 at 3:41:44 AM UTC-4, Simon Bradley wrote: > > Hi > > I'm new to cakephp > > I

Advice on menu setup

2015-10-19 Thread Simon Bradley
Hi I'm new to cakephp I'm using version 3 I've been working through an existing site i have built and trying to replicate it with cakephp I did a lot very quickly which is great but the menu is tricky Since this is a navigation bar at the top of every page i thought i might use an element T