NEW MODULE FROM MOODLE.COM - DATABASE !
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.
2005-12-02 07:50:26 +00:00
|
|
|
<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) {
|
2006-02-09 04:44:56 +00:00
|
|
|
echo get_string('rssglobaldisabled', 'data');
|
NEW MODULE FROM MOODLE.COM - DATABASE !
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.
2005-12-02 07:50:26 +00:00
|
|
|
} 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>
|