(int) $catid, 'categories' => null ); //Find the itemid $itemid = WeblinksHelperRoute::_findItem($needles); $itemid = $itemid ? '&Itemid='.$itemid : ''; //Create the link $link = 'index.php?option=com_weblinks&view=weblink&id='. $id . '&catid='.$catid . $itemid; return $link; } function _findItem($needles) { static $items; if (!$items) { $component =& JComponentHelper::getComponent('com_weblinks'); $menu = &JSite::getMenu(); $items = $menu->getItems('componentid', $component->id); } if (!is_array($items)) { return null; } $match = null; foreach($needles as $needle => $id) { foreach($items as $item) { if ((@$item->query['view'] == $needle) && (@$item->query['id'] == $id)) { $match = $item->id; break; } } if(isset($match)) { break; } } return $match; } } ?>