/usr/share/nginx/ext/platform/lib/inc/keke_tpl_class.php[ 213 ]
208 foreach ($files as $file) {
209 if (is_file(S_ROOT.$file.'.htm'))
210 return $file;
211 }
212 //return $tplname;
213 throw new keke_exception("Template[:template] not found", array('template' => $tplname));
214 }
215 static function template($name) {
216 global $_K;
217 $tpl = keke_tpl_class::tpl_exists ( $name );
218 $objfile = S_ROOT . 'data/tpl_c/' . str_replace ( '/', '_', $tpl ) . '.php';
-
/usr/share/nginx/ext/platform/index.php [ 142 ] » require ( arguments )
0
string(47) "/usr/share/nginx/ext/platform/control/goods.php"
137 $intService = db_factory::get_count("SELECT COUNT(*) as count2 FROM `".TABLEPRE."witkey_order` AS a LEFT JOIN ".TABLEPRE."witkey_order_detail AS b ON a.order_id = b.order_id LEFT JOIN ".TABLEPRE."witkey_service_order AS c ON b.order_id = c.order_id WHERE 1=1 and a.seller_uid = ".$gUid." and b.obj_type = 'service' and a.order_status ='seller_confirm' order by b.order_id desc"); 138 $intGy = db_factory::get_count("SELECT count(*) as count2 FROM `".TABLEPRE."witkey_service_order` as a LEFT JOIN ".TABLEPRE."witkey_order_detail as b ON a.order_id = b.order_id 139 LEFT JOIN ".TABLEPRE."witkey_order as c ON a.order_id = c.order_id 140 WHERE 1=1 and c.seller_uid= ".$gUid." and c.order_status!= 'close' and c.order_status ='seller_confirm' order by c.order_time desc"); 141 } 142 require 'control/' . $do . '.php'; 143 require $kekezu->_tpl_obj->template ( $do );
-
/usr/share/nginx/ext/platform/control/goods.php [ 94 ] » keke_tpl_class::template ( arguments )
0
string(25) "shop/goods/tpl/fopo/index"
89 $arrShowCustoms[$k]['data'] =unserialize($v['extdata']); 90 } 91 } 92 } 93 require S_ROOT . "/shop/" . $arrModelInfo['model_dir'] . "/control/index.php"; 94 require keke_tpl_class::template ( "shop/" . $arrModelInfo ['model_code'] . "/tpl/" . $_K ['template'] . "/index");die; 95 } 96 $_SESSION['spread'] = 'index.php?do=goods&id='.intval($id);
-
/usr/share/nginx/ext/platform/lib/inc/keke_tpl_class.php [ 217 ] » keke_tpl_class::tpl_exists ( arguments )
0
string(25) "shop/goods/tpl/fopo/index"
212 //return $tplname; 213 throw new keke_exception("Template[:template] not found", array('template' => $tplname)); 214 } 215 static function template($name) { 216 global $_K; 217 $tpl = keke_tpl_class::tpl_exists ( $name ); 218 $objfile = S_ROOT . 'data/tpl_c/' . str_replace ( '/', '_', $tpl ) . '.php'; 219 (! file_exists ( $objfile ) || ! TPL_CACHE) and keke_tpl_class::parse_template ( $tpl ); 220 return $objfile; 221 } 222 static function checkrefresh($tpl, $mktime) {