首页 > 代码库 > ecshop 定义模板路径
ecshop 定义模板路径
文件位置ECSHOP根目录\includes\init.php
在 $smarty->assign(‘ecs_charset‘, EC_CHARSET);
下面增加 $smarty->assign(‘template_dir‘, ‘themes/‘ . $_CFG[‘template‘]);
在模板中就直接调用
可以参考下面的css调用的方法:
if (!empty($_CFG[‘stylename‘]))
{
$smarty->assign(‘ecs_css_path‘, ‘themes/‘ . $_CFG[‘template‘] . ‘/style_‘ . $_CFG[‘stylename‘] . ‘.css‘);
}
else
{
$smarty->assign(‘ecs_css_path‘, ‘themes/‘ . $_CFG[‘template‘] . ‘/style.css‘);
}
{$ecs_css_path}
{$template_dir}
就OK了.
本文出自 “MyPan's blog” 博客,请务必保留此出处http://mypan.blog.51cto.com/713912/1549097
ecshop 定义模板路径
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。