et.tpl.php 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <?php
  2. #[模板类]
  3. #[特别说明,这个模板类是在学习了SYSTN.COM的模板类的基础上改装过来的]
  4. #[应用更简单]
  5. require_once("et_ease.php");
  6. class et_tpl extends Ease
  7. {
  8. function __construct($config)
  9. {
  10. parent::Ease($config);
  11. }
  12. function et_tpl($config)
  13. {
  14. $this->__construct($config);
  15. }
  16. //设定变量
  17. function assign($var,$val)
  18. {
  19. $this->set_var($var,$val);
  20. }
  21. //兼容Smarty的写法,不推荐
  22. function display($file)
  23. {
  24. $array = $this->_format_file($file);
  25. $htmlfile = $array["htmlfile"];
  26. $folder = $array["folder"];
  27. $this->p($htmlfile,$folder);
  28. }
  29. function plugin($identifier,$filename,$isfetch=false)
  30. {
  31. if(!defined("APP_NAME"))
  32. {
  33. return false;
  34. }
  35. if(APP_NAME == "admin")
  36. {
  37. $file = "../../../plugins/".$identifier."/".$filename;
  38. }
  39. else
  40. {
  41. $file = "../../plugins/".$identifier."/".$filename;
  42. }
  43. if($isfetch)
  44. {
  45. return $this->fetch($file);
  46. }
  47. else
  48. {
  49. $this->display($file);
  50. }
  51. }
  52. //获取返回的数据
  53. function fetch($file)
  54. {
  55. ob_start();
  56. $array = $this->_format_file($file);
  57. $htmlfile = $array["htmlfile"];
  58. $folder = $array["folder"];
  59. $this->p($htmlfile,$folder);
  60. $msg = ob_get_contents();
  61. ob_end_clean();
  62. return $msg;
  63. }
  64. function _format_file($file)
  65. {
  66. $end_file = basename($file);
  67. $htmlfile = substr($end_file,0,-(strlen($this->ext)+1));
  68. $folder = substr($file,0,-(strlen($end_file)));
  69. return array("folder"=>$folder,"htmlfile"=>$htmlfile);
  70. }
  71. }
  72. ?>