12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- /**
- * @version $Id: story_edit.php 1 9:02 2010年9月25日Z 蓝色随想 $
- * @package DedeCMS.Module.Book
- * @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");
- CheckPurview('story_Edit');
- if(!isset($action)) $action = '';
- //读取所有栏目
- $dsql->SetQuery("SELECT id,classname,pid,rank FROM #@__story_catalog ORDER BY rank ASC");
- $dsql->Execute();
- $ranks = Array();
- $btypes = Array();
- $stypes = Array();
- while($row = $dsql->GetArray())
- {
- if($row['pid']==0)
- {
- $btypes[$row['id']] = $row['classname'];
- }
- else
- {
- $stypes[$row['pid']][$row['id']] = $row['classname'];
- }
- $ranks[$row['id']] = $row['rank'];
- }
- $lastid = $row['id'];
- $msg = '';
- $books = $dsql->GetOne("SELECT S.*,A.membername FROM #@__arcrank AS A LEFT JOIN #@__story_books AS S ON A.rank=S.arcrank WHERE S.bid='$bookid' ");
- require_once(DEDEADMIN. '/templets/story_edit.htm');
- ?>
|