2012-08-23 08:01:19 +00:00
|
|
|
|
<?php
|
|
|
|
|
$this->headTitle($this->config->title->site);
|
|
|
|
|
$this->headTitle('后台管理');
|
|
|
|
|
$this->headTitle()->setSeparator(' - ');
|
|
|
|
|
$this->headScript()->appendFile('/js/jquery-1.7.min.js');
|
|
|
|
|
$this->headLink()->appendStylesheet('/css/admin.css');
|
|
|
|
|
$this->headScript()->appendFile('/js/jquery.colorbox-min.js');
|
|
|
|
|
$this->headLink()->appendStylesheet('/css/author.css');
|
|
|
|
|
$this->headLink()->appendStylesheet('/css/colorbox.css');
|
|
|
|
|
$this->breadcrumb('<a href="/">首页</a>');
|
|
|
|
|
$this->breadcrumb('<a href="/admin">后台首页</a>');
|
|
|
|
|
$this->breadcrumb('<a href="/admin/news">新闻中心</a>');
|
|
|
|
|
$this->breadcrumb('栏目管理');
|
|
|
|
|
?>
|
|
|
|
|
<div id="leftPanel">
|
|
|
|
|
<?= $this->partial('news/left.phtml'); ?>
|
|
|
|
|
</div>
|
|
|
|
|
<div id="rightPanel">
|
|
|
|
|
<?php if ($this->msg or $this->messages) :?>
|
|
|
|
|
<div id="message">
|
|
|
|
|
<?php if ($this->msg) : ?>
|
|
|
|
|
<p><?php echo $this->msg; ?></p>
|
|
|
|
|
<?php endif; if ($this->messages): foreach($this->messages as $msg): ?>
|
|
|
|
|
<p><?php echo $msg; ?></p>
|
|
|
|
|
<?php endforeach;endif; ?>
|
|
|
|
|
</div>
|
|
|
|
|
<?php endif; ?>
|
|
|
|
|
<form id="sampleform" method="post" action="#">
|
|
|
|
|
|
|
|
|
|
<fieldset>
|
|
|
|
|
<legend>栏目添加</legend>
|
|
|
|
|
|
|
|
|
|
<p>
|
|
|
|
|
<label class="required" for="ctitle">栏目标题:</label><br/>
|
|
|
|
|
<input type="text" id="ctitle" class="half" value="<?= $this->info['title']?>" name="ctitle"/>
|
|
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
<p>
|
|
|
|
|
<label>父级栏目</label><br />
|
|
|
|
|
<select name="fid" style="width:300px">
|
|
|
|
|
<option value="0">无</option>
|
|
|
|
|
<?php if(!empty($this->categories)) :?>
|
|
|
|
|
<?php foreach($this->categories as $v) : ?>
|
|
|
|
|
<?php if($v['id'] == $this->info['fid']) :?>
|
|
|
|
|
<option value="<?= $v['id'];?>" selected="selected"><?= $v['title'];?></option>
|
|
|
|
|
<?php else: ?>
|
|
|
|
|
<option value="<?= $v['id'];?>"><?= $v['title'];?></option>
|
|
|
|
|
<?php endif;?>
|
|
|
|
|
<?php endforeach;?>
|
|
|
|
|
<?php endif; ?>
|
|
|
|
|
</select>
|
|
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
<p>
|
|
|
|
|
<label class="required" for="ctitle">栏目URL:</label><br/>
|
|
|
|
|
<input type="text" id="url" class="half" value="<?= $this->info['url']?>" name="url"/>(仅小写英文字母与数字)
|
|
|
|
|
<small>如填写: technology 则前台访问地址为: http://westdc.westgis.ac.cn/news/technology </small>
|
|
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
<p>
|
|
|
|
|
<label class="required" for="keyword">关键字:</label><br/>
|
|
|
|
|
<input type="text" id="keyword" class="half" value="<?= $this->info['keywords']?>" name="keyword"/>
|
|
|
|
|
<small>e.g. 高程,气象,地理</small>
|
|
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
<p>
|
|
|
|
|
<label class="required" for="displayorder">显示顺序:</label><br/>
|
2012-08-31 07:38:09 +00:00
|
|
|
|
<input type="text" id="displayorder" class="half" value="<?= $this->info['displayorder']?>" name="displayorder"/>
|
2012-08-23 08:01:19 +00:00
|
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
<p>
|
|
|
|
|
<label class="required" for="discript">描述:</label><br/>
|
|
|
|
|
<textarea id="discript" class="medium half" name="description"><?= $this->info['description']?></textarea>
|
|
|
|
|
<small>80个汉字以内,不能使用折行</small>
|
|
|
|
|
</p>
|
|
|
|
|
|
2012-08-31 07:38:09 +00:00
|
|
|
|
<p>
|
|
|
|
|
<label class="required" for="display">是否显示:</label><br/>
|
|
|
|
|
<select name="display" id="display">
|
|
|
|
|
<option value="0" <?php if(empty($this->info['display']) || $this->info['display']==0)echo 'selected="selected"'; ?>>显示</option>
|
|
|
|
|
<option value="-1" <?php if($this->info['display']== -1 )echo 'selected="selected"'; ?>>隐藏</option>
|
|
|
|
|
</select>
|
|
|
|
|
</p>
|
|
|
|
|
|
2012-08-23 08:01:19 +00:00
|
|
|
|
<input type="hidden" name="submit" value="1" />
|
|
|
|
|
<input type="hidden" name="edit" value="<?= $this->info['id']?>"? />
|
|
|
|
|
<p class="box"><input type="submit" class="btn btn-green big" value="提交"/> or <input type="reset" class="btn" value="重置"/></p>
|
|
|
|
|
|
|
|
|
|
</fieldset>
|
|
|
|
|
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|