mirror of
https://github.com/moodle/moodle.git
synced 2025-02-15 21:36:58 +01:00
Finally, we have an early version good enough for everyone to start banging on to help us polish it up and find bugs. Please take a look and file bugs in the bug tracker under "Database module". We urgently need - new icons for existing field types - testing on PostgreSQL install Coming soon (?): - Many more field types: calculation, checkbox, relation, date, datetime, time, email, group, list, user, number, richtext (Please let us know if you are interested in developing any of these) - A way to save and restore "presets", which are field/template sets - Backup/Restore support - Groups Support - RSS support Many thanks to Yu for all the hard work under my whip.
44 lines
1.2 KiB
HTML
44 lines
1.2 KiB
HTML
<form method="post" action="module.php" name="form">
|
|
<input type="hidden" name="sesskey" value="<?php echo $USER->sesskey ?>">
|
|
|
|
<table cellpadding="9" cellspacing="0" >
|
|
|
|
<tr valign="top">
|
|
<td align="right">data_enablerssfeeds:</td>
|
|
<td>
|
|
<?php
|
|
if (!isset($CFG->enablerssfeeds) || $CFG->enablerssfeeds == 0) {
|
|
print_string("no");
|
|
} else {
|
|
unset($options);
|
|
$options[0] = get_string("no");
|
|
$options[1] = get_string("yes");
|
|
|
|
$data_enablerssfeeds = false;
|
|
if (isset($CFG->data_enablerssfeeds) && $CFG->data_enablerssfeeds == 1) {
|
|
$data_enablerssfeeds = true;
|
|
}
|
|
|
|
|
|
choose_from_menu ($options, "data_enablerssfeeds", $data_enablerssfeeds, "", "", "");
|
|
}
|
|
?>
|
|
</td>
|
|
<td>
|
|
<?php
|
|
print_string("configenablerssfeeds","data");
|
|
if (!isset($CFG->enablerssfeeds) || $CFG->enablerssfeeds == 0) {
|
|
print_string("configenablerssfeedsdisabled");
|
|
}
|
|
?>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td colspan="3" align="center">
|
|
<input type="submit" value="<?php print_string("savechanges") ?>" /></td>
|
|
</tr>
|
|
</table>
|
|
|
|
</form>
|