2005-01-24 22:23:01 +00:00
|
|
|
|
2007-01-04 21:32:36 +00:00
|
|
|
<form id="studentform" method="post" action="importstudents.php">
|
2006-11-29 22:06:48 +00:00
|
|
|
<input type="hidden" name="previoussearch" value="<?php echo $previoussearch ?>" />
|
|
|
|
<input type="hidden" name="sesskey" value="<?php echo sesskey() ?>" />
|
|
|
|
<input type="hidden" name="id" value="<?php echo $id?>" />
|
|
|
|
<table summary="" align="center" border="0" cellpadding="5" cellspacing="0">
|
2005-01-24 22:23:01 +00:00
|
|
|
<tr>
|
2006-11-28 19:25:24 +00:00
|
|
|
<td valign="top">
|
|
|
|
<label for="removeselect"><?php echo count($alreadycourses) . " ". $stralreadycourses ?></label>
|
2006-11-29 22:06:48 +00:00
|
|
|
<br />
|
2005-01-24 22:23:01 +00:00
|
|
|
<select name="removeselect[]" size="20" id="removeselect" multiple
|
2007-01-04 21:32:36 +00:00
|
|
|
onFocus="getElementById('studentform').add.disabled=true;
|
|
|
|
getElementById('studentform').remove.disabled=false;
|
|
|
|
getElementById('studentform').addselect.selectedIndex=-1;">
|
2005-01-24 22:23:01 +00:00
|
|
|
<?php
|
2005-05-16 19:38:21 +00:00
|
|
|
foreach ($alreadycourses as $course) {
|
|
|
|
echo "<option value=\"$course->id\">".course_format_name($course,60)."</option>\n";
|
|
|
|
}
|
2005-01-24 22:23:01 +00:00
|
|
|
?>
|
|
|
|
</select></td>
|
|
|
|
<td valign="top">
|
2006-11-29 22:06:48 +00:00
|
|
|
<?php check_theme_arrows(); ?>
|
|
|
|
<p class="arrow_button">
|
|
|
|
<input name="add" id="add" type="submit" value="<?php echo ' '.$THEME->larrow.' '.get_string('add'); ?>" title="<?php print_string('add'); ?>" />
|
|
|
|
<br />
|
|
|
|
<input name="remove" id="remove" type="submit" value="<?php echo ' '.$THEME->rarrow.' '.get_string('remove'); ?>" title="<?php print_string('remove'); ?>" />
|
|
|
|
</p>
|
2005-01-24 22:23:01 +00:00
|
|
|
</td>
|
|
|
|
<td valign="top">
|
2006-11-29 22:06:48 +00:00
|
|
|
<label for="addselect"><?php echo $numcourses . " " . $strpotentialcourses ?></label>
|
|
|
|
<br />
|
2005-01-24 22:23:01 +00:00
|
|
|
<select name="addselect[]" size="20" id="addselect" multiple
|
2007-01-04 21:32:36 +00:00
|
|
|
onFocus="getElementById('studentform').add.disabled=false;
|
|
|
|
getElementById('studentform').remove.disabled=true;
|
|
|
|
getElementById('studentform').removeselect.selectedIndex=-1;">
|
2005-01-24 22:23:01 +00:00
|
|
|
<?php
|
2005-05-16 19:38:21 +00:00
|
|
|
|
2005-01-24 22:23:01 +00:00
|
|
|
if (!empty($searchcourses)) {
|
|
|
|
echo "<optgroup label=\"$strsearchresults (" . count($searchcourses) . ")\">\n";
|
|
|
|
foreach ($searchcourses as $course) {
|
2005-05-16 19:38:21 +00:00
|
|
|
echo "<option value=\"$course->id\">".course_format_name($course,60)."</option>\n";
|
2005-01-24 22:23:01 +00:00
|
|
|
}
|
|
|
|
echo "</optgroup>\n";
|
|
|
|
}
|
|
|
|
if (!empty($courses)) {
|
|
|
|
if ($numcourses > MAX_COURSES_PER_PAGE) {
|
|
|
|
echo '<optgroup label="'.get_string('toomanytoshow').'"><option></option></optgroup>'."\n"
|
|
|
|
.'<optgroup label="'.get_string('trysearching').'"><option></option></optgroup>'."\n";
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
foreach ($courses as $course) {
|
2006-05-17 16:47:44 +00:00
|
|
|
echo "<option value=\"$course->id\">".course_format_name($course,60)."</option>\n";
|
2005-01-24 22:23:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</select>
|
|
|
|
<br />
|
2006-11-29 22:06:48 +00:00
|
|
|
<label for="searchtext" class="accesshide"><?php p($strsearch) ?></label>
|
|
|
|
<input type="text" name="searchtext" id="searchtext" size="30" value="<?php p($searchtext, true) ?>"
|
2007-01-04 21:32:36 +00:00
|
|
|
onFocus ="getElementById('studentform').add.disabled=true;
|
|
|
|
getElementById('studentform').remove.disabled=true;
|
|
|
|
getElementById('studentform').removeselect.selectedIndex=-1;
|
|
|
|
getElementById('studentform').addselect.selectedIndex=-1;"
|
2005-01-24 22:23:01 +00:00
|
|
|
onkeydown = "var keyCode = event.which ? event.which : event.keyCode;
|
|
|
|
if (keyCode == 13) {
|
2007-01-04 21:32:36 +00:00
|
|
|
getElementById('studentform').previoussearch.value=1;
|
|
|
|
getElementById('studentform').submit();
|
2005-01-24 22:23:01 +00:00
|
|
|
} " />
|
|
|
|
<input name="search" id="search" type="submit" value="<?php p($strsearch) ?>" />
|
|
|
|
<?php
|
|
|
|
if (!empty($searchcourses)) {
|
|
|
|
echo '<input name="showall" id="showall" type="submit" value="'.$strshowall.'" />'."\n";
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</form>
|
|
|
|
|
|
|
|
|