mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 14:27:22 +01:00
92 lines
3.7 KiB
HTML
92 lines
3.7 KiB
HTML
|
|
<form name="creatorsform" id="creatorsform" method="post" action="creators.php">
|
|
<input type="hidden" name="previoussearch" value="<?php echo $previoussearch ?>">
|
|
<input type="hidden" name="sesskey" value="<?php echo $USER->sesskey ?>">
|
|
<table align="center" border="0" cellpadding="5" cellspacing="0">
|
|
<tr>
|
|
<td valign="top">
|
|
<?php
|
|
$a->count = count($creators);
|
|
$a->items = $strexistingcreators;
|
|
print_string('counteditems', '', $a);
|
|
?>
|
|
</td>
|
|
<td></td>
|
|
<td valign="top">
|
|
<?php
|
|
$a->count = $usercount;
|
|
$a->items = $strpotentialcreators;
|
|
print_string('counteditems', '', $a);
|
|
?>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td valign="top">
|
|
<select name="removeselect[]" size="20" id="removeselect" multiple
|
|
onFocus="document.creatorsform.add.disabled=true;
|
|
document.creatorsform.remove.disabled=false;
|
|
document.creatorsform.addselect.selectedIndex=-1;">
|
|
<?php
|
|
foreach ($creators as $creator) {
|
|
$fullname = fullname($creator, true);
|
|
echo "<option value=\"$creator->id\">".$fullname.", ".$creator->email."</option>\n";
|
|
}
|
|
?>
|
|
|
|
</select></td>
|
|
<td valign="top">
|
|
<br />
|
|
<input name="add" type="submit" id="add" value="←" />
|
|
<br />
|
|
<input name="remove" type="submit" id="remove" value="→" />
|
|
<br />
|
|
</td>
|
|
<td valign="top">
|
|
<select name="addselect[]" size="20" id="addselect" multiple
|
|
onFocus="document.creatorsform.add.disabled=false;
|
|
document.creatorsform.remove.disabled=true;
|
|
document.creatorsform.removeselect.selectedIndex=-1;">
|
|
<?php
|
|
if (!empty($searchusers)) {
|
|
echo "<optgroup label=\"$strsearchresults (" . count($searchusers) . ")\">\n";
|
|
foreach ($searchusers as $user) {
|
|
$fullname = fullname($user, true);
|
|
echo "<option value=\"$user->id\">".$fullname.", ".$user->email."</option>\n";
|
|
}
|
|
echo "</optgroup>\n";
|
|
}
|
|
if (!empty($users)) {
|
|
foreach ($users as $user) {
|
|
$fullname = fullname($user, true);
|
|
echo "<option value=\"$user->id\">".$fullname.", ".$user->email."</option>\n";
|
|
}
|
|
}
|
|
?>
|
|
</select>
|
|
<br />
|
|
<script type="text/javascript">
|
|
function
|
|
</script>
|
|
<input type="text" name="searchtext" size="30" value="<?php p($searchtext) ?>"
|
|
onFocus ="document.creatorsform.add.disabled=true;
|
|
document.creatorsform.remove.disabled=true;
|
|
document.creatorsform.removeselect.selectedIndex=-1;
|
|
document.creatorsform.addselect.selectedIndex=-1;"
|
|
onkeydown = "var keyCode = event.which ? event.which : event.keyCode;
|
|
if (keyCode == 13) {
|
|
document.creatorsform.previoussearch.value=1;
|
|
document.creatorsform.submit();
|
|
} " />
|
|
<input name="search" id="search" type="submit" value="<?php p($strsearch) ?>"/>
|
|
<?php
|
|
if (!empty($searchusers)) {
|
|
echo '<input name="showall" id="showall" type="submit" value="'.$strshowall.'" />'."\n";
|
|
}
|
|
?>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
|
|
|