溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

phpcms V9 自定義添加 全局變量{DIY_PATH}方法

發(fā)布時(shí)間:2020-05-24 05:49:58 來源:網(wǎng)絡(luò) 閱讀:683 作者:gutaotao1989 欄目:web開發(fā)

前言:目前V9版本新增{JS_PATH},{CSS_PATH},{IMG_PATH}三個(gè)全局變量,樣式圖片腳本分開路徑,確實(shí)達(dá)到了一定在后臺(tái)管理方便的目的,但是個(gè)人感覺并不十分便捷

優(yōu)勢(shì):可實(shí)現(xiàn)自定義模板分離,與default模板p_w_picpaths/js/css文件分開存放,方便管理,并實(shí)現(xiàn)自定義模板與后臺(tái)樣式分離

實(shí)現(xiàn)方法如下:


語言項(xiàng)修改文件,根目錄/phpcms/languages/zh-cn/admin.lang.php

在文件167行

$LANG['setting_img_path'] = '圖片路徑';

之下添加

$LANG['setting_skin_path'] = '自定義皮膚路徑';

語句,增加對(duì)應(yīng)自定義模板路徑語言項(xiàng)


修改配置文件,根目錄/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',注意格式


修改后臺(tái)顯示模板文件,根目錄/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}完畢,可后臺(tái)更改自定義模板相關(guān)文件路徑

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI