active link helper allow for arrays in target params
This commit is contained in:
parent
28d5856908
commit
e868cfeaf4
|
@ -62,7 +62,12 @@ class ActiveLinkHelper extends Helper
|
||||||
}
|
}
|
||||||
foreach ($target as $targetKey => $targetValue) {
|
foreach ($target as $targetKey => $targetValue) {
|
||||||
if (is_array($targetValue)) {
|
if (is_array($targetValue)) {
|
||||||
return 'test';
|
if (!in_array($currentUrl[$targetKey], $targetValue)) {
|
||||||
|
return $this->Html->link($title, $url, $options);
|
||||||
|
}
|
||||||
|
$options['class'] = $this->_addClass($options);
|
||||||
|
|
||||||
|
return $this->Html->link($title, $url, $options);
|
||||||
}
|
}
|
||||||
if (!array_key_exists($targetKey, $currentUrl) || $targetValue != $currentUrl[$targetKey]) {
|
if (!array_key_exists($targetKey, $currentUrl) || $targetValue != $currentUrl[$targetKey]) {
|
||||||
return $this->Html->link($title, $url, $options);
|
return $this->Html->link($title, $url, $options);
|
||||||
|
|
Loading…
Reference in New Issue