view.sys.php 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?php
  2. class View
  3. {
  4. var $engine = 'et';
  5. var $configdata = '';
  6. var $tpl_engine = 'et.tpl.php';
  7. var $tpl;
  8. var $db;
  9. function __construct()
  10. {
  11. //如果有针对某应用层配置模板引挈,则加载这个应用,返之加载公共应用
  12. $view_config = file_exists(APP.'view.config.php') ? APP.'view.config.php' : APP_ROOT.'view.config.php';
  13. if(!file_exists($view_config))
  14. {
  15. exit('error: unable to load the file: '.basename($view_config));
  16. }
  17. include_once($view_config);
  18. if(!$_view_config || !is_array($_view_config))
  19. {
  20. exit('error: not setting template config');
  21. }
  22. $this->configdata = $_view_config['config'];
  23. //参数
  24. $this->tpl_engine = LIBS."tpl_engine/".$_view_config['engine'].'.tpl.php';
  25. if(!file_exists($this->tpl_engine))
  26. {
  27. exit('error: unable to load the template controller: '.strtolower($_view_config['engine']));
  28. }
  29. $this->engine = strtolower($_view_config['engine'])."_tpl";
  30. unset($_view_config,$view_config);
  31. }
  32. //兼容PHP4操作
  33. function View()
  34. {
  35. $this->__construct();
  36. }
  37. //运行引挈
  38. function run()
  39. {
  40. include_once($this->tpl_engine);
  41. //初始化引挈
  42. $this->tpl = new $this->engine($this->configdata);
  43. return $this->tpl;
  44. }
  45. }
  46. ?>