phpok.sys.php 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388
  1. <?php
  2. if(!function_exists("phpok"))
  3. {
  4. //标识串
  5. //vartext,数组,将合并到后台的参数调用中
  6. //格式如:array("id"=>1) 这样子的形式 或 cs=1,cid=1这样子
  7. function phpok($var,$vartext="")
  8. {
  9. if(!$var)
  10. {
  11. return false;
  12. }
  13. $app = sys_init();
  14. $app->load_lib("phpok");
  15. $app->phpok_lib->langid($_SESSION["sys_lang_id"]);
  16. $app->load_model("phpok");
  17. $app->phpok_m->langid($_SESSION["sys_lang_id"]);
  18. $rs = $app->phpok_m->get_one_sign($var);
  19. if(!$rs)
  20. {
  21. return false;
  22. }
  23. $in_var = array();
  24. if($rs["vartext"])
  25. {
  26. $varlist = explode(",",$rs["vartext"]);
  27. foreach($varlist AS $key=>$value)
  28. {
  29. $in_var[$value] = $app->trans_lib->safe($value);
  30. }
  31. }
  32. $app->phpok_lib->set_rs($rs);
  33. //合并传过来的数组
  34. if($vartext)
  35. {
  36. if(is_array($vartext) && count($vartext)>0)
  37. {
  38. $in_var = array_merge($in_var,$vartext);
  39. }
  40. else
  41. {
  42. $varlist = explode("&",$vartext);
  43. $v_list = array();
  44. foreach($varlist AS $key=>$value)
  45. {
  46. $v = explode("=",$value);
  47. $v_list[$v[0]] = $v[1];
  48. }
  49. $in_var = array_merge($in_var,$v_list);
  50. }
  51. }
  52. if(!$rs["typetext"])
  53. {
  54. return false;
  55. }
  56. $content = sys_eval($rs["typetext"],$in_var);
  57. $content = sys_format_content($content);//格式化内容代码信息
  58. return array("title"=>$rs["title"],"content"=>$content);
  59. }
  60. }
  61. //上下主题
  62. if(!function_exists("phpok_next_prev"))
  63. {
  64. //id:主题ID
  65. //cateid:主题所属分类ID,如果分类ID为0,将读取模块ID信息
  66. //pictype:关联的图片类型,不关联为空
  67. //num:读取数量
  68. function phpok_next_prev($id,$cateid=0,$pictype="",$num=1)
  69. {
  70. $app = sys_init();
  71. $app->load_model("np_model",true);
  72. $app->np_model->langid($_SESSION["sys_lang_id"]);
  73. $rs = array();
  74. $next_list = $app->np_model->get_next($id,$cateid,$pictype,$num);
  75. if($next_list)
  76. {
  77. $rs["next"] = $next_list;
  78. }
  79. $prev_list = $app->np_model->get_prev($id,$cateid,$pictype,$num);
  80. if($prev_list)
  81. {
  82. $rs["prev"] = $prev_list;
  83. }
  84. if($rs["next"] || $rs["prev"])
  85. {
  86. return $rs;
  87. }
  88. else
  89. {
  90. return false;
  91. }
  92. }
  93. }
  94. //读取语言包
  95. if(!function_exists("phpok_lang"))
  96. {
  97. function phpok_lang($format=true)
  98. {
  99. $app = sys_init();
  100. return $app->langconfig_m->get_all($format);
  101. }
  102. }
  103. //读取导航菜单
  104. //id:主题ID
  105. //cid:分类ID
  106. //mid:模块ID
  107. //在模板中,调用可以直接编写: <!-- run:$menulist = phpok_menu($id,$cid,$mid) -->
  108. if(!function_exists("phpok_menu"))
  109. {
  110. function phpok_menu($id=0,$cid=0,$mid=0)
  111. {
  112. }
  113. }
  114. //读取底部导航菜单
  115. if(!function_exists("phpok_nav"))
  116. {
  117. function phpok_nav()
  118. {
  119. }
  120. }
  121. //调用搜索支持的模块
  122. if(!function_exists("phpok_module"))
  123. {
  124. function phpok_module()
  125. {
  126. $app = sys_init();
  127. $app->load_model("module");
  128. return $app->module_m->get_all_module();
  129. }
  130. }
  131. //调用某个模块信息
  132. //sign 模块标识符
  133. if(!function_exists("phpok_m"))
  134. {
  135. function phpok_m($sign="")
  136. {
  137. if(!$sign)
  138. {
  139. return false;
  140. }
  141. $app = sys_init();
  142. $app->load_model("module");
  143. return $app->module_m->get_one_from_code($sign);
  144. }
  145. }
  146. //调用某个模块下的主题
  147. //ms 模块标识符
  148. //limit 数量
  149. //ifpic 0不需要 1需要
  150. //order_by 排序,支持类型,请登录官方网站查看相关帮助
  151. //attr:属性,仅支持 空,istop,isvouch,isbest
  152. if(!function_exists("phpok_m_list"))
  153. {
  154. function phpok_m_list($ms,$limit=10,$ifpic=0,$order_by="post_desc",$attr="")
  155. {
  156. //没有指定模块标识,返回为空!
  157. if(!$ms) return false;
  158. $app = sys_init();
  159. $app->load_lib("phpok");
  160. $app->phpok_lib->langid($_SESSION["sys_lang_id"]);
  161. $tmp_rs = array();
  162. $tmp_rs["pic_required"] = $ifpic;
  163. $tmp_rs["attr"] = $attr;
  164. $tmp_rs["maxcount"] = $limit;
  165. $app->phpok_lib->set_rs($tmp_rs);
  166. $in_var = array();
  167. $in_var["ms"] = $ms;
  168. $cache_key = "list_".md5("list:".serialize($in_var)."-phpok-".$order_by."-".$limit);
  169. $rslist = $app->cache_lib->cache_read($cache_key);
  170. if(!$rslist)
  171. {
  172. $rslist = $app->phpok_lib->list_sql($in_var,$limit,$order_by);
  173. if($rslist)
  174. {
  175. $app->cache_lib->cache_write($cache_key,$rslist);
  176. }
  177. }
  178. return $rslist;
  179. }
  180. }
  181. //调用某个分类下的主题
  182. //cs 分类标识符
  183. //limit 数量
  184. //ifpic 0不需要 1需要
  185. //order_by 排序,支持类型,请登录官方网站查看相关帮助
  186. //attr:属性,仅支持 空,istop,isvouch,isbest
  187. if(!function_exists("phpok_c_list"))
  188. {
  189. function phpok_c_list($cs,$limit=10,$ifpic=0,$order_by="post_desc",$attr="")
  190. {
  191. //没有指定模块标识,返回为空!
  192. if(!$cs) return false;
  193. $app = sys_init();
  194. $app->load_lib("phpok");
  195. $app->phpok_lib->langid($_SESSION["sys_lang_id"]);
  196. $tmp_rs = array();
  197. $tmp_rs["pic_required"] = $ifpic;
  198. $tmp_rs["attr"] = $attr;
  199. $tmp_rs["maxcount"] = $limit;
  200. $app->phpok_lib->set_rs($tmp_rs);
  201. $in_var = array();
  202. $in_var["cs"] = $cs;
  203. $cache_key = "list_".md5("list:".serialize($in_var)."-phpok-".$order_by."-".$limit);
  204. $rslist = $app->cache_lib->cache_read($cache_key);
  205. if(!$rslist)
  206. {
  207. $rslist = $app->phpok_lib->list_sql($in_var,$limit,$order_by);
  208. if($rslist)
  209. {
  210. $app->cache_lib->cache_write($cache_key,$rslist);
  211. }
  212. }
  213. return $rslist;
  214. }
  215. }
  216. //调用分类,显示两级
  217. //cid 当前分类ID
  218. //mid 当前模块ID,可以为空,适用于分类ID为空时使用
  219. if(!function_exists("phpok_catelist"))
  220. {
  221. function phpok_catelist($cid)
  222. {
  223. if(!$cid) return false;
  224. $app = sys_init();
  225. $app->load_lib("phpok");
  226. $app->phpok_lib->langid($_SESSION["sys_lang_id"]);
  227. $tmp_rs = array();
  228. $tmp_rs["maxcount"] = 999;
  229. $app->phpok_lib->set_rs($tmp_rs);
  230. $rs = $app->cate_m->get_one($cid);
  231. $in_var = array();
  232. $in_var["cid"] = $cid;
  233. $cache_key = "catelist_".md5("cate:".serialize($in_var)."-phpok-".$cid);
  234. $rslist = $app->cache_lib->cache_read($cache_key);
  235. if(!$rslist)
  236. {
  237. $rslist = $app->phpok_lib->cate_sql($in_var);
  238. if($rslist)
  239. {
  240. $app->cache_lib->cache_write($cache_key,$rslist);
  241. }
  242. }
  243. return $rslist;
  244. }
  245. }
  246. //调用一个主题
  247. //ts:内容标签,必填
  248. //ifpic:是否包括图片0不限制,1包含
  249. if(!function_exists("phpok_msg"))
  250. {
  251. function phpok_msg($ts,$ifpic=0,$attr="")
  252. {
  253. if(!$ts) return false;
  254. $app = sys_init();
  255. $app->load_lib("phpok");
  256. $app->phpok_lib->langid($_SESSION["sys_lang_id"]);
  257. $tmp_rs = array();
  258. $tmp_rs["pic_required"] = $ifpic;
  259. $tmp_rs["attr"] = $attr;
  260. $tmp_rs["maxcount"] = 1;
  261. $app->phpok_lib->set_rs($tmp_rs);
  262. $in_var = array();
  263. $in_var["ts"] = $ts;
  264. $cache_key = "msg_".md5("list:".serialize($in_var)."-phpok");
  265. $rslist = $app->cache_lib->cache_read($cache_key);
  266. if(!$rslist)
  267. {
  268. $rslist = $app->phpok_lib->list_sql($in_var,1);
  269. if($rslist)
  270. {
  271. $app->cache_lib->cache_write($cache_key,$rslist);
  272. }
  273. }
  274. return $rslist;
  275. }
  276. }
  277. //简单分类列表,即不判断是否有父级分类,也不判断是否有子分类,只是根据标识串或ID,罗列相应的子分类
  278. //id :标识串或ID
  279. //type 类型,默认是ID,支持 id 和 sign 两种类型
  280. if(!function_exists("phpok_s_catelist"))
  281. {
  282. function phpok_s_catelist($id,$type="id")
  283. {
  284. $app = sys_init();
  285. $app->load_model("list_model",true);
  286. return $app->list_model->get_s_catelist($id,$type,$_SESSION["sys_lang_id"]);
  287. }
  288. }
  289. //获取联动信息
  290. //groupname 组名称
  291. if(!function_exists("phpok_datalink"))
  292. {
  293. function phpok_datalink($groupname="")
  294. {
  295. }
  296. }
  297. if(!function_exists("phpok_video"))
  298. {
  299. function phpok_video($rs)
  300. {
  301. if(!$rs) return false;
  302. if(!is_array($rs))
  303. {
  304. $app = sys_init();
  305. $app->load_model("upfile");
  306. $rs = $app->upfile_m->get_one($rs);
  307. }
  308. $width = $app->sys_config["video_width"] ? $app->sys_config["video_width"] : "500";
  309. $height = $app->sys_config["video_height"] ? $app->sys_config["video_height"] : "400";
  310. $pre_image = $rs["flv_pic"] ? $rs["flv_pic"] : $app->sys_config["video_image"];
  311. $n_msg = "<script type='text/javascript'>";
  312. $n_msg.= 'var htmlmsg = Media.init("'.$rs["filename"].'","'.$width.'","'.$height.'","'.$pre_image.'");';
  313. $n_msg.= "document.write(htmlmsg);</script>";
  314. return $n_msg;
  315. }
  316. }
  317. //plugin_identifier,插件标识串
  318. //function,执行函数
  319. //ext,传递参数,数组或字符串,受插件影响,一般是传递字符串
  320. if(!function_exists("phpok_plugin"))
  321. {
  322. function phpok_plugin($plugin_identifier,$function="phpok",$ext="")
  323. {
  324. }
  325. }
  326. if(!function_exists("phpok_c"))
  327. {
  328. function phpok_c($id,$field="content",$pageid=1,$is_span=true)
  329. {
  330. if(!$id || !$field) return false;
  331. $app = sys_init();
  332. $app->load_model("msg");
  333. $content = $app->msg_m->get_c($id,$field);
  334. if(!$content) return false;
  335. $content = preg_replace("/<div/isU","<p",$content);
  336. $content = preg_replace("/<\/div>/isU","</p>",$content);
  337. //格式化内容
  338. $rslist = explode("[:page:]",$content);
  339. $content_count = count($rslist);
  340. if($content_count < 2)
  341. {
  342. return $content;
  343. }
  344. unset($content);
  345. $html = "<div class='content-page' align='center'>";
  346. $html.= "<table cellpadding='0' cellspacing='0'><tr>";
  347. foreach($rslist AS $key=>$value)
  348. {
  349. $html .= '<td>';
  350. $html .= '<a href="javascript:phpok_content_page('.$id.',\''.$field.'\','.($key+1).');void(0);"';
  351. if(($key+1) == $pageid)
  352. {
  353. $html .= ' class="now"';
  354. }
  355. $html .= '>'.($key+1)."</a>";
  356. $html .= "</td>";
  357. }
  358. $html .= "</tr></table>";
  359. $html .= "</div>";
  360. $keyid = $pageid-1;
  361. $content = $rslist[$keyid] ? $rslist[$keyid] : $rslist[($content_count-1)];
  362. if($is_span)
  363. {
  364. return "<span id='phpok_c_".$field."'>".$content.$html."</span>";
  365. }
  366. else
  367. {
  368. return $content.$html;
  369. }
  370. }
  371. }
  372. ?>