我正在制作一个
PHP wiki引擎,它为所有指向它的网站使用相同的模板.但是有些网站有自定义模板.我可以让Smarty使用这个自定义模板,以防它存在吗?
这是我的目录结构:
/web/wiki/templates <-- all templates here
/web/wiki/templates/wiki.domain.com <-- individual template
如何在wiki.domain.com中首先在/web/wiki/templates/wiki.domain.com中使用模板,如果该目录中不存在该模板,则使用/ web / wiki /中的模板模板?
我可以为Smarty定义多个模板目录,并首先尝试从顶级目录中选择模板吗?如果我能做到这一点,我可以简单地改变模板目录的顺序:
/web/wiki/templates/wiki.domain.com
/web/wiki/templates
最佳答案
default_template_handler是在无法找到模板时调用的回调.一些“例子”可以在
unit test中找到