我目前正在尝试使用cakephp在php中创建自己的小型CMS。因此,应该很容易修改网站。首先,我不是一个网络程序员,这只是为了空闲时间。
我有一个控制器按钮,一个按钮可以有多个类别。 所以我试图将其加载到default.ctp中,以便为每个页面加载此菜单。
default.ctp代码:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>
<?php __('eg'); ?>
<?php echo $title_for_layout; ?>
</title>
<?php
echo $this->Html->css('cake.generic.style');
echo $scripts_for_layout;
?>
</head>
<body>
<div class="wrapper">
<div class="header">
<h1>Electro Geers Bvba</h1>
</div>
<div id="navMenu">
<?php
foreach ($buttons as $button) {
echo '<ul>';
echo '<li><a href="' . h($button['Button']['naam']) . '.html">' . h($button['Button']['naam']) . '</a>';
if (!empty($button['Category'])) {
echo'<ul>';
foreach ($button['Category'] as $category) {
echo '<li><a href="' . $category['naam'] . '.html">' . $category['naam'] . '</a></li>';
}
echo'</ul>';
}
echo '</li>';
echo '</ul>';
}
?>
<br class="clearFloat" />
</div>
<div class="contents">
<h3>Sectionale poorten en Hekwerken</h3>
<?php echo $content_for_layout; ?>
</div>
<div class="footer">
Copyright © 2012 - 2017
</div>
</div>
</body>
我知道cakephp normaly probaly不应该像这样使用但我想知道它是否可能?如何将按钮名称加载到default.ctp?
我目前收到此错误:
Notice (8): Undefined variable: buttons [APP\View\Layouts\default.ctp, line 20]
警告(2):为foreach()[APP \ View \ Layouts \ default.ctp,第20行]提供的参数无效
答案 0 :(得分:3)
在AppController中:
$this->loadModel('Button');
$buttons = $this->Button->find('all');
$this->set(compact('buttons'));
这将导致每个页面查询buttons
表并将结果传递给视图,然后可以通过$buttons
变量访问该视图。
如果您要通过数据库处理菜单,我强烈建议您以某种形式查看缓存 - 可能不是每个页面强制执行此类数据库调用的最佳方法。
有很多选项,但我见过并喜欢的是将菜单保留在XML文件中 - 然后,只要你的buttons
被更新/编辑/添加/删除等等,更新XML文件。
答案 1 :(得分:1)
您也可以将div id =“navMenu”放入元素中,然后使用requestAction。请参阅Cake开发人员之一的链接。
http://mark-story.com/posts/view/how-using-requestaction-increased-performance-on-my-site