24 lines
964 B
PHTML
Executable File
24 lines
964 B
PHTML
Executable File
<?php
|
|
$this->headTitle('元数据');
|
|
$this->headTitle('上传元数据');
|
|
$this->headTitle()->setSeparator(' - ');
|
|
$this->headLink()->appendStylesheet('/css/metadata.css');
|
|
$this->breadcrumb('<a href="/">首页</a>');
|
|
$this->breadcrumb('<a href="/metadata">数据产品与服务</a>');
|
|
$this->breadcrumb('<a href="/metadata/import">上传元数据</a>');
|
|
$this->breadcrumb()->setSeparator(' > ');
|
|
?>
|
|
<div id='tools'>
|
|
<?= $this->partial('metadata/tools.phtml'); ?>
|
|
</div>
|
|
<div class="form">
|
|
<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>
|