I need a bit of feedback to make sure I'm not completely missing the point of CakePHP/MVC.
I'm designing a mini-cms in CakePHP--essentially a photo album. I'm looking to have a standard, boiler-plate drop down menu on every page. Naturally, the menu needs to be dynamic as the user deletes and adds albums.
My goal: Build something that moves in the opposite direction of View::actionRequest() (ie, instead of view calling back to the controller, have the controller push a set variable to the View class before it renders.) My understanding is that View::requestAction() is not very graceful and is quite slow.
This is my model for the table containing the menu keywords. app/Model/ModelItem.php
class MenuItem extends AppModel {
public function buildMainMenu() {
return $this->find('all');
}
}
Since I want it everywhere, I put the call in the AppController
class AppController extends Controller {
public function beforeFilter() {
$this->loadModel('MenuItem');
$this->set('mainMenuItems',$this->MenuItem->buildMainMenu());
}
}
And this is an element that gets dumped into the top of my default layout for the CSS
- Element File: app/View/Element/navigation.ctp
- Layout: app/View/Element/Layout/default.ctp
<ul id="navigation">
<?php
foreach($mainMenuItems as $item) {
echo "<li>".$item['MenuItem']['name']."</li>";
}
?>
</ul>
I end up with a lovely, bullet list of all the items in the table. Am I completely mucking this up? Do I have it all wrong? I have no idea.