cakephp default.ctp是哪个控制器?

时间:2012-08-17 17:50:17

标签: php cakephp

我有一个在cakephp 2中开发的网站,我想在我的default.ctp中有一个菜单,其中包含从数据库中删除的一些元素。 如何更改我必须使用的控制器元素?我必须在哪里提出我的疑问?因为如果我进入模型很容易但是进入default.ctp?我怎样才能做到这一点? 这是我的default.ctp:

<body>
        <div class="content">
            <div id="navigation">
                <ul>


                    <?php
                        if (!empty($authUser)) {
                        ?>
                        <li><?php echo $this->Html->link('I want to change this',   array('controller' => 'ingredients',    'action' => 'index')); ?></li>
                        <li><?php echo $this->Html->link('I want to change this',       array('controller' => 'brands',         'action' => 'index')); ?></li>
                        <li><?php echo $this->Html->link('I want to change this',   array('controller' => 'manufacturers',  'action' => 'index')); ?></li>
                    <?php
                            // $is_logged from UsersController->beforeFilter
                            echo $this->element ('header_menu_logged');
                        } else {
                            ?>
                            <li><?php echo $this->Html->link('Competizioni',        array('controller' => 'brands',         'action' => 'index')); ?></li>
                            <li><?php echo $this->Html->link('Cerca',   array('controller' => 'manufacturers',  'action' => 'index')); ?></li>
                            <?php
                            // $current_model
                            echo $this->element ('header_menu', array('selected' => 'Pippo'));
                        }
                    ?>
                </ul>
            </div>
            <div class="page">
                <?php
                // messaggi di stato per le azioni

                if (empty($flash_element)) {
                    $flash_element = $this->Session->read('flash_element');
                    if (empty($flash_element)) {
                        $flash_element = 'default';
                    }
                }

                // echo '>'.$flash_element.'<';

                $auth_msg = $this->Session->flash('auth', array ('element' => 'flash_'.$flash_element));
                $flash_msg = $this->Session->flash('flash', array ('element' => 'flash_'.$flash_element));

                if (!empty($auth_msg)) {
                    echo $auth_msg;
                }

                if (!empty($flash_msg)) {
                    echo $flash_msg;
                }
                ?>

                <section><!--class="contents"-->
                <?php echo $content_for_layout; ?>
                </section>
            </div>
        </div>
    </body>

1 个答案:

答案 0 :(得分:4)

好吧,我建议您在$this->set('anyString', $varStringOfTheLink);beforeRender() appController.php中执行beforeFilter()

从那里查询,然后使用set()函数为视图设置变量。

然后在default.ctp中,您将能够使用$anyString

所以快速总结一下。在过滤器之前或渲染之前,在appController中执行查询,然后设置它以便视图可以使用它。 set()函数的第一个参数是您要在视图中使用的var的名称。只需输入一个$。第二个参数是您想要的变量的值。

//appController.php
function beforeFilter(){
    $myQueryVar = $this->Model->find('whateverIWant');
    $this->set('myLinkOne', $myQueryVar);
}

//layouts/default.ctp
echo $this->Html->link($myLinkOne,   array('controller' => 'ingredients',    'action' => 'index'));