当前位置: 首页>>代码示例>>PHP>>正文


PHP DJClassifiedsSEO::lookup方法代码示例

本文整理汇总了PHP中DJClassifiedsSEO::lookup方法的典型用法代码示例。如果您正苦于以下问题:PHP DJClassifiedsSEO::lookup方法的具体用法?PHP DJClassifiedsSEO::lookup怎么用?PHP DJClassifiedsSEO::lookup使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在DJClassifiedsSEO的用法示例。


在下文中一共展示了DJClassifiedsSEO::lookup方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: _findItem

 protected static function _findItem($needles = null)
 {
     $app = JFactory::getApplication();
     $menus = $app->getMenu('site');
     // Prepare the reverse lookup array.
     if (self::$lookup === null) {
         self::$lookup = array();
         $component = JComponentHelper::getComponent('com_djclassifieds');
         $items = $menus->getItems('component_id', $component->id);
         if (count($items)) {
             foreach ($items as $item) {
                 if (isset($item->query) && isset($item->query['view'])) {
                     $parameter = 'id';
                     if ($item->query['view'] == 'items') {
                         $parameter = 'cid';
                     }
                     $view = $item->query['view'];
                     if (isset($item->query['layout'])) {
                         if ($item->query['layout'] == 'blog') {
                             $view = $view . "_blog";
                         } elseif ($item->query['layout'] == 'favourites') {
                             $view = $view . "_favourites";
                         }
                     }
                     if (isset($item->query[$parameter])) {
                         self::$lookup[$view][$item->query[$parameter]] = $item->id;
                     } else {
                         if (!isset(self::$lookup[$view])) {
                             self::$lookup[$view] = array($item->id);
                         }
                     }
                 }
             }
         }
     }
     //echo '<pre>';print_r($needles);print_R(self::$lookup);die();
     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 {
                     if (isset(self::$lookup[$view . '_blog'][(int) $id])) {
                         return self::$lookup[$view . '_blog'][(int) $id];
                     }
                 }
             }
             //}
         }
         if (isset($needles['items']) || isset($needles['items'])) {
             if (isset(self::$lookup['categories'][0])) {
                 return self::$lookup['categories'][0];
             }
         }
     }
     //else {
     $active = $menus->getActive();
     if ($active && $active->component == 'com_djclassifieds') {
         return $active->id;
     } else {
         $default = $menus->getDefault();
         return $default->id;
     }
     //}
     return null;
 }
开发者ID:kidaa30,项目名称:lojinha,代码行数:67,代码来源:djseo.php


注:本文中的DJClassifiedsSEO::lookup方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。