control.sys.php 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264
  1. <?php
  2. //如果没有指定libs层,则禁止访问
  3. if(!defined('LIBS'))
  4. {
  5. exit('error: Not define libs');
  6. }
  7. class Control
  8. {
  9. //初始化
  10. var $tpl;
  11. var $lib_folder = "system";
  12. var $url;
  13. var $lang;//指定语言包数据
  14. var $lang_id;//语言包ID号
  15. var $inc_array;
  16. var $system_time = 0;
  17. var $sys_config;
  18. var $db;
  19. var $plugin;
  20. var $STC;
  21. function Control()
  22. {
  23. $model = $this->r_model();
  24. $this->model = $model;
  25. foreach(array_keys(get_object_vars($model)) AS $key)
  26. {
  27. $this->$key = $model->$key;
  28. }
  29. $this->STCModel=new SysTemSiteConfig();;
  30. //echo "<pre>".print_r($model,true)."</pre>";
  31. //unset($model);
  32. $this->autoload();//自动加载类
  33. $this->tpl = $this->view();
  34. //运行插件
  35. $this->plugin = $this->r_plugin();
  36. $this->plugin->load_db($this->model->db);
  37. }
  38. //加载model层对数据进行管理
  39. function r_model()
  40. {
  41. require_once(LIBS.'model.sys.php');
  42. return new Model(true);
  43. }
  44. function r_plugin()
  45. {
  46. require_once(LIBS.'plugin.sys.php');
  47. return new Plugin();
  48. }
  49. function plugin($plugin_name)
  50. {
  51. if(!$plugin_name)
  52. {
  53. return false;
  54. }
  55. $plugin_name = strtolower($plugin_name);
  56. $set_name = "plugin_".$plugin_name;
  57. if($this->inc_array && is_array($this->inc_array) && count($this->inc_array)>0)
  58. {
  59. if(in_array($set_name,$this->inc_array))
  60. {
  61. return $this->plugin->$set_name;
  62. }
  63. }
  64. $this->plugin->load_plugin($plugin_name);
  65. $this->inc_array[] = $set_name;
  66. return $this->plugin->$set_name;
  67. }
  68. function model($model_name,$ifglobal=false)
  69. {
  70. return $this->load_model($model_name,$ifglobal);
  71. }
  72. function load_model($model_name,$ifglobal=false)
  73. {
  74. if(!$model_name)
  75. {
  76. return false;
  77. }
  78. $model_name = strtolower($model_name);
  79. $set_name = $ifglobal ? $model_name : $model_name."_m";
  80. if($this->inc_array && is_array($this->inc_array) && count($this->inc_array)>0)
  81. {
  82. if(in_array($set_name,$this->inc_array))
  83. {
  84. return $this->$set_name;
  85. }
  86. }
  87. $this->model->load_model($model_name,$this->model->db);
  88. $this->$set_name = $this->model->$set_name;
  89. $this->inc_array[] = $set_name;
  90. return $this->$set_name;
  91. }
  92. //加载View层管理
  93. function view()
  94. {
  95. //模板引挈参数
  96. //加载View层涉及到的模板引挈
  97. require_once(LIBS.'view.sys.php');
  98. $V = new View();
  99. return $V->run();
  100. }
  101. function libs($lib)
  102. {
  103. //判断用户目录下是否有libs
  104. $lib_file = file_exists(APP."libs/".$lib.".php") ? APP."libs/".$lib.".php" : LIBS.$this->lib_folder."/".$lib.".php";
  105. if(!file_exists($lib_file))
  106. {
  107. exit("error: unable to load the library: ".$lib.".php");
  108. }
  109. include_once($lib_file);
  110. $lib_name = strtolower($lib)."_lib";
  111. $this->$lib_name = new $lib_name;
  112. $this->inc_array[] = $lib_name;
  113. return true;
  114. }
  115. //加载模块
  116. function load_lib($lib)
  117. {
  118. $this->libs($lib);
  119. return true;
  120. }
  121. //自动加载系统模块
  122. function autoload()
  123. {
  124. $handle = opendir(LIBS."autoload");
  125. $array = array();
  126. while(false !== ($file = readdir($handle)))
  127. {
  128. if($file != "." && $file != ".." && $file != ".svn") $array[] = LIBS."autoload/".basename($file);
  129. }
  130. closedir($handle);
  131. if(count($array)<1)
  132. {
  133. return false;
  134. }
  135. foreach($array AS $key=>$value)
  136. {
  137. $file_name = strtolower(basename($value));
  138. $c_name = str_replace(".php","",$file_name);
  139. $lib_name = $c_name."_lib";
  140. include_once($value);
  141. $this->$lib_name = new $lib_name;
  142. $this->inc_array[] = $lib_name;
  143. }
  144. //加载用户自定义的类
  145. return true;
  146. }
  147. //配置参数
  148. function set_config($config)
  149. {
  150. $this->config->c = $config['control_trigger'];
  151. $this->config->f = $config['function_trigger'];
  152. $this->config->d = $config['dir_trigger'];
  153. return true;
  154. }
  155. //格式化URL
  156. function url($value="",$extend="",$format_type="&amp;")
  157. {
  158. $url = defined("HOME_PAGE") ? HOME_PAGE : "index.php";
  159. $url.= "?";
  160. //判断是否是value;
  161. if(is_string($value) && $value)
  162. {
  163. $val_array = explode(",",$value);
  164. foreach($val_array AS $k=>$v)
  165. {
  166. $m = explode(":",$v);
  167. if($m[0] && $m[1])
  168. {
  169. $val[$m[0]] = $m[1];
  170. }
  171. else
  172. {
  173. if($k == 0)
  174. {
  175. $val["c"] = $v;
  176. }
  177. elseif($k == 1)
  178. {
  179. $val["f"] = $v;
  180. }
  181. elseif($k == 2)
  182. {
  183. $val["d"] = $v;
  184. }
  185. }
  186. }
  187. }
  188. else
  189. {
  190. if($value)
  191. {
  192. $val = $value;
  193. }
  194. }
  195. unset($value);
  196. //控制层
  197. if($val['c'])
  198. {
  199. $url.= $this->config->c."=".rawurlencode($val["c"]).$format_type;
  200. }
  201. //控制函数
  202. if($val["f"] && $val["f"] != "index")
  203. {
  204. $url.= $this->config->f."=".rawurlencode($val["f"]).$format_type;
  205. }
  206. if($val["d"])
  207. {
  208. $url.= $this->config->d."=".rawurlencode($val["d"]).$format_type;
  209. }
  210. //$this->url = $url;
  211. if($extend)
  212. {
  213. $url .= $extend.$format_type;
  214. }
  215. return $url;
  216. }
  217. //加载语言包
  218. function lang($var="zh",$msg="")
  219. {
  220. $this->lang = array();
  221. if($msg && is_array($msg) && count($msg)>0)
  222. {
  223. $this->lang = $msg;
  224. }
  225. $this->langid = $var;
  226. $this->lang_id = $var;
  227. return $msg;
  228. }
  229. //加载配置信息
  230. function sys_config($array)
  231. {
  232. $this->sys_config = $array;
  233. }
  234. //读取时间及次数
  235. function db_count()
  236. {
  237. $db = $this->db_engine;
  238. $db_count = $this->$db->query_count;
  239. return $db_count;
  240. }
  241. function db_times()
  242. {
  243. $db = $this->db_engine;
  244. $db_times = ($this->$db->query_times + $this->$db->conn_times);
  245. return $db_times;
  246. }
  247. }
  248. ?>