本文整理汇总了PHP中CrowdfundingHelperRoute::lookup方法的典型用法代码示例。如果您正苦于以下问题:PHP CrowdfundingHelperRoute::lookup方法的具体用法?PHP CrowdfundingHelperRoute::lookup怎么用?PHP CrowdfundingHelperRoute::lookup使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CrowdfundingHelperRoute
的用法示例。
在下文中一共展示了CrowdfundingHelperRoute::lookup方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: findItem
protected static function findItem($needles = null)
{
$app = JFactory::getApplication();
$menus = $app->getMenu('site');
// Prepare the reverse lookup array.
// Collect all menu items and creat an array that contains
// the ID from the query string of the menu item as a key,
// and the menu item id (Itemid) as a value
// Example:
// array( "category" =>
// 1(id) => 100 (Itemid),
// 2(id) => 101 (Itemid)
// );
if (self::$lookup === null) {
self::$lookup = array();
$component = JComponentHelper::getComponent('com_crowdfunding');
$items = $menus->getItems('component_id', $component->id);
if ($items) {
foreach ($items as $item) {
if (isset($item->query) && isset($item->query['view'])) {
$view = $item->query['view'];
if (!isset(self::$lookup[$view])) {
self::$lookup[$view] = array();
}
if (isset($item->query['id'])) {
self::$lookup[$view][$item->query['id']] = $item->id;
} else {
// If it is a root element that have no a request parameter ID ( categories, authors ), we set 0 for an key
self::$lookup[$view][0] = $item->id;
}
}
}
}
}
if ($needles) {
foreach ($needles as $view => $ids) {
if (isset(self::$lookup[$view])) {
foreach ($ids as $id) {
if (isset(self::$lookup[$view][(int) $id])) {
return self::$lookup[$view][(int) $id];
}
}
}
}
} else {
$active = $menus->getActive();
if ($active) {
return $active->id;
}
}
return null;
}