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


PHP obj::getSystemList方法代码示例

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


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

示例1: footer

 private function footer()
 {
     $info_array = $this->obj_shopnc_info->getSystemList();
     $this->output('info_array', $info_array);
     $this->showpage('footer');
     /*访问记录*/
     //$input_param['ip'] = $this->agent_ip; 			//ip
     //$input_param['ip_area'] = "null";      			//来源地区
     //$input_param['visit_url'] = $this->cur_url;		//访问地址
     //$input_param['source_url'] = $this->refer_url;	//来源地址
     //$input_param['visit_system'] = $this->obj_shop_visit->getOS($_SERVER['HTTP_USER_AGENT']);//访问系统
     //$this->obj_shop_visit->addVisit($input_param);
 }
开发者ID:jn7163,项目名称:ShopNC,代码行数:13,代码来源:footer.php

示例2: showInfo

 private function showInfo()
 {
     /*底部其他信息,侧边栏显示*/
     $info_id = intval($this->_input['info_id']);
     if ($info_id == 0) {
         header("Location:?info_id=1");
         exit;
     }
     $foot_array = $this->obj_shopnc_info->getSystemList();
     $this->output('foot_array', $foot_array);
     $info_array = $this->obj_shopnc_info->getSystemInfo(array('info_id' => intval($this->_input['info_id'])));
     $this->output('article_array', $info_array);
     $this->shopshowpage("shop_info");
 }
开发者ID:jn7163,项目名称:ShopNC,代码行数:14,代码来源:shop_info.php

示例3: showFooter

 /**
  * 聚合底部文件
  *
  */
 private function showFooter()
 {
     /*店铺分类*/
     include BasePath . "/share/shop_class_show.php";
     if (is_array($node_cache)) {
         $parent_array = array();
         foreach ($node_cache as $node) {
             if ($node['parentId'] == 0 && $node['iffb'] == 1) {
                 $parent_array[] = $node;
             }
         }
         $i = 0;
         $node_array = array();
         foreach ($parent_array as $parent) {
             $node_array[$i] = $parent;
             foreach ($node_cache as $node) {
                 if ($parent['id'] == $node['parentId'] && $node['iffb'] == 1) {
                     $node_array[$i]['sub_array'][] = $node;
                 }
             }
             $i++;
         }
         $this->output('node_array', $node_array);
     }
     /*底部用户指南类文章*/
     $article_array = $this->obj_article->getArticleList('', '');
     foreach ($article_array as $k => $v) {
         if (in_array($v['arc_class'], array(4, 5, 6))) {
             if (count($class_array[$v['arc_class']]) < 3) {
                 $class_array[$v['arc_class']][] = $v;
             }
         }
     }
     /*取文章*/
     $this->output('artclass_array', $class_array);
     /*底部信息*/
     $info_array = $this->obj_shopnc_info->getSystemList();
     $this->output('info_array', $info_array);
     $this->showpage("footer");
 }
开发者ID:jn7163,项目名称:ShopNC,代码行数:44,代码来源:shop_footer.php


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