html->link() and html tags
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 |
From: kicaj <ki...@kdev.pl>
Date: Wed, 4 Nov 2009 02:23:28 -0800 (PST)
Local: Wed, Nov 4 2009 9:23 pm
Subject: html->link() and html tags
I must build link like this:
<a href="#"><span>text</span></a>
How?
I using: $html->link('<span>'. __('text', true) .'</span>'), '#'); but
this is not works!
You must Sign in before you can post messages.
You do not have the permission required to post.
|
 |
From: John Andersen <j.andersen...@gmail.com>
Date: Wed, 4 Nov 2009 02:39:11 -0800 (PST)
Local: Wed, Nov 4 2009 9:39 pm
Subject: Re: html->link() and html tags
Add array('escape'=>false) to your link, so that your html code
<span></span> is not turned into html entities
If it doesn't help, please show the html of your created link!
Enjoy,
John
On Nov 4, 12:23 pm, kicaj <ki...@kdev.pl> wrote:
> I must build link like this:
> <a href="#"><span>text</span></a>
> How?
> I using: $html->link('<span>'. __('text', true) .'</span>'), '#'); but
> this is not works!
You must Sign in before you can post messages.
You do not have the permission required to post.
|
 |
From: Alexandru Ciobanu <ics.cake...@gmail.com>
Date: Wed, 04 Nov 2009 12:41:57 +0200
Local: Wed, Nov 4 2009 9:41 pm
Subject: Re: html->link() and html tags
On 11/4/2009 12:23 PM, kicaj wrote: > $html->link('<span>'. __('text', true) .'</span>'), '#');
- you're not echoing this; - you have a syntax error there; - you're escaping the link title; For CakePHP 1.2 use: echo $html->link('<span>'. __('text', true) .'</span>', '#', array(), false, false); For CakePHP 1.3 use: echo $html->link('<span>'. __('text', true) .'</span>', '#', array('escape' => false), false); http://api.cakephp.org/class/html-helper#method-HtmlHelperlink
You must Sign in before you can post messages.
You do not have the permission required to post.
|
 |
From: kicaj <ki...@kdev.pl>
Date: Wed, 4 Nov 2009 06:31:25 -0800 (PST)
Local: Thurs, Nov 5 2009 1:31 am
Subject: Re: html->link() and html tags
Thanks guys!
On Nov 4, 11:41 am, Alexandru Ciobanu <ics.cake...@gmail.com> wrote:
> On 11/4/2009 12:23 PM, kicaj wrote:> $html->link('<span>'. __('text', true) .'</span>'), '#');
> - you're not echoing this;
> - you have a syntax error there;
> - you're escaping the link title;
> For CakePHP 1.2 use:
> echo $html->link('<span>'. __('text', true) .'</span>', '#', array(),
> false, false);
> For CakePHP 1.3 use:
> echo $html->link('<span>'. __('text', true) .'</span>', '#',
> array('escape' => false), false);
> http://api.cakephp.org/class/html-helper#method-HtmlHelperlink
You must Sign in before you can post messages.
You do not have the permission required to post.
|
|
|