Reputation: 573
Image link in the cakephp is not working
$this->Html->link(
$this->Html->image('image',array('class' => $class,
'id' =>'img_id' )), somelink, array('onclick' =>'jQuery(this).modal({width:600,height:400,left:120,top:100}).open(); return false;'),
array(),
array('escape'=>false));
it will output
<a href='link' onclick='jQuery(this).modal({width:600,height:400}).open(); return false;'> < img src='image_path' >
it is not escaping < and > even if i mention escape=>false, but i am not getting where i am missing?
Upvotes: 0
Views: 3299
Reputation: 2025
echo $this->Html->link(
$this->Html->image('image',array('class' => $class,
'id' =>'img_id' )), '#', array('escape'=>false, 'onclick' => 'jQuery(this).modal({width:600,height:400,left:120,top:100}).open(); return false;','class'=>'linkclass'));
Upvotes: 1
Reputation: 2761
You have too many arguements. Try this:
echo $this->Html->link(
$this->Html->image('image',array('class' => $class,
'id' =>'img_id' )), 'foo', array('escape'=>false, 'onclick' =>'jQuery(this).modal({width:600,height:400,left:120,top:100}).open(); return false;')
);
Upvotes: 2