亚洲啪啪综合av一区|国产精品九九免费视频|午夜女成人精品视频在线|国产一级a爱做片免费看|人妻熟人av一区二区三区|国产成人永久免费公开视频|免费一级毛片在线播放放视频|亚洲欧美激情精品一区二区三区

Smarty Error: Unable to load template file 'Home/news.htm'

47.                  $this->addfuncs();
48.                  $this->displayed TRUE;
49.                  if($GLOBALS['G_SP']['view']['debugging'] && SP_DEBUG)$this->engine->debugging TRUE;
50.                  $this->engine->display($tplname);
51.          } catch (Exception $e) {
52.              spError$GLOBALS['G_SP']['view']['engine_name']. ' Error: '.$e->getMessage() );
53.          }
54.      }
55.      
56.      /**
57.       注冊視圖函數(shù)
159.              $tplname $tpl.'/'.$tplname;
160.              //echo $tplname; die();
161.          }
162. 
163.          if(TRUE == $GLOBALS['G_SP']['view']['enabled']){
164.              $this->v->display($tplname);
165.          }else{
166.              extract($this->__template_vals);
167.              require($tplname);
168.          }
169.          if( TRUE != $output )return ob_get_clean();
304.              $this->total_page $total_page;
305.          }else{
306.              $this->total_page 0;
307.          }
308.          //輸出模板
309.          $this->display('news.htm');
310.      }
311.      
312.      /**
313.       新聞信息頁
314.       */
16.      if(!is_object($handle_controller) || !method_exists($handle_controller$__action)){
17.          eval($GLOBALS['G_SP']["dispatcher_error"]);
18.          exit;
19.      }
20.      // 路由并執(zhí)行用戶代碼
21.      $handle_controller->$__action();
22.      // 控制器程序運(yùn)行完畢,進(jìn)行模板的自動輸出
23.      if(FALSE != $GLOBALS['G_SP']['view']['auto_display']){
24.          $__tplname $__controller.$GLOBALS['G_SP']['view']['auto_display_sep'].
25.                  $__action.$GLOBALS['G_SP']['view']['auto_display_suffix']; // 拼裝模板路徑
26.          $handle_controller->auto_display($__tplname);
13.  //加載配置文件
14.  require(APP_PATH.'/data/config.php');
15.  //加載框架核心
16.  require(SP_PATH.'/SpeedPHP.php');
17.  //執(zhí)行應(yīng)用
18.  spRun();