以增加帖子作者用戶組和用戶組名稱顏色為例
找到
'id' => array('name' => lang('blockclass', 'blockclass_field_id'), 'formtype' => 'text', 'datatype' => 'int'),
復(fù)制代碼
其下增加
'grouptitle' => array('name' => "用戶組", 'formtype' => 'text', 'datatype' => 'string'),
'groupcolor' => array('name' => "用戶組頭銜顏色", 'formtype' => 'text', 'datatype' => 'string'),
|
找到
if($style['getsummary']) {
$threadtids[$data['posttableid']][] = $data['tid'];
}
|
其下增加
$sql_groupid = "select groupid from ".DB::table("common_member")." where uid=".$data['authorid'];
$rea = DB::fetch_first($sql_groupid);
$sql_grouptitle = "select grouptitle,color from ".DB::table("common_usergroup")." where groupid=".$rea['groupid'];
$reb = DB::fetch_first($sql_grouptitle);
|
找到
'monthviews' => $data['views']
復(fù)制代碼
其上面增加
'
grouptitle' => $reb['grouptitle'],
'groupcolor' => $reb['color'],
|
這樣就改完了,后臺——工具——更新緩存——3個全選——更新。
好了,去看看diy里是不是和我的一樣:
{grouptitle}和{groupcolor}和其他字段一樣用法,不需要啰嗦了。
注意?。?!
此修改增加了中文,請注意文件編碼,錯誤編碼會導(dǎo)致diy失效。