27 lines
1012 B
PHTML
27 lines
1012 B
PHTML
<?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">
|
|
<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>
|