我們?cè)诠芾砜棄?mèng)后臺(tái)自定義表單時(shí),發(fā)現(xiàn)信息只能一個(gè)一個(gè)的選擇,不能全選,這給我們平時(shí)的維護(hù)帶來很大的不便,我們發(fā)現(xiàn)在文檔列表里就有這一功能
今天我們就來給這個(gè)自定義表單添加全選/反選功能,
打開 /dede/templets/diy_list.htm搜索
<td colspan="3" height='36' align="center" bgcolor="#F8FCF1">
在它下面添加
<label><input type="button" name="select" onClick="selAll()" value="全選"/></label>
<label><input type="button" name="select" onClick="noSelAll()" value="反選"/></label>
<script type="text/javascript">
function selAll(){
var a = document.getElementsByTagName("input");
for(var i = 0;i<a.length;i++){
if(a[i].type == "checkbox") a[i].checked = true;
}
}
function noSelAll(){
var a = document.getElementsByTagName("input");
for(var i = 0;i<a.length;i++){
if(a[i].type == "checkbox") a[i].checked = false;
}
}
</script>
然后,保存。刷新一下自定義表單列表頁面。
]]>打開/plus/diy.php,搜索
$dede_fields = empty($dede_fields) ? '' : trim($dede_fields);
大約在40行左右,在它下面添加
//增加必填字段判斷
if($required!=''){
if(preg_match('/,/', $required)){
$requireds = explode(',',$required);
foreach($requireds as $field){
if($$field==''){
showMsg('帶*號(hào)的為必填內(nèi)容,請(qǐng)正確填寫', '-1');
exit();
}
}
}else{
if($required==''){
showMsg('帶*號(hào)的為必填內(nèi)容,請(qǐng)正確填寫', '-1');
exit();
}
}
}
//end
在模板表單里面添加
<input type="hidden" name="required" value="數(shù)據(jù)字段名,數(shù)據(jù)字段名" />
保存后,必填項(xiàng)設(shè)置完成,當(dāng)用戶提交表單的時(shí)間,系統(tǒng)檢查到必填項(xiàng)沒有輸入內(nèi)容,就會(huì)提示“帶*號(hào)的為必填內(nèi)容,請(qǐng)正確填寫”。
]]>在網(wǎng)上找了好久,終于找到一個(gè)正常能用的??棄?mèng)自定義表單添加驗(yàn)證碼功能是不需要在自定義表單里添加字段的。
先看效果:
第一步,在表單模板里面添加驗(yàn)證碼代碼:
驗(yàn)證碼:<input type="text" name="validate"><img src="../include/vdimgck.php" align="absmiddle" onclick="this.src='../include/vdimgck.php?tag='+Math.random();" style="cursor:pointer;">
第三步,打開plus/diy.php,搜索
$addvar = $addvalue = '';
在它上面添加
//驗(yàn)證碼校驗(yàn)
$validate = empty($validate) ? '' : strtolower(trim($validate));
$svali = strtolower(GetCkVdValue());
if($validate=='' || $validate != $svali)
{
ResetVdValue();
ShowMsg('驗(yàn)證碼不正確!',$_SERVER["HTTP_REFERER"],0,1000);
exit();
}
如下圖所示
]]>
打開 /plus/diy.php?搜索
$addvalue .= ", '".${$fieldinfo[0]}."'";
替換為:
$addvalue .= ", '".iconv( "UTF-8", "gb2312//IGNORE" , ${$fieldinfo[0]})."'";
]]>
后來注意到一個(gè)細(xì)節(jié),每次登陸后臺(tái),織夢(mèng)系統(tǒng)都會(huì)記錄登陸時(shí)間和IP地址,這說明織夢(mèng)自帶IP獲取和時(shí)間獲取。
那么接下來分析了相關(guān)的文件代碼,整理了一套自動(dòng)獲取時(shí)間和IP的代碼出來,修改步驟如下:
首先修改plus/diy.php,在大概69行的地方找到:
if($fieldinfo[1] == 'textdata')
{
${$fieldinfo[0]} = FilterSearch(stripslashes(${$fieldinfo[0]}));
${$fieldinfo[0]} = addslashes(${$fieldinfo[0]});
}
在它下面添加
if($fieldinfo[0] == 'ip')
{
${$fieldinfo[0]}=GetIP();
}
if($fieldinfo[0] == 'time')
{
${$fieldinfo[0]}=date("Y-m-d H:i:s");
}
然后在自定義表單里添加字段
IP地址:ip
提交時(shí)間:time
字段名稱一定要和diy.php添加的字段名一致
注意:新增表單字段之后,必須要更新一下表單中?dede_fields?和?dede_fieldshash?這兩項(xiàng)的值,很多站長(zhǎng)會(huì)忽略這個(gè)問題,導(dǎo)致后臺(tái)無法接收新增字段的內(nèi)容。
在表單中調(diào)取:
<input type="hidden" name="ip" id="ip" value="">
<input type="hidden" name="time" id="time" value="">
type="hidden"?標(biāo)簽可以把這兩個(gè)表單隱藏起來,不會(huì)影響代碼執(zhí)行。
這樣用戶執(zhí)行提交操作,后臺(tái)就會(huì)自動(dòng)獲取用戶IP地址和當(dāng)前的時(shí)間。
]]>