template.ease.php 997 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?php
  2. /*
  3. * Edition: ET080708
  4. * Desc: ET Template
  5. * File: template.ease.php
  6. * Author: David Meng
  7. * Site: http://www.systn.com
  8. * Email: mdchinese@gmail.com
  9. *
  10. */
  11. //引入核心文件
  12. if (is_file(dirname(__FILE__).'/template.core.php')){
  13. include dirname(__FILE__).'/template.core.php';
  14. }else {
  15. die('Sorry. Not load core file.');
  16. }
  17. Class template extends ETCore{
  18. /**
  19. * 声明模板用法
  20. */
  21. function template(
  22. $set = array(
  23. 'ID' =>'1', //缓存ID
  24. 'TplType' =>'htm', //模板格式
  25. 'CacheDir' =>'cache', //缓存目录
  26. 'TemplateDir'=>'template' , //模板存放目录
  27. 'AutoImage' =>'on' , //自动解析图片目录开关 on表示开放 off表示关闭
  28. 'LangDir' =>'language' , //语言文件存放的目录
  29. 'Language' =>'default' , //语言的默认文件
  30. 'Copyright' =>'off' , //版权保护
  31. 'MemCache' =>'' , //Memcache服务器地址例如:127.0.0.1:11211
  32. )
  33. ){
  34. parent::ETCoreStart($set);
  35. }
  36. }
  37. ?>