phpok.php 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. <?php
  2. class phpok_lib
  3. {
  4. var $db;
  5. var $langid = "zh";
  6. var $app;
  7. function __construct()
  8. {
  9. $this->app = sys_init();
  10. //执行读取list类
  11. $this->app->load_model("list_model",true);
  12. }
  13. function phpok_lib()
  14. {
  15. $this->__construct();
  16. }
  17. function langid($langid="zh")
  18. {
  19. $this->langid = $langid;
  20. $this->app->list_model->langid($langid);
  21. }
  22. function thumbtype($type="")
  23. {
  24. $this->app->list_model->thumbtype($type);
  25. }
  26. function set_rs($rs)
  27. {
  28. $this->app->list_model->set_rs($rs);
  29. }
  30. function exec_sql($sql,$type="get_one")
  31. {
  32. return $this->app->list_model->exec_sql($sql,$type);
  33. }
  34. //执行根据参数配置的信息
  35. function list_sql($var,$count=1,$orderby="post_desc")
  36. {
  37. //如果存在主题ID,则系统调用详细信息
  38. if($var["id"])
  39. {
  40. return $this->app->list_model->get_one($var["id"],$var);
  41. }
  42. //读取内容标识
  43. if($var["ts"])
  44. {
  45. return $this->app->list_model->get_one_ts($var["ts"],$var);
  46. }
  47. //如果只读一条信息,则排在最前面的那一条为符合条件
  48. if($count == 1)
  49. {
  50. if($var["cid"])
  51. {
  52. return $this->app->list_model->get_one_cid($var["cid"],$orderby);
  53. }
  54. if($var["cs"])
  55. {
  56. return $this->app->list_model->get_one_cs($var["cs"],$orderby);
  57. }
  58. if($var["mid"])
  59. {
  60. return $this->app->list_model->get_one_mid($var["mid"],$orderby);
  61. }
  62. if($var["ms"])
  63. {
  64. return $this->app->list_model->get_one_ms($var["ms"],$orderby);
  65. }
  66. }
  67. //如果数量不是为一的话,多值混合
  68. //接下来读取的是多条信息
  69. if($var["cid"])
  70. {
  71. return $this->app->list_model->get_list_cid($var["cid"],$count,$orderby);
  72. }
  73. //如果有参数cs
  74. if($var["cs"])
  75. {
  76. return $this->app->list_model->get_list_cs($var["cs"],$count,$orderby);
  77. }
  78. //如查是
  79. if($var["mid"])
  80. {
  81. return $this->app->list_model->get_list_mid($var["mid"],$count,$orderby);
  82. }
  83. if($var["ms"])
  84. {
  85. return $this->app->list_model->get_list_ms($var["ms"],$count,$orderby);
  86. }
  87. //如果都不符合,返回为否
  88. return false;
  89. }
  90. //读取分类或是子类信息
  91. function cate_sql($var)
  92. {
  93. if($var["id"])
  94. {
  95. $cateid = $this->app->list_model->get_cateid_from_id($var["id"]);
  96. return $this->app->list_model->get_catelist($cateid,"cate");
  97. }
  98. if($var["ts"])
  99. {
  100. $cateid = $this->app->list_model->get_cateid_from_ts($var["ts"]);
  101. return $this->app->list_model->get_catelist($cateid,"cate");
  102. }
  103. if($var["cid"])
  104. {
  105. return $this->app->list_model->get_catelist($var["cid"],"cate");
  106. }
  107. if($var["cs"])
  108. {
  109. $cateid = $this->app->list_model->get_cateid_from_cs($var["cs"]);
  110. return $this->app->list_model->get_catelist($cateid,"cate");
  111. }
  112. if($var["mid"])
  113. {
  114. return $this->app->list_model->get_catelist($var["mid"],"module");
  115. }
  116. if($var["ms"])
  117. {
  118. $mid = $this->app->list_model->get_mid_from_ms($var["ms"]);
  119. return $this->app->list_model->get_catelist($mid,"module");
  120. }
  121. return false;
  122. }
  123. }
  124. ?>