active link helper allow for arrays in target params

This commit is contained in:
Brandon Shipley 2025-03-29 01:47:07 -07:00
parent 28d5856908
commit e868cfeaf4
Signed by: bmfs
GPG Key ID: 14E38571D8BB0DE4
1 changed files with 6 additions and 1 deletions

View File

@ -62,7 +62,12 @@ class ActiveLinkHelper extends Helper
}
foreach ($target as $targetKey => $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]) {
return $this->Html->link($title, $url, $options);