我有一个类似于这个问题的问题
我的 default.ctp 文件中有一个页面,我想在其中添加“活动”类的链接。我如何识别页面的当前 url,然后在链接上应用该类.. 我也遵循了那里的答案
$url = $this->Html->url('INPUT_THE_URL') ;
$active = $this->request->here == $url? true: false;
我不知道如何在我的代码中执行此操作.. 抱歉问我是 cakephp 的新手 .. 这是我的代码
**default.ctp file**
<li>
<?php echo $this->Html->link('Dashboard', array('controller'=>'users','action' => 'controlpanel'), array('title' => 'Dashboard','class' => 'shortcut-dashboard'));?></li>
<li> <?php echo $this->Html->link('Contacts', array('controller'=>'contacts','action' => 'index'), array('title' => 'Contacts','class' => 'shortcut-contacts'));?></li>
我想像这样添加一个带有li的类
<li class = 'active''>