菜单链接中的类

时间:2014-04-14 12:11:17

标签: cakephp cakephp-2.3

我有这个代码在我的应用程序中做一个菜单,我需要为这个添加一个类类型。

<?php
                                echo $this->Html->link('Home Page',
                                    array('controller'=>'pages','action'=>'home_page'),
                                    array('escape'=> false)).' | ';
                            ?>
你能帮帮我吗? 如何添加它?

2 个答案:

答案 0 :(得分:2)

请参阅HtmlHelper::link

<?php
echo $this->Html->link('Home Page',
    array('controller'=>'pages','action'=>'home_page'),
    array('class' => 'button', 'escape'=> false)
) . ' | ';

答案 1 :(得分:1)

试试这个

$this->Html->link('Home Page', array('controller'=>'pages','action'=>'home_page'),array('escape'=>false ,'class'=>'yourclass'));