今應客戶的要求,需要增加一些單頁面,但是ECSHOP卻沒有這個功能,通過在網上搜索都沒有找到相關的信息,后經過思考,終于實現該功能。下面是如果在ECSHOP增加單頁面的方法:
【第一】在根目錄創建一個php文件,命名為single.php[注:single.php乃我自定義的頁面。]
添加如下代碼:
<?php /** * ECSHOP 體檢中心文件 * ============================================================================ * 網站地址: http://www.yangshifang.com.cn; * ---------------------------------------------------------------------------- * 這不是一個自由軟件!您只能在不用于商業目的的前提下對程序代碼進行修改和 * 使用;不允許對程序代碼以任何形式任何目的的再發布。 * ============================================================================ * $Author: yanwei $ * $Id: single.php 2012-08-15 20:43 $ */ define('IN_ECS', true); require(dirname(__FILE__) . '/includes/init.php'); if ((DEBUG_MODE & 2) != 2) { $smarty->caching = true; } /* 清除緩存 */ clear_cache_files(); //引用模板 if (!$smarty->is_cached('single.dwt', $cache_id)) { assign_template(); //紅色區是單頁面需要調用到的數據,需要哪一部分就將其引用進來。 $position = assign_ur_here(); $smarty->assign('page_title', $position['title']); // 頁面標題 $smarty->assign('ur_here', $position['ur_here']); // 當前位置 /* meta information */ $smarty->assign('keywords', htmlspecialchars($_CFG['shop_keywords'])); $smarty->assign('description', htmlspecialchars($_CFG['shop_desc'])); $smarty->assign('helps', get_shop_help()); // 網店幫助 } $smarty->display('single.dwt', $cache_id); ?>
【第二】在模板文件夾里面創建single .dwt文件[注:single.dwt跟single.php的頁面一致,因為其代碼里引用了該模板名稱。]
添加代碼:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf8" /> <meta name="Keywords" content="{$keywords}" /> <meta name="Description" content="{$description}" /> <!-- TemplateBeginEditable name="doctitle" --> <title>體檢中心</title> <!-- TemplateEndEditable --> <!-- TemplateBeginEditable name="head" --> <!-- TemplateEndEditable --> <link rel="shortcut icon" href="favicon.ico" /> <link rel="icon" href="animated_favicon.gif" type="image/gif" /> <link href="{$ecs_css_path}" rel="stylesheet" type="text/css" /> </head> <body> <!-- #BeginLibraryItem "/library/page_header.lbi" --><!-- #EndLibraryItem --> <div class="wrapper"> <div id="ur_here"> <!-- #BeginLibraryItem "/library/ur_here.lbi" --><!-- #EndLibraryItem --> </div> 把你創建的html里面的html內容復制放在這里 </div> <!-- #BeginLibraryItem "/library/page_footer.lbi" --><!-- #EndLibraryItem --> </body> </html>
【第三】單頁面必須要有”當前位置“這個文件存在(/library/ur_here.lbi)那么需要修改以下2個文件的代碼:
【1】找到includes/lib_main.php文件,修改:
找到代碼155行起,
/* 初始化“頁面標題”和“當前位置” */ .... /* 積分兌換 */ elseif ('exchange' == $filename) { $page_title = $GLOBALS['_LANG']['exchange'] . '_' . $page_title; $args = array('wsid' => '0'); $ur_here .= ' <code>></code> <a href="exchange.php">' . $GLOBALS['_LANG']['exchange'] . '</a>'; } /* 其他的在這里補充 */
在積分兌換下面新增:
/* 新增單頁面 */ elseif ('single' == $filename) { $page_title = $GLOBALS['_LANG']['single'] . '_' . $page_title; $ur_here .= ' <code>></code> <a href="single.php">' . $GLOBALS['_LANG']['single'] . '</a>'; }
【2】找到語言包languages/zh_cn/common.php
在最尾部加上代碼:
/* 新增單頁面語言項 */ $_LANG['single'] = '新增單頁面';
這樣通過前臺訪問single.php就可以顯示你的頁面內容了,而且頭部和尾部都是調用的!
Copyright © 2009-2019 Ywcms.Com All Right Reserved. 湘ICP備16006489號-2