mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 14:27:22 +01:00
48 lines
1.8 KiB
HTML
48 lines
1.8 KiB
HTML
<table cellpadding="9" cellspacing="0">
|
|
<tr valign="top">
|
|
<td align="right">block_course_list_adminview:</td>
|
|
<td>
|
|
<input name="block" type="hidden" value="<?php echo intval($_REQUEST['block']); ?>" />
|
|
<select name="block_course_list_adminview">
|
|
<option value="all" <?php if(isset($CFG->block_course_list_adminview)){
|
|
if($CFG->block_course_list_adminview == "all"){ echo "selected=\"selected\"";}
|
|
}else{
|
|
echo "selected=\"selected\"";
|
|
}?>
|
|
><?php p(get_string('allcourses', 'block_course_list')) ?></option>
|
|
<option value="own" <?php if(isset($CFG->block_course_list_adminview)){
|
|
if($CFG->block_course_list_adminview == "own"){ echo "selected=\"selected\""; }
|
|
}?>
|
|
><?php p(get_string('owncourses', 'block_course_list')) ?></option>
|
|
</select>
|
|
</td>
|
|
<td>
|
|
<?php print_string("configadminview", "block_course_list") ?>
|
|
</td>
|
|
</tr>
|
|
<tr valign="top">
|
|
<td align="right">block_course_list_hideallcourseslink:</td>
|
|
<td>
|
|
<select name="block_course_list_hideallcourseslink">
|
|
<option value="1" <?php if(isset($CFG->block_course_list_allcourseslink)){
|
|
if($CFG->block_course_list_hideallcourseslink){ echo "selected=\"selected\"";}
|
|
}?>
|
|
><?php p(get_string('yes')) ?></option>
|
|
<option value="0" <?php if(isset($CFG->block_course_list_hideallcourseslink)){
|
|
if(!$CFG->block_course_list_hideallcourseslink){ echo "selected=\"selected\""; }
|
|
}else{
|
|
echo "selected=\"selected\"";
|
|
}?>
|
|
><?php p(get_string('no')) ?></option>
|
|
</select>
|
|
</td>
|
|
<td>
|
|
<?php print_string("confighideallcourseslink", "block_course_list") ?>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="3" align="center">
|
|
<input type="submit" value="<?php print_string("savechanges") ?>" /></td>
|
|
</tr>
|
|
</table>
|