多站点环境的 drupal 路径
如何获取站点 DIR 的路径,例如我有sites/www.example.com 我需要在模块的 .tpl 文件中获取此路径,我尝试了 drupal_get_path('theme','my_theme') 和 path_to_theme() 但两者都它们指向模块DIR。我可以使用任何方法来获取站点/example.com 文件夹的路径?
How to get path to sites DIR like i have sites/www.example.com i need to obtain this path inside a .tpl file of module, i tried drupal_get_path('theme','my_theme') and path_to_theme() but both of them point to the module DIR. any method that i can use to obtain path to my sites/example.com folder ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许 conf_path() 会帮助你。
问题是,为什么需要 site/[site] 目录?
也许您的 .tpl 文件中有一些被误导的内容。 drupal_get_path() 应该足够了。
Maybe the conf_path() will help you.
The question is, why do you need your sites/[site] directory?
maybe there's something misguided in your .tpl file. the drupal_get_path() should be sufficient.