mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
2456d7c815
with the latest version of the Blocks API.
22 lines
675 B
HTML
22 lines
675 B
HTML
<table cellpadding="9" cellspacing="0">
|
|
<tr valign="top">
|
|
<td align="right"><p>block_online_users_timetosee:</td>
|
|
<td>
|
|
<input name="block" type="hidden" value="<?php echo intval($_REQUEST['block']); ?>" />
|
|
<input name="block_online_users_timetosee" type="text" size="5" value="<?php
|
|
if(isset($CFG->block_online_users_timetosee)) {
|
|
p($CFG->block_online_users_timetosee);
|
|
} else {
|
|
p(5);
|
|
} ?>" />
|
|
</td>
|
|
<td>
|
|
<?php print_string('configtimetosee', 'block_online_users') ?>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="3" align="center">
|
|
<input type="submit" value="<?php print_string('savechanges') ?>" /></td>
|
|
</tr>
|
|
</table>
|