2009-03-06 03:20:46 +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(' > ');
|
|
|
|
|
?>
|
2014-07-23 08:38:32 +00:00
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="hidden-sm hidden-xs col-md-2">
|
|
|
|
|
<?= $this->partial('data/left.phtml'); ?>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-md-10 col-sm-12">
|
|
|
|
|
<form method="POST">
|
|
|
|
|
<p>服务器上元数据所在目录(含所有子目录的xml文件): <input type="text" name="directory"></p>
|
|
|
|
|
<input type="submit" value="导入元数据" />
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|
2009-03-06 03:20:46 +00:00
|
|
|
|
</div>
|