2011-09-20 02:13:59 +00:00
|
|
|
|
<?php
|
|
|
|
|
$this->headTitle($this->config->title->site);
|
|
|
|
|
$this->headTitle('后台管理');
|
|
|
|
|
$this->headTitle()->setSeparator(' - ');
|
|
|
|
|
$this->headLink()->appendStylesheet('/css/admin.css');
|
|
|
|
|
$this->breadcrumb('<a href="/">首页</a>');
|
|
|
|
|
$this->breadcrumb('<a href="/admin">后台首页</a>');
|
|
|
|
|
$this->breadcrumb('<a href="/admin/data">数据管理</a>');
|
|
|
|
|
$this->breadcrumb('元数据管理</a>');
|
|
|
|
|
$this->breadcrumb()->setSeparator(' > ');
|
|
|
|
|
?>
|
|
|
|
|
<div id="leftPanel">
|
|
|
|
|
<?= $this->partial('data/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; ?>
|
|
|
|
|
|
|
|
|
|
<div class="right_title">元数据管理</div>
|
|
|
|
|
|
|
|
|
|
<div class="search">
|
|
|
|
|
<form action="" method="get">
|
|
|
|
|
<input type="hidden" name="search" value='1' />
|
|
|
|
|
<ul>
|
|
|
|
|
<li><label>搜索关键字</label><input type="text" name="keyword" value="<?php echo $this->keyword; ?>" /></li>
|
|
|
|
|
<li><input type="submit" class="searchbtn" value="搜索" /></li>
|
|
|
|
|
</ul>
|
|
|
|
|
</form>
|
|
|
|
|
</div><!-- search DIV -->
|
|
|
|
|
|
|
|
|
|
<a href="/admin/data/md/down/1">下载全部xml元数据</a>
|
|
|
|
|
<?php if (count($this->paginator)): ?>
|
|
|
|
|
<div id="metadata">
|
|
|
|
|
<?php foreach ($this->paginator as $item): ?>
|
|
|
|
|
<ul><li><a href="/data/<?= $item['uuid']; ?>"><?= $item['title']; ?></a>
|
|
|
|
|
[大小:<?= $item['filesize']; ?>M,创建时间:<?= date('Y-m-d',strtotime($item['ts_created'])); ?>
|
|
|
|
|
,查看:<?= $item['viewed']; ?>次。 操作:
|
|
|
|
|
<a href="<?= $this->config->geonetwork->url; ?>srv/cn/metadata.edit?id=<?= $item['gid']; ?>" target="_blank">编辑</a>
|
|
|
|
|
<a href="/admin/data/md/delete/<?= $item['id']; ?>">删除</a>
|
2011-10-26 09:23:29 +00:00
|
|
|
|
<a href="/admin/data/sync/uuid/<?= $item['uuid']; ?>">同步</a> <a href="/admin/data/md/att/1/uuid/<?php echo $item['uuid'];?>">附件管理</a>
|
|
|
|
|
<?php if (@!is_numeric($item['mdstatus'])) : ?>
|
|
|
|
|
<a href="/admin/review/addon/uuid/<?php echo $item['uuid'];?>">放入元数据评审</a>
|
|
|
|
|
<?php endif; ?>
|
|
|
|
|
<a href="/admin/data/source/do/datasource/uuid/<?php echo $item['uuid'];?>">编辑数据来源</a>
|
2011-10-14 03:20:45 +00:00
|
|
|
|
]</li>
|
2011-09-20 02:13:59 +00:00
|
|
|
|
<li>数据贡献者:<?= $item['author']; ?></li>
|
|
|
|
|
<li><?= $item['description']; ?></li>
|
|
|
|
|
</ul>
|
|
|
|
|
<?php endforeach; ?>
|
|
|
|
|
</div>
|
|
|
|
|
<?php endif; ?>
|
|
|
|
|
<?php echo $this->paginator; ?>
|
2009-03-06 03:20:46 +00:00
|
|
|
|
</div>
|