vote up -1 vote down star
1

I have an unordered like that acts as my navigation and a large portion of it consists of category names that I store in my database. Because this navigation is outputted on every page I placed it in my layout. I unfortunately can't for the life of me figure out how to get an array retrieved from my database to pass to my layout.

$this->set('allCategories', $allCategories);

This line of code in my controller both in 'beforeFilter()' and 'index()' still doesn't allow me to use the $allCategories array in my layout.

The documentation tells me to use elements and while I setup a category element I still don't know how to pass my $allCategories array to it because it's called from the layout.

Should dynamic content not be served in a layout? I would hate to have to place this simple database query/list generator in every view...

UPDATE

And now I feel like an ass. All my problems went away after I added the view for index(). I assumed that since I was working in my layout first I didn't need to bother with normal views until after I got my layout working. I was quite wrong. So if you ever come across this problem again kids, add a view, even if it's an empty file.

flag

When you're a software developer, being an ass is the default setting :P – dr Hannibal Lecter May 4 at 17:20
Man, why does my most popular question earn me a -1 :( – TheLizardKing Nov 21 at 21:46

3 Answers

vote up 2 vote down check

Well, this sure as hell is working for me. I put $this->set('allCategories', $allCategories); anywhere and when I do debug($allCategories) in my layout it works as expected.

Try using the debug kit plugin to check your view variables. Something is amiss in your code.

link|flag
Are you in a view or a layout? Views work fine, it's a layout that is giving me jive. – TheLizardKing May 4 at 16:15
vote up 1 vote down

Your solution:

  1. Component fetch the data from the database
  2. in the beforeRenter() function in the AppController the component provide the fetched data to the $this->data variable
  3. In the helper the specified node in the $this->data variable is manipulated in order to create a valid html block /or whatever it’s required/
  4. Including the helper in the default layout or other one will provide the desired functionality on the site

A full article explaining this is located at: http://nik.chankov.net/2007/10/10/cakephp-and-layout-secret-of-data-passing-through/

link|flag
I did see this and while not overtly complicated I would of thought there'd be a simpler mechanic to do this... – TheLizardKing May 4 at 8:32
Yes it seems a bit to complicated for such an easy job but generally Cake is not designed to send dynamic content to a layout instead of a view. – Sander May 4 at 8:37
So not true. There is almost no difference between a layout and a view. They certainly share view variables. – dr Hannibal Lecter May 4 at 8:57
vote up 1 vote down

Okay, a few questions for you to try out:

  • did you try to pr($allCategories); in your controller to see if you get any results back
  • did you try to pr($allCategories); in the layout?

Elements are nice because they allow caching, but only after you get the code to work.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.