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-09-13 02:18:32 +00:00
|
|
|
<div class="hidden-sm hidden-xs col-md-2">
|
2009-03-06 03:20:46 +00:00
|
|
|
<?= $this->partial('data/left.phtml'); ?>
|
|
|
|
</div>
|
2014-09-13 02:18:32 +00:00
|
|
|
<div class="col-md-10 col-sm-12">
|
2009-03-06 03:20:46 +00:00
|
|
|
<form enctype="multipart/form-data" method="POST">
|
|
|
|
<!-- MAX_FILE_SIZE must precede the file input field -->
|
|
|
|
<input type="hidden" name="MAX_FILE_SIZE" value="3000000" />
|
|
|
|
<!-- Name of input element determines name in $_FILES array -->
|
|
|
|
上传元数据文件: <br />
|
|
|
|
<input name="xmlfile[]" type="file" /><br />
|
|
|
|
<input name="xmlfile[]" type="file" /><br />
|
|
|
|
<input name="xmlfile[]" type="file" /><br />
|
|
|
|
<input type="submit" value="导入" />
|
|
|
|
</form>
|
|
|
|
|
|
|
|
</div>
|