LocationTemplateBehavior.class.php 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkPHP [ WE CAN DO IT JUST THINK IT ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2006-2012 http://thinkphp.cn All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  8. // +----------------------------------------------------------------------
  9. // | Author: liu21st <liu21st@gmail.com>
  10. // +----------------------------------------------------------------------
  11. defined('THINK_PATH') or exit();
  12. /**
  13. * 系统行为扩展:定位模板文件
  14. * @category Think
  15. * @package Think
  16. * @subpackage Behavior
  17. * @author liu21st <liu21st@gmail.com>
  18. */
  19. class LocationTemplateBehavior extends Behavior {
  20. // 行为扩展的执行入口必须是run
  21. public function run(&$templateFile){
  22. // 自动定位模板文件
  23. if(!file_exists_case($templateFile))
  24. $templateFile = $this->parseTemplateFile($templateFile);
  25. }
  26. /**
  27. * 自动定位模板文件
  28. * @access private
  29. * @param string $templateFile 文件名
  30. * @return string
  31. */
  32. private function parseTemplateFile($templateFile) {
  33. if(''==$templateFile) {
  34. // 如果模板文件名为空 按照默认规则定位
  35. $templateFile = C('TEMPLATE_NAME');
  36. }elseif(false === strpos($templateFile,C('TMPL_TEMPLATE_SUFFIX'))){
  37. // 解析规则为 模板主题:模块:操作 不支持 跨项目和跨分组调用
  38. $path = explode(':',$templateFile);
  39. $action = array_pop($path);
  40. $module = !empty($path)?array_pop($path):MODULE_NAME;
  41. if(!empty($path)) {// 设置模板主题
  42. $path = dirname(THEME_PATH).'/'.array_pop($path).'/';
  43. }else{
  44. $path = THEME_PATH;
  45. }
  46. $depr = defined('GROUP_NAME')?C('TMPL_FILE_DEPR'):'/';
  47. $templateFile = $path.$module.$depr.$action.C('TMPL_TEMPLATE_SUFFIX');
  48. }
  49. if(!file_exists_case($templateFile))
  50. throw_exception(L('_TEMPLATE_NOT_EXIST_').'['.$templateFile.']');
  51. return $templateFile;
  52. }
  53. }