SeaCMS一键生成当天增加同时生成自定义页面
编辑/admin/admin_makehtml.php
文件第273行,找到
elseif($action=="allchannel")
{
checkRunMode();
$curTypeIndex=$index;
$typeIdArray = getTypeIdArrayBySort(0);
$typeIdArrayLen = count($typeIdArray);
if (empty($curTypeIndex)){
$curTypeIndex=0;
}else{
if(intval($curTypeIndex)>intval($typeIdArrayLen-1)){
if (empty($action3)){
alertMsg ("生成所有栏目全部搞定","");
exit();
}elseif($action3=="site"){
echoHead();
echo makeIndex();
//echo makeAllmovie();
echoFoot();
alertMsg ("一键生成全部搞定","");
exit();
}
}
}
$typeId = $typeIdArray[$curTypeIndex];
if(empty($typeId)){
exit("分类丢失");
}else{
echoHead();
makeChannelById($typeId);
echoFoot();
}
}