您好,登錄后才能下訂單哦!
前言:目前V9版本新增{JS_PATH},{CSS_PATH},{IMG_PATH}三個全局變量,樣式圖片腳本分開路徑,確實達到了一定在后臺管理方便的目的,但是個人感覺并不十分便捷
優勢:可實現自定義模板分離,與default模板p_w_picpaths/js/css文件分開存放,方便管理,并實現自定義模板與后臺樣式分離
實現方法如下:
語言項修改文件,根目錄/phpcms/languages/zh-cn/admin.lang.php
在文件167行
$LANG['setting_img_path'] = '圖片路徑';
之下添加
$LANG['setting_skin_path'] = '自定義皮膚路徑';
語句,增加對應自定義模板路徑語言項
修改配置文件,根目錄/phpcms/modules/admin/functions/global.func.php
在文件42行
if(in_array($k,array
('js_path','css_path','img_path','p_w_upload_stat','admin_log','gzip','errorlog','phpsso','phpsso_appid','phpsso_api_url','phpsso_auth_key','phpsso_version','connect_enable',
'upload_url','sina_akey', 'sina_skey', 'snda_enable', 'snda_status', 'snda_akey', 'snda_skey', 'qq_akey', 'qq_skey','admin_url')))................
找到'img_path',在之后添加'skin_path',注意格式
修改后臺顯示模板文件,根目錄/phpcms/modules/admin/functions/templates/setting.tpl.php
在文件12行
$("#img_path").formValidator({onshow:"<?php echo L('setting_input').L('setting_img_path')?>",onfocus:"<?php echo L('setting_img_path').L('setting_end_with_x')?>"}).inputValidator({onerror:"<?php echo L('setting_img_path').L('setting_input_error')?>"}).regexValidator({regexp:"(.+)\/$",onerror:"<?php echo L('setting_img_path').L('setting_end_with_x')?>"});
之下添加
$("#diy_path").formValidator({onshow:"<?php echo L('setting_input').L('setting_diy_path')?>",onfocus:"<?php echo L('setting_diy_path').L('setting_end_with_x')?>"}).inputValidator({onerror:"<?php echo L('setting_diy_path').L('setting_input_error')?>"}).regexValidator({regexp:"(.+)\/$",onerror:"<?php echo L('setting_diy_path').L
('setting_end_with_x')?>"});
在文件67-70行
<tr>
<th width="120"><?php echo L('setting_img_path')?></th>
<td class="y-bg"><input type="text" class="input-text" name="setconfig[img_path]" id="img_path" size="50" value="<?php echo IMG_PATH?>" /></td>
</tr>
<tr>
之下添加
<tr>
<th width="120"><?php echo L('setting_diy_path')?></th>
<td class="y-bg"><input type="text" class="input-text" name="setconfig[diy_path]" id="diy_path" size="50" value="<?php echo DIY_PATH?>" /></td>
</tr>
配置文件緩存修改,根目錄/caches/configs/system.php
在文件57行
'img_path' => 'http://www.iuuva.cn/statics/p_w_picpaths/',
之下添加
'diy_path' => '', //自定義路徑
配置文件 根目錄/phpcms/base.php
在文件49行
define('IMG_PATH',pc_base::load_config('system','img_path'));
之下添加
define('DIY_PATH',pc_base::load_config('system','diy_path'));
至此自定義添加全局變量{DIY_PATH}完畢,可后臺更改自定義模板相關文件路徑
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。