我正在编写一个组件,并希望从模板文件夹中插入图像。
如何获得模板文件夹的正确路径?
答案 0 :(得分:34)
$app = JFactory::getApplication();
$templateDir = JURI::base() . 'templates/' . $app->getTemplate();
答案 1 :(得分:6)
什么样的道路...... 在文件系统上:
$templateDir = JPATH_THEMES.DS.JFactory::getApplication()->getTemplate().DS;
答案 2 :(得分:3)
我找到了一种方法。使用全局$ mainframe对象。
$templateDir = $mainframe->getBasePath() . "templates/" . $mainframe->getTemplate();
还有另一种(更好的)方式吗?