mirror of
https://github.com/moodle/moodle.git
synced 2025-01-20 23:18:43 +01:00
73e6ac63d9
Minor changes in glossary export/import to include the displayformat field. Added a new feature (it was hidden and uncompleted in source code): Import a glossary file, creating automatically a new glossary activity. Bug 1606. http://moodle.org/bugs/bug.php?op=show&bugid=1606 Merged from MOODLE_13_STABLE
48 lines
2.1 KiB
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>
|