123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284 |
- <?php
- /**
- * 栏目添加
- *
- * @version $Id: catalog_add.php 1 14:31 2010年7月12日Z tianya $
- * @package DedeCMS.Administrator
- * @copyright Copyright (c) 2007 - 2010, DesDev, Inc.
- * @license http://help.dedecms.com/usersguide/license.html
- * @link http://www.dedecms.com
- */
- 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);
- $reid = empty($reid) ? 0 :intval($reid);
- $nid = 'article';
- if($id==0 && $reid==0)
- {
- CheckPurview('t_New');
- }
- else
- {
- $checkID = empty($id) ? $reid : $id;
- CheckPurview('t_AccNew');
- CheckCatalog($checkID, '你无权在本栏目下创建子类!');
- }
- /*栏目二开字段 by 小虎哥*/
- $dsql->GetTableFields('#@__arctype');
- $fieldArray = $dsql->GetArray();
- if (!in_array('typenameen', $fieldArray)) { // 英文栏目名称
- $dsql->ExecuteNoneQuery("ALTER TABLE `#@__arctype` ADD `typenameen` char(100) NOT NULL default ''");
- }
- if (!in_array('typeimg', $fieldArray)) { // 栏目封面图
- $dsql->ExecuteNoneQuery("ALTER TABLE `#@__arctype` ADD `typeimg` char(100) NOT NULL default ''");
- }
- /*--end*/
- 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')
- {
- $tl = new TypeLink(0);
- $typeOptions = $tl->GetOptionArray(0,0,$channelid);
- include DedeInclude('templets/catalog_add_quick.htm');
- exit();
- }
- /*---------------------
- function action_savequick(){ }
- ---------------------*/
- else if($dopost=='savequick')
- {
- if(!isset($savetype)) $savetype = '';
- $isdefault = isset($isdefault)? $isdefault : 0;
- $tempindex = "{style}/index_{$nid}.htm";
- $templist = "{style}/list_{$nid}.htm";
- $temparticle = "{style}/article_{$nid}.htm";
- $queryTemplate = "INSERT INTO `#@__arctype`(reid,topid,sortrank,typename,typenameen,typedir,typeimg,isdefault,defaultname,issend,channeltype,
- tempindex,templist,temparticle,modname,namerule,namerule2,ispart,corank,description,keywords,seotitle,moresite,siteurl,sitepath,ishidden,`cross`,`crossid`,`content`,`smalltypes`)
- VALUES('~reid~','~topid~','~rank~','~typename~','~typenameen~','~typedir~','~typeimg~','$isdefault','$defaultname','$issend','$channeltype',
- '$tempindex','$templist','$temparticle','default','$namerule','$namerule2','0','0','','','~typename~','0','','','0','0','0','','')";
-
- if (empty($savetype))
- {
- foreach($_POST as $k=>$v)
- {
- if(preg_match("#^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);
- }
- }
- }
- } else {
-
- $row = $dsql->GetOne("SELECT `typedir` FROM `#@__arctype` WHERE `id`={$reid}");
- foreach($_POST as $k=>$v)
- {
- if(preg_match("#^posttype#", $k))
- {
- $k = str_replace('posttype', '', $k);
- }
- else
- {
- continue;
- }
- $rank = ${'rank'.$k};
- $toptypename = trim(${'reltype'.$k});
- $toptypedir = GetPinyin(stripslashes($toptypename));
- switch ($referpath) {
- case 'parent':
- $toptypedir = $nextdir.'/'.$toptypedir;
- break;
- case 'typepath':
- $toptypedir = isset($row['typedir'])? $row['typedir'].'/'.$toptypedir : '/'.$toptypedir;
- break;
- default:
- $toptypedir = '/'.$toptypedir;
- break;
- }
-
- if(empty($toptypename))
- {
- continue;
- }
- $sql = str_replace('~reid~', $reid, $queryTemplate);
- $sql = str_replace('~topid~', $reid, $sql);
- $sql = str_replace('~rank~', $rank, $sql);
- $sql = str_replace('~typename~', $toptypename, $sql);
- $sql = str_replace('~typedir~', $toptypedir, $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;
- if($ispart!=0) $cross = 0;
-
- $description = Html2Text($description,1);
- $keywords = Html2Text($keywords,1);
-
- if($ispart != 2 )
- {
- //栏目的参照目录
- if($referpath=='cmspath') $nextdir = '{cmspath}';
- if($referpath=='basepath') $nextdir = '';
- //用拼音命名
- if($upinyin==1 || $typedir=='')
- {
- $typedir = GetPinyin(stripslashes($typename));
- }
- $typedir = $nextdir.'/'.$typedir;
- $typedir = preg_replace("#\/{1,}#", "/", $typedir);
- }
- //开启多站点时的设置(仅针对顶级栏目)
- if($reid==0 && $moresite==1)
- {
- $sitepath = $typedir;
- //检测二级网址
- if($siteurl!='')
- {
- $siteurl = preg_replace("#\/$#", "", $siteurl);
- if(!preg_match("#http:\/\/#i", $siteurl))
- {
- ShowMsg("你绑定的二级域名无效,请用(http://host)的形式!","-1");
- exit();
- }
- if(preg_match("#".$cfg_basehost."#i", $siteurl))
- {
- ShowMsg("你绑定的二级域名与当前站点是同一个域,不需要绑定!","-1");
- exit();
- }
- }
- }
- //创建目录
- if($ispart != 2)
- {
- $true_typedir = str_replace("{cmspath}", $cfg_cmspath, $typedir);
- $true_typedir = preg_replace("#\/{1,}#", "/", $true_typedir);
- if(!CreateDir($true_typedir))
- {
- ShowMsg("创建目录 {$true_typedir} 失败,请检查你的路径是否存在问题!","-1");
- exit();
- }
- }
-
- $in_query = "INSERT INTO `#@__arctype`(reid,topid,sortrank,typename,typenameen,typedir,typeimg,isdefault,defaultname,issend,channeltype,
- tempindex,templist,temparticle,modname,namerule,namerule2,
- ispart,corank,description,keywords,seotitle,moresite,siteurl,sitepath,ishidden,`cross`,`crossid`,`content`,`smalltypes`)
- VALUES('$reid','$topid','$sortrank','$typename','$typenameen','$typedir','$typeimg','$isdefault','$defaultname','$issend','$channeltype',
- '$tempindex','$templist','$temparticle','default','$namerule','$namerule2',
- '$ispart','$corank','$description','$keywords','$seotitle','$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');
|