catalog_add.php

来自「这是matlab的一个小程序」· PHP 代码 · 共 245 行

PHP
245
字号
<?php
require_once(dirname(__FILE__)."/config.php");
require_once(DEDEINC."/typelink.class.php");

if(empty($listtype))
{
	$listtype='';
}
if(empty($dopost))
{
	$dopost = '';
}
if(empty($upinyin))
{
	$upinyin = 0;
}
if(empty($channelid))
{
	$channelid = 1;
}
if(isset($channeltype))
{
	$channelid = $channeltype;
}
$id = empty($id) ? 0 :intval($id);
$nid = 'article';
if($id==0)
{
	CheckPurview('t_New');
}else
{
	CheckPurview('t_AccNew');
	CheckCatalog($id,"你无权在本栏目下创建子类!");
}
if(empty($myrow))
{
	$myrow = array();
}
$dsql->SetQuery("select id,typename,nid from `#@__channeltype` where id<>-1 And isshow=1 order by id");
$dsql->Execute();
while($row=$dsql->GetObject())
{
	$channelArray[$row->id]['typename'] = $row->typename;
	$channelArray[$row->id]['nid'] = $row->nid;
	if($row->id==$channelid)
	{
		$nid = $row->nid;
	}
}
if($dopost=='quick')
{
	include DedeInclude('templets/catalog_add_quick.htm');
	exit();
}
/*---------------------
function action_savequick(){ }
---------------------*/
else if($dopost=='savequick')
{
	$tempindex = "{style}/index_{$nid}.htm";
	$templist = "{style}/list_{$nid}.htm";
	$temparticle = "{style}/article_{$nid}.htm";
	$queryTemplate = "insert into `#@__arctype`(reid,topid,sortrank,typename,typedir,isdefault,defaultname,issend,channeltype,
    tempindex,templist,temparticle,modname,namerule,namerule2,ispart,corank,description,keywords,moresite,siteurl,sitepath,ishidden,`cross`,`crossid`,`content`,`smalltypes`)
    Values('~reid~','~topid~','~rank~','~typename~','~typedir~','$isdefault','$defaultname','$issend','$channeltype',
    '$tempindex','$templist','$temparticle','default','$namerule','$namerule2','0','0','','','0','','','0','0','0','','')";
	foreach($_POST as $k=>$v)
	{
		if(ereg('^posttype',$k))
		{
			$k = str_replace('posttype','',$k);
		}
		else
		{
			continue;
		}
		$rank = ${'rank'.$k};
		$toptypename = trim(${'toptype'.$k});
		$sontype = trim(${'sontype'.$k});
		$toptypedir = GetPinyin(stripslashes($toptypename));
		$toptypedir = $referpath=='parent' ? $nextdir.'/'.$toptypedir : '/'.$toptypedir;
		if(empty($toptypename))
		{
			continue;
		}
		$sql = str_replace('~reid~','0',$queryTemplate);
		$sql = str_replace('~topid~','0',$sql);
		$sql = str_replace('~rank~',$rank,$sql);
		$sql = str_replace('~typename~',$toptypename,$sql);
		$sql = str_replace('~typedir~',$toptypedir,$sql);
		$dsql->ExecuteNoneQuery($sql);
		$tid = $dsql->GetLastID();
		if($tid>0 && $sontype!='')
		{
			$sontypes = explode(',',$sontype);
			foreach($sontypes as $k=>$v)
			{
				$v = trim($v);
				if($v=='')
				{
					continue;
				}
				$typedir = $toptypedir.'/'.GetPinyin(stripslashes($v));
				$sql = str_replace('~reid~',$tid,$queryTemplate);
				$sql = str_replace('~topid~',$tid,$sql);
				$sql = str_replace('~rank~',$k,$sql);
				$sql = str_replace('~typename~',$v,$sql);
				$sql = str_replace('~typedir~',$typedir,$sql);
				$dsql->ExecuteNoneQuery($sql);
			}
		}
	}
	UpDateCatCache();
	ShowMsg('成功增加指定栏目!','catalog_main.php');
	exit();
}
/*---------------------
function action_save(){ }
---------------------*/
else if($dopost=='save')
{
	$smalltypes = '';
	if(empty($smalltype)) $smalltype = '';
	if(is_array($smalltype))
	{
		$smalltypes = join(',',$smalltype);
	}

	if(!isset($sitepath))
	{
		$sitepath = '';
	}
	if($topid==0 && $reid>0)
	{
		$topid = $reid;
	}
	$description = Html2Text($description,1);
	$keywords = Html2Text($keywords,1);

	//栏目的参照目录
	if($referpath=='cmspath')
	{
		$nextdir = '{cmspath}';
	}
	if($referpath=='basepath')
	{
		$nextdir = '';
	}

	//用拼音命名
	if($upinyin==1 || $typedir=='')
	{
		$typedir = GetPinyin(stripslashes($typename));
	}

	$typedir = $nextdir.'/'.$typedir;

	$typedir = ereg_replace("/{1,}","/",$typedir);

	//开启多站点时的设置(仅针对顶级栏目)
	if($reid==0 && $moresite==1)
	{
		$sitepath = $typedir;

		//检测二级网址
		if($siteurl!='')
		{
			$siteurl = ereg_replace("/$","",$siteurl);
			if(!eregi("http://",$siteurl))
			{
				ShowMsg("你绑定的二级域名无效,请用(http://host)的形式!","-1");
				exit();
			}
			if(eregi($cfg_basehost,$siteurl))
			{
				ShowMsg("你绑定的二级域名与当前站点是同一个域,不需要绑定!","-1");
				exit();
			}
		}
	}

	if($ispart!=0)
	{
		$cross = 0;
	}

	//创建目录
	$true_typedir = str_replace("{cmspath}",$cfg_cmspath,$typedir);
	$true_typedir = ereg_replace("/{1,}","/",$true_typedir);
	if(!CreateDir($true_typedir))
	{
		ShowMsg("创建目录 {$true_typedir} 失败,请检查你的路径是否存在问题!","-1");
		exit();
	}

	$in_query = "insert into `#@__arctype`(reid,topid,sortrank,typename,typedir,isdefault,defaultname,issend,channeltype,
    tempindex,templist,temparticle,modname,namerule,namerule2,
    ispart,corank,description,keywords,moresite,siteurl,sitepath,ishidden,`cross`,`crossid`,`content`,`smalltypes`)
    Values('$reid','$topid','$sortrank','$typename','$typedir','$isdefault','$defaultname','$issend','$channeltype',
    '$tempindex','$templist','$temparticle','default','$namerule','$namerule2',
    '$ispart','$corank','$description','$keywords','$moresite','$siteurl','$sitepath','$ishidden','$cross','$crossid','$content','$smalltypes')";

	if(!$dsql->ExecuteNoneQuery($in_query))
	{
		ShowMsg("保存目录数据时失败,请检查你的输入资料是否存在问题!","-1");
		exit();
	}
	UpDateCatCache();
	if($reid>0)
	{
		PutCookie('lastCid',GetTopid($reid),3600*24,'/');
	}
	ShowMsg("成功创建一个分类!","catalog_main.php");
	exit();

}//End dopost==save


//获取从父目录继承的默认参数
if($dopost=='')
{
	$channelid = 1;
	$issend = 1;
	$corank = 0;
	$reid = 0;
	$topid = 0;
	$typedir = '';
	$moresite = 0;
	if($id>0)
	{
		$myrow = $dsql->GetOne(" Select tp.*,ch.typename as ctypename From `#@__arctype` tp left join `#@__channeltype` ch on ch.id=tp.channeltype where tp.id=$id ");
		$channelid = $myrow['channeltype'];
		$issennd = $myrow['issend'];
		$corank = $myrow['corank'];
		$topid = $myrow['topid'];
		$typedir = $myrow['typedir'];
	}

	//父栏目是否为二级站点
	$moresite = empty($myrow['moresite']) ? 0 : $myrow['moresite'];
}

include DedeInclude('templets/catalog_add.htm');

?>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?