moodle/mod/glossary/import.html

48 lines
2.1 KiB
HTML

<form method="POST" action="import.php" name="form" enctype="multipart/form-data">
<table border="0" cellpadding="3" cellspacing="3" width="100%">
<tr>
<td align="right" valign="top" width="30%"><p><b><?php print_string("filetoimport","glossary") ?>:</b></p></td>
<td width="70%">
<input type="hidden" name="MAX_FILE_SIZE" value="<?php echo get_max_upload_file_size() ?>" />
<input type="file" name="file" size="40"> <br />
<?php
helpbutton("filetoimport", get_string("filetoimport", "glossary"), "glossary");
print_string("maxsize", "", display_size(get_max_upload_file_size()));
?>
</td>
</tr>
<tr valign="top">
<td align="right" colspan="2">
<table border="0" cellpadding="0" cellspacing="3" width="100%">
<tr>
<td width="25%">
<p align="right"><?php p(get_string("destination","glossary")) ?>:</td>
<td width="25%"><select size="1" name="dest">
<option selected value="current"><?php p(get_string("currentglossary","glossary")) ?></option>
<option value="new"><?php p(get_string("newglossary","glossary")) ?></option>
</select> <?php helpbutton("destination", get_string("destination", "glossary"), "glossary") ?></td>
<td width="25%">
<p align="right"><?php p(get_string("importcategories","glossary")) ?>:</td>
<td width="25%"><input type="checkbox" name="catsincl" value="1" /> <?php helpbutton("importcategories", get_string("importcategories", "glossary"), "glossary") ?></td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="right" colspan="2">
<table border="0" cellpadding="3" cellspacing="3" width="100%">
<tr>
<td width="50%">
<p align="right"><input type="submit" value="<?php print_string("savechanges") ?>" /></td>
<td width="50%"><input type="reset" value="<?php print_string("revert") ?>" /></td>
</tr>
</table>
</td>
</tr>
</table>
<input type="hidden" name="id" value="<?php p($id) ?>" />
<input type="hidden" name="l" value="<?php p($l) ?>" />
<input type="hidden" name="lasttab" value="<?php p($lasttab) ?>" />
<input type="hidden" name="step" value="1" />
</form>