102 lines
3.0 KiB
PHTML
102 lines
3.0 KiB
PHTML
<?php
|
|
$this->headTitle($this->config->title->site);
|
|
$this->headTitle('后台管理');
|
|
$this->headTitle()->setSeparator(' - ');
|
|
$this->headScript()->appendFile('/static/js/jquery.tagInput.min.js');
|
|
$this->headScript()->appendFile('/static/js/kindeditor-min.js');
|
|
$this->headScript()->appendFile('/static/js/kindlang/zh_CN.js');
|
|
$this->headLink()->appendStylesheet('/static/css/kindskin/default/default.css');
|
|
?>
|
|
<?php
|
|
$auth = Zend_Auth::getInstance();
|
|
if($auth->hasIdentity())
|
|
{
|
|
$user = $auth->getIdentity();
|
|
$uname=$user->username;
|
|
$realname = $user->realname;
|
|
}
|
|
?>
|
|
<script type="text/javascript">
|
|
/* sample tags */
|
|
var tags=[
|
|
{tag:"冻土",freq:30},{tag:"寒旱所",freq:25}, {tag:"大气",freq:10},{tag:"高原",freq:4},
|
|
{tag:"西部",freq:3},{tag:"地理",freq:8}, {tag:"环境",freq:3},{tag:"地质",freq:20}
|
|
];
|
|
|
|
$(document).ready(function(){
|
|
|
|
/* setup navigation, content boxes, etc... */
|
|
Administry.setup();
|
|
|
|
KindEditor.ready(function(K) {
|
|
editor=K.create('textarea[name="body"]', {
|
|
cssPath : '/static/js/plugins/code/prettify.css',
|
|
uploadJson : '/plugins/upload_json.php',
|
|
fileManagerJson : '/plugins/file_manager_json.php',
|
|
allowFileManager : true
|
|
});
|
|
});
|
|
|
|
/* tag input field */
|
|
$("#keyword").tagInput({
|
|
tags:tags,
|
|
//jsonUrl:"tags.json",
|
|
sortBy:"frequency",
|
|
suggestedTags:["冻土", "寒旱所", "大气", "高原", "西部", "环境"],
|
|
tagSeparator:",",
|
|
autoFilter:true,
|
|
autoStart:false,
|
|
//suggestedTagsPlaceHolder:$("#suggested"),
|
|
boldify:true
|
|
});
|
|
});
|
|
</script>
|
|
<!-- Page title -->
|
|
<div id="pagetitle">
|
|
<div class="wrapper">
|
|
<h1>新闻中心</h1>
|
|
<!-- Quick search box -->
|
|
<form action="" method="get"><input class="" type="text" id="q" name="q" /></form>
|
|
</div>
|
|
</div>
|
|
<!-- End of Page title -->
|
|
|
|
<!-- Page content -->
|
|
<div id="page">
|
|
<!-- Wrapper -->
|
|
<div class="wrapper">
|
|
|
|
<!-- Right column/section -->
|
|
<aside class="column width2 first">
|
|
<?= $this->partial('news/left.phtml'); ?>
|
|
</aside>
|
|
<!-- End of Right column/section -->
|
|
|
|
<!-- Left column/section -->
|
|
<section class="column width6">
|
|
|
|
<h3><?php echo $this->title;?></h3>
|
|
|
|
<ul>
|
|
<li><a href="">查看文章</a></li>
|
|
<li><a href="">返回文章列表</a></li>
|
|
<li><a href="">更改文章</a></li>
|
|
<li><a href="">发表新文章</a></li>
|
|
<li>页面将自动跳转至文章列表页</li>
|
|
</ul>
|
|
|
|
</section>
|
|
<!-- End of Left column/section -->
|
|
|
|
|
|
|
|
</div>
|
|
<!-- End of Wrapper -->
|
|
</div>
|
|
<!-- End of Page content -->
|
|
<script type="text/javascript">
|
|
$(function(){
|
|
$('#nav_news').addClass("current");
|
|
});
|
|
setTimeout("self.location='/admin/news/list/typeid/<?php echo $this->view->typeid;?>'",500);
|
|
</script>
|