script link img cakephp3 cake cakephp cakephp-1.3 html-helper

link - Enlace HTML de CakePHP



this-> html-> js (2)

Deshabilita la opción de escape en tu código de enlace, así:

<li class="iAdd"> <?php echo $this->Html->link( ''<span>Add Cuisine</span>'', array(''action'' => ''add''), array(''escape'' => false) // This line will parse rather then output HTML ); ?> </li>

Estoy tratando de utilizar CakePHP HTML Linker para el siguiente código

<li class="iAdd"><a href="add"><span>Add Cuisine</span></a></li>

Dado que la etiqueta span debe estar dentro de la etiqueta a. no puedo obtener la salida como sea necesario ¿Alguna sugerencia sobre cómo hacerlo?


siempre puedes usar html normal en enlaces:

$this->Html->link(''<span>''.h($text).''</span>'', array(''action''=>''add''), array(''escape''=>false));