2009-11-01 14:55:15 +00:00
|
|
|
<?php
|
2011-10-30 02:33:11 +02:00
|
|
|
// This file is part of Moodle - http://moodle.org/
|
|
|
|
//
|
|
|
|
// Moodle is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// Moodle is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
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
|
|
|
|
2011-10-30 02:33:11 +02:00
|
|
|
/**
|
|
|
|
* Data module version information
|
|
|
|
*
|
2014-02-14 16:59:20 +13:00
|
|
|
* @package mod_data
|
|
|
|
* @copyright 2005 onwards Martin Dougiamas {@link http://moodle.com}
|
|
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
2011-10-30 02:33:11 +02:00
|
|
|
*/
|
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
|
|
|
|
2011-10-30 02:33:11 +02:00
|
|
|
defined('MOODLE_INTERNAL') || die();
|
2009-11-01 14:55:15 +00:00
|
|
|
|
2024-02-26 17:47:31 +01:00
|
|
|
$plugin->version = 2023100901; // The current module version (Date: YYYYMMDDXX).
|
2023-10-04 13:57:17 +08:00
|
|
|
$plugin->requires = 2023100400; // Requires this Moodle version.
|
2013-11-24 14:24:51 +01:00
|
|
|
$plugin->component = 'mod_data'; // Full name of the plugin (used for diagnostics)
|
|
|
|
$plugin->cron = 0;
|