moodle/mod/glossary/import.html
David Mudrak 94c8a38626 MDL-21695 Glossary module now uses new help strings
AMOS BEGIN
 HLP glossary/aliases2.html,[aliases_help,mod_glossary]
 HLP glossary/allowcomments.html,[allowcomments_help,mod_glossary]
 HLP glossary/allowduplicatedentries.html,[allowduplicatedentries_help,mod_glossary]
 HLP glossary/allowprintview.html,[allowprintview_help,mod_glossary]
 HLP glossary/attachment2.html,[attachment_help,mod_glossary]
 HLP glossary/attachment.html,[attachment_help,mod_glossary]
 HLP glossary/casesensitive.html,[casesensitive_help,mod_glossary]
 HLP glossary/defaultapproval.html,[defaultapproval_help,mod_glossary]
 HLP glossary/destination.html,[destination_help,mod_glossary]
 HLP glossary/displayformat.html,[displayformat_help,mod_glossary]
 HLP glossary/editalways.html,[editalways_help,mod_glossary]
 HLP glossary/filetoimport.html,[filetoimport_help,mod_glossary]
 HLP glossary/fullmatch.html,[fullmatch_help,mod_glossary]
 HLP glossary/globalglossary.html,[isglobal_help,mod_glossary]
 HLP glossary/linkcategory.html,[linkcategory_help,mod_glossary]
 HLP glossary/mainglossary.html,[glossarytype_help,mod_glossary]
 HLP glossary/rssarticles.html,[rssarticles_help,mod_glossary]
 HLP glossary/rsstype.html,[rsstype_help,mod_glossary]
 HLP glossary/shows.html,[showspecial_help,mod_glossary]
 HLP glossary/shows.html,[showalphabet_help,mod_glossary]
 HLP glossary/shows.html,[showall_help,mod_glossary]
 HLP glossary/usedynalinkentry.html,[entryusedynalink_help,mod_glossary]
 HLP glossary/usedynalink.html,[usedynalink_help,mod_glossary]
AMOS END
2010-05-03 09:51:47 +00:00

51 lines
2.1 KiB
HTML

<form method="post" action="import.php" enctype="multipart/form-data">
<table border="0" cellpadding="3" cellspacing="3" width="100%">
<tr>
<td align="right" style="width:30%;vertical-align:top"><b><?php print_string("filetoimport","glossary") ?>:<br />
<?php
echo '(';
print_string("maxsize", "", display_size(get_max_upload_file_size($CFG->maxbytes, $course->maxbytes)));
echo ') ';
echo $OUTPUT->help_icon('filetoimport', 'glossary');
?>
</b></td>
<td style="width:70%">
<?php
require_once($CFG->dirroot.'/lib/uploadlib.php');
upload_print_form_fragment(1,array('file'),null,false,null,0,0);
?>
</td>
</tr>
<tr valign="top">
<td align="right" colspan="2">
<table border="0" cellpadding="0" cellspacing="3" width="100%">
<tr>
<td align="right" style="width:25%"><?php print_string("destination","glossary") ?>:</td>
<td style="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 echo $OUTPUT->help_icon('destination', 'glossary') ?></td>
<td style="width:25%" align="right"><?php print_string("importcategories","glossary") ?>:</td>
<td style="width:25%"><input type="checkbox" name="catsincl" value="1" alt="<?php print_string("importcategories","glossary") ?>" /></td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="right" colspan="2">
<table border="0" cellpadding="3" cellspacing="3" width="100%">
<tr>
<td style="width:50%" align="right"><input type="submit" value="<?php print_string("savechanges") ?>" /></td>
<td style="width:50%"><input type="reset" value="<?php print_string("revert") ?>" /></td>
</tr>
</table>
</td>
</tr>
</table>
<div>
<input type="hidden" name="id" value="<?php p($id) ?>" />
<input type="hidden" name="sesskey" value="<?php echo sesskey() ?>" />
<input type="hidden" name="step" value="1" />
</div>
</form>