catalog_add.php 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284
  1. <?php
  2. /**
  3. * 栏目添加
  4. *
  5. * @version $Id: catalog_add.php 1 14:31 2010年7月12日Z tianya $
  6. * @package DedeCMS.Administrator
  7. * @copyright Copyright (c) 2007 - 2010, DesDev, Inc.
  8. * @license http://help.dedecms.com/usersguide/license.html
  9. * @link http://www.dedecms.com
  10. */
  11. require_once(dirname(__FILE__)."/config.php");
  12. require_once(DEDEINC."/typelink.class.php");
  13. if(empty($listtype)) $listtype='';
  14. if(empty($dopost)) $dopost = '';
  15. if(empty($upinyin)) $upinyin = 0;
  16. if(empty($channelid)) $channelid = 1;
  17. if(isset($channeltype)) $channelid = $channeltype;
  18. $id = empty($id) ? 0 :intval($id);
  19. $reid = empty($reid) ? 0 :intval($reid);
  20. $nid = 'article';
  21. if($id==0 && $reid==0)
  22. {
  23. CheckPurview('t_New');
  24. }
  25. else
  26. {
  27. $checkID = empty($id) ? $reid : $id;
  28. CheckPurview('t_AccNew');
  29. CheckCatalog($checkID, '你无权在本栏目下创建子类!');
  30. }
  31. /*栏目二开字段 by 小虎哥*/
  32. $dsql->GetTableFields('#@__arctype');
  33. $fieldArray = $dsql->GetArray();
  34. if (!in_array('typenameen', $fieldArray)) { // 英文栏目名称
  35. $dsql->ExecuteNoneQuery("ALTER TABLE `#@__arctype` ADD `typenameen` char(100) NOT NULL default ''");
  36. }
  37. if (!in_array('typeimg', $fieldArray)) { // 栏目封面图
  38. $dsql->ExecuteNoneQuery("ALTER TABLE `#@__arctype` ADD `typeimg` char(100) NOT NULL default ''");
  39. }
  40. /*--end*/
  41. if(empty($myrow)) $myrow = array();
  42. $dsql->SetQuery("SELECT id,typename,nid FROM `#@__channeltype` WHERE id<>-1 AND isshow=1 ORDER BY id");
  43. $dsql->Execute();
  44. while($row=$dsql->GetObject())
  45. {
  46. $channelArray[$row->id]['typename'] = $row->typename;
  47. $channelArray[$row->id]['nid'] = $row->nid;
  48. if($row->id==$channelid)
  49. {
  50. $nid = $row->nid;
  51. }
  52. }
  53. if($dopost=='quick')
  54. {
  55. $tl = new TypeLink(0);
  56. $typeOptions = $tl->GetOptionArray(0,0,$channelid);
  57. include DedeInclude('templets/catalog_add_quick.htm');
  58. exit();
  59. }
  60. /*---------------------
  61. function action_savequick(){ }
  62. ---------------------*/
  63. else if($dopost=='savequick')
  64. {
  65. if(!isset($savetype)) $savetype = '';
  66. $isdefault = isset($isdefault)? $isdefault : 0;
  67. $tempindex = "{style}/index_{$nid}.htm";
  68. $templist = "{style}/list_{$nid}.htm";
  69. $temparticle = "{style}/article_{$nid}.htm";
  70. $queryTemplate = "INSERT INTO `#@__arctype`(reid,topid,sortrank,typename,typenameen,typedir,typeimg,isdefault,defaultname,issend,channeltype,
  71. tempindex,templist,temparticle,modname,namerule,namerule2,ispart,corank,description,keywords,seotitle,moresite,siteurl,sitepath,ishidden,`cross`,`crossid`,`content`,`smalltypes`)
  72. VALUES('~reid~','~topid~','~rank~','~typename~','~typenameen~','~typedir~','~typeimg~','$isdefault','$defaultname','$issend','$channeltype',
  73. '$tempindex','$templist','$temparticle','default','$namerule','$namerule2','0','0','','','~typename~','0','','','0','0','0','','')";
  74. if (empty($savetype))
  75. {
  76. foreach($_POST as $k=>$v)
  77. {
  78. if(preg_match("#^posttype#", $k))
  79. {
  80. $k = str_replace('posttype', '', $k);
  81. }
  82. else
  83. {
  84. continue;
  85. }
  86. $rank = ${'rank'.$k};
  87. $toptypename = trim(${'toptype'.$k});
  88. $sontype = trim(${'sontype'.$k});
  89. $toptypedir = GetPinyin(stripslashes($toptypename));
  90. $toptypedir = $referpath=='parent' ? $nextdir.'/'.$toptypedir : '/'.$toptypedir;
  91. if(empty($toptypename))
  92. {
  93. continue;
  94. }
  95. $sql = str_replace('~reid~','0',$queryTemplate);
  96. $sql = str_replace('~topid~','0',$sql);
  97. $sql = str_replace('~rank~',$rank,$sql);
  98. $sql = str_replace('~typename~',$toptypename,$sql);
  99. $sql = str_replace('~typedir~',$toptypedir,$sql);
  100. $dsql->ExecuteNoneQuery($sql);
  101. $tid = $dsql->GetLastID();
  102. if($tid>0 && $sontype!='')
  103. {
  104. $sontypes = explode(',',$sontype);
  105. foreach($sontypes as $k=>$v)
  106. {
  107. $v = trim($v);
  108. if($v=='')
  109. {
  110. continue;
  111. }
  112. $typedir = $toptypedir.'/'.GetPinyin(stripslashes($v));
  113. $sql = str_replace('~reid~',$tid,$queryTemplate);
  114. $sql = str_replace('~topid~',$tid,$sql);
  115. $sql = str_replace('~rank~',$k,$sql);
  116. $sql = str_replace('~typename~',$v,$sql);
  117. $sql = str_replace('~typedir~',$typedir,$sql);
  118. $dsql->ExecuteNoneQuery($sql);
  119. }
  120. }
  121. }
  122. } else {
  123. $row = $dsql->GetOne("SELECT `typedir` FROM `#@__arctype` WHERE `id`={$reid}");
  124. foreach($_POST as $k=>$v)
  125. {
  126. if(preg_match("#^posttype#", $k))
  127. {
  128. $k = str_replace('posttype', '', $k);
  129. }
  130. else
  131. {
  132. continue;
  133. }
  134. $rank = ${'rank'.$k};
  135. $toptypename = trim(${'reltype'.$k});
  136. $toptypedir = GetPinyin(stripslashes($toptypename));
  137. switch ($referpath) {
  138. case 'parent':
  139. $toptypedir = $nextdir.'/'.$toptypedir;
  140. break;
  141. case 'typepath':
  142. $toptypedir = isset($row['typedir'])? $row['typedir'].'/'.$toptypedir : '/'.$toptypedir;
  143. break;
  144. default:
  145. $toptypedir = '/'.$toptypedir;
  146. break;
  147. }
  148. if(empty($toptypename))
  149. {
  150. continue;
  151. }
  152. $sql = str_replace('~reid~', $reid, $queryTemplate);
  153. $sql = str_replace('~topid~', $reid, $sql);
  154. $sql = str_replace('~rank~', $rank, $sql);
  155. $sql = str_replace('~typename~', $toptypename, $sql);
  156. $sql = str_replace('~typedir~', $toptypedir, $sql);
  157. $dsql->ExecuteNoneQuery($sql);
  158. }
  159. }
  160. UpDateCatCache();
  161. ShowMsg('成功增加指定栏目!','catalog_main.php');
  162. exit();
  163. }
  164. /*---------------------
  165. function action_save(){ }
  166. ---------------------*/
  167. else if($dopost=='save')
  168. {
  169. $smalltypes = '';
  170. if(empty($smalltype)) $smalltype = '';
  171. if(is_array($smalltype)) $smalltypes = join(',',$smalltype);
  172. if(!isset($sitepath)) $sitepath = '';
  173. if($topid==0 && $reid>0) $topid = $reid;
  174. if($ispart!=0) $cross = 0;
  175. $description = Html2Text($description,1);
  176. $keywords = Html2Text($keywords,1);
  177. if($ispart != 2 )
  178. {
  179. //栏目的参照目录
  180. if($referpath=='cmspath') $nextdir = '{cmspath}';
  181. if($referpath=='basepath') $nextdir = '';
  182. //用拼音命名
  183. if($upinyin==1 || $typedir=='')
  184. {
  185. $typedir = GetPinyin(stripslashes($typename));
  186. }
  187. $typedir = $nextdir.'/'.$typedir;
  188. $typedir = preg_replace("#\/{1,}#", "/", $typedir);
  189. }
  190. //开启多站点时的设置(仅针对顶级栏目)
  191. if($reid==0 && $moresite==1)
  192. {
  193. $sitepath = $typedir;
  194. //检测二级网址
  195. if($siteurl!='')
  196. {
  197. $siteurl = preg_replace("#\/$#", "", $siteurl);
  198. if(!preg_match("#http:\/\/#i", $siteurl))
  199. {
  200. ShowMsg("你绑定的二级域名无效,请用(http://host)的形式!","-1");
  201. exit();
  202. }
  203. if(preg_match("#".$cfg_basehost."#i", $siteurl))
  204. {
  205. ShowMsg("你绑定的二级域名与当前站点是同一个域,不需要绑定!","-1");
  206. exit();
  207. }
  208. }
  209. }
  210. //创建目录
  211. if($ispart != 2)
  212. {
  213. $true_typedir = str_replace("{cmspath}", $cfg_cmspath, $typedir);
  214. $true_typedir = preg_replace("#\/{1,}#", "/", $true_typedir);
  215. if(!CreateDir($true_typedir))
  216. {
  217. ShowMsg("创建目录 {$true_typedir} 失败,请检查你的路径是否存在问题!","-1");
  218. exit();
  219. }
  220. }
  221. $in_query = "INSERT INTO `#@__arctype`(reid,topid,sortrank,typename,typenameen,typedir,typeimg,isdefault,defaultname,issend,channeltype,
  222. tempindex,templist,temparticle,modname,namerule,namerule2,
  223. ispart,corank,description,keywords,seotitle,moresite,siteurl,sitepath,ishidden,`cross`,`crossid`,`content`,`smalltypes`)
  224. VALUES('$reid','$topid','$sortrank','$typename','$typenameen','$typedir','$typeimg','$isdefault','$defaultname','$issend','$channeltype',
  225. '$tempindex','$templist','$temparticle','default','$namerule','$namerule2',
  226. '$ispart','$corank','$description','$keywords','$seotitle','$moresite','$siteurl','$sitepath','$ishidden','$cross','$crossid','$content','$smalltypes')";
  227. if(!$dsql->ExecuteNoneQuery($in_query))
  228. {
  229. ShowMsg("保存目录数据时失败,请检查你的输入资料是否存在问题!","-1");
  230. exit();
  231. }
  232. UpDateCatCache();
  233. if($reid>0)
  234. {
  235. PutCookie('lastCid',GetTopid($reid),3600*24,'/');
  236. }
  237. ShowMsg("成功创建一个分类!","catalog_main.php");
  238. exit();
  239. }//End dopost==save
  240. //获取从父目录继承的默认参数
  241. if($dopost=='')
  242. {
  243. $channelid = 1;
  244. $issend = 1;
  245. $corank = 0;
  246. $reid = 0;
  247. $topid = 0;
  248. $typedir = '';
  249. $moresite = 0;
  250. if($id>0)
  251. {
  252. $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 ");
  253. $channelid = $myrow['channeltype'];
  254. $issennd = $myrow['issend'];
  255. $corank = $myrow['corank'];
  256. $topid = $myrow['topid'];
  257. $typedir = $myrow['typedir'];
  258. }
  259. //父栏目是否为二级站点
  260. $moresite = empty($myrow['moresite']) ? 0 : $myrow['moresite'];
  261. }
  262. include DedeInclude('templets/catalog_add.htm');