2011-03-02 13:16:05 +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; ?>
|
|
|
|
|
|
|
|
|
|
<form method="POST">
|
|
|
|
|
<p>数据目录文件通过在数据服务器所在目录进行信息提取后生成的一系列文本文件,上传到本服务器上再进行处理。具体包括dataset和以UUID为名称的文本文件。</p>
|
2011-03-03 04:15:33 +00:00
|
|
|
|
<p>如若文件很多,处理时间会较长,请耐心等候。</p>
|
|
|
|
|
<p>也可以采用分批处理UUID文件,即一次上传部分UUID文件。</p>
|
2011-03-02 13:16:05 +00:00
|
|
|
|
<p>数据目录文件: <input type="text" name="directory"></p>
|
|
|
|
|
<input type="submit" value="导入数据目录" />
|
|
|
|
|
</form>
|
|
|
|
|
|
|
|
|
|
</div>
|