mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 14:27:22 +01:00
46 lines
2.2 KiB
HTML
46 lines
2.2 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%"><b><?php print_string("filetoimport","glossary") ?>:</b></td>
|
|
<td width="70%">
|
|
<?php
|
|
require_once($CFG->dirroot.'/lib/uploadlib.php');
|
|
upload_print_form_fragment(1,array('file'),null,false,null,0,0);
|
|
helpbutton("filetoimport", get_string("filetoimport", "glossary"), "glossary");
|
|
echo ' ';
|
|
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%" align="right"><?php print_string("destination","glossary") ?>:</td>
|
|
<td width="25%"><select size="1" name="dest">
|
|
<option selected="selected" value="current"><?php print_string("currentglossary","glossary") ?></option>
|
|
<option value="new"><?php print_string("newglossary","glossary") ?></option>
|
|
</select> <?php helpbutton("destination", get_string("destination", "glossary"), "glossary") ?></td>
|
|
<td width="25%" align="right"><?php print_string("importcategories","glossary") ?>:</td>
|
|
<td width="25%"><input type="checkbox" name="catsincl" value="1" alt="<?php print_string("importcategories","glossary") ?>" /> <?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%" 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>
|