DedeCMS 新建模型自定义联动类别调用及修改方法

找了好几天资料,没找到新建模型中自定义联动类别怎么用,自己就改了改..现在可以用了 把方法分享一下...不对的地方请大家帮助改正。
 
修改 include\taglib\infolink.lib.PHP 文件
 
require_once(DEDEROOT.'/data/enums/infotype.PHP'); 
下面添加 
require_once(DEDEROOT.'/data/enums/自定义联动类别字段名.PHP'); 
 
function lib_infolink(&$ctag,&$refObj) 
global $dsql,$nativeplace,$infotype,$自定义联动类别字段名,$hasSetEnumJs,$cfg_cmspath,$cfg_mainsite; 
global $em_nativeplaces,$em_infotypes,$em_自定义联动类别字段名s; //看清楚,这里后面的个S 
 
$fields = array('nativeplace'=>'','infotype'=>'','自定义联动类别字段名'=>'','typeid'=>$typeid, 
'channelid'=>$channelid,'linkallplace'=>'','linkealltype'=>'','linkeall自定义联动类别字段名'=>''); 
 
$fields['nativeplace'] = $fields['infotype'] = $fields['自定义联动类别字段名'] = ''; 
 
$fields['linkalltype'] = "
 
 
$fields['linkeall自定义联动类别字段名'] = "
 
搜索 if(is_array($ctp->CTags)) 在这句上面添加 
 
//自定义联动类别字段链接 
if(empty($自定义联动类别字段名)) 
foreach($em_自定义联动类别字段名s as $eid=>$em) 
if($eid % 500 != 0) continue; 
$fields['自定义联动类别字段名'] .= "
else 
$sontype = ( ($自定义联动类别字段名 % 500 != 0) ? $自定义联动类别字段名 : 0 ); 
$toptype = ( ($自定义联动类别字段名 % 500 == 0) ? $自定义联动类别字段名 : ( $自定义联动类别字段名-($membertype%500) ) ); 
$fields['自定义联动类别字段名'] = "自定义联动类别字段名s[$toptype]}
foreach($em_自定义联动类别字段名s as $eid=>$em) 
if($eid < $toptype+1 || $eid > $toptype+499) continue; 
if($eid == $自定义联动类别字段名) { 
$fields['自定义联动类别字段名'] .= "
else { 
$fields['自定义联动类别字段名'] .= "
 
修改 plus\list.PHP 文件 
 
搜索 $infotype = ( (empty($infotype) || !is_numeric($infotype)) ? 0 : $infotype ); 在下面添加一句 
 
$自定义联动类别字段名 = ( (empty($自定义联动类别字段名) || !is_numeric($自定义联动类别字段名)) ? 0 : $自定义联动类别字段名 ); 
 
搜索 if(!empty($infotype)) $cArr['infotype'] = $infotype; 
 
在下面添加 
if(!empty($自定义联动类别字段名)) $cArr['自定义联动类别字段名'] = $自定义联动类别字段名; 
 
 
找到 include\arc.sglistview.class.PHP 文件 
 
搜索 if(!empty($this->searchArr['keyword'])) 在上面添加 
 
//自定义联动类别 
 
if(!empty($this->searchArr['自定义联动类别字段名'])) 
if($this->searchArr['自定义联动类别字段名'] % 500 ==0 ) 
$naddQuery .= " And arc.自定义联动类别字段名 >= '{$this->searchArr['自定义联动类别字段名']}' And arc.自定义联动类别字段名 < '".($this->searchArr['自定义联动类别字段名']+500)."'"; 
else 
$naddQuery .= "And arc.自定义联动类别字段名 = '{$this->searchArr['自定义联动类别字段名']}'"; 
}
 
模板调用  
 
[field:linkeall自定义联动类别字段名/] [field:自定义联动类别字段名 /]

相关文章

织梦模板建站更换logo的操作步骤:1.找到logo图片所在文件位...
织梦更适合企业建站,织梦拥有大量免费的漂亮模版,简单易用...
在织梦中设置404页面的方法1.进入织梦网站后台管理界面,在界...
解决织梦系统漏洞的方法有以下几种1.将data、templets、uplo...
织梦网站漏洞的解决办法:1.删除install安装目录。2.定期进行...
修改织梦建站变默认路径的方法:1.进入织梦cms;2.选择“系统...