码迷,mamicode.com
首页 > 其他好文 > 详细

ecshop 定义模板路径

时间:2014-09-05 14:31:02      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:includes   themes   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 定义模板路径

标签:includes   themes   ecshop   根目录   

原文地址:http://mypan.blog.51cto.com/713912/1549097

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!