xxb/module/file/view/import.html.php
2023-10-23 15:51:36 +08:00

28 lines
942 B
PHP
Executable File

<?php
/**
* The import view file of file module of XXB.
*
* @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd., www.zentao.net)
* @license ZOSL (https://zpl.pub/page/zoslv1.html)
* @author Gang Liu <liugang@cnezsoft.com>
* @package file
* @version $Id$
* @link https://xuanim.com
*/
?>
<?php include '../../common/view/header.modal.html.php';?>
<form method='post' id='ajaxForm' enctype='multipart/form-data' action='<?php echo inlink('import')?>'>
<table>
<tr>
<td class="w-p100">
<div class='input-group'>
<span class='input-group-addon'><?php echo $lang->importFile;?></span>
<?php echo html::file('files', "class='form-control'")?>
</div>
</td>
<td><?php echo html::submitButton($lang->import);?></td>
</tr>
</table>
</form>
<?php include '../../common/view/footer.modal.html.php';?>