moodle/mod
Frederic Massart 8783e17b0f MDL-38590 data: Reformat settings form
AMOS BEGIN
 CPY [allowcomments,mod_glossary],[allowcomments,mod_data]
AMOS END
2013-03-28 10:53:58 +08:00
..
assign Merge branch 'MDL-37079-master2' of git://github.com/mouneyrac/moodle 2013-03-19 11:13:23 +08:00
assignment Merge branch 'MDL-30481' of git://github.com/rwijaya/moodle 2013-03-05 12:55:41 +08:00
book MDL-37726 remove PREVIOUS/NEXT from all install.xml files 2013-01-29 22:34:46 +01:00
chat MDL-38352 Merge English strings from the en_fix language pack 2013-03-06 16:44:39 +01:00
choice MDL-38736 mod_choice: fix missing param type 2013-03-27 10:19:57 +08:00
data MDL-38590 data: Reformat settings form 2013-03-28 10:53:58 +08:00
feedback Merge branch 'MDL-38005-master' of git://github.com/FMCorz/moodle 2013-03-18 13:45:41 +08:00
folder MDL-38632 folder: observe show_expanded on course page 2013-03-22 15:53:53 +01:00
forum MDL-38581 move forum discussion and post generators to proper place 2013-03-22 13:21:35 +01:00
glossary Merge branch 'MDL-38005-master' of git://github.com/FMCorz/moodle 2013-03-18 13:45:41 +08:00
imscp MDL-38552 forms: IMS CP content section expanded by default 2013-03-20 14:31:33 +08:00
label Merge branch 'MDL-38426_dnd_plain_text' of git://github.com/davosmith/moodle 2013-03-19 14:36:43 +08:00
lesson Merge branch 'MDL-30438_b' of git://github.com/rwijaya/moodle 2013-03-26 14:29:57 +08:00
lti MDL-32620 whitespace + comment fixes. 2013-02-19 13:21:18 +01:00
page MDL-38367 course dndupload - various tweaks to the UI 2013-03-11 22:44:55 +00:00
quiz Merge branch 'MDL-38557' of git://github.com/timhunt/moodle 2013-03-26 23:38:07 +01:00
resource MDL-38352 Merge English strings from the en_fix language pack 2013-03-06 16:44:39 +01:00
scorm MDL-38336 SCORM: incorrect TOC bulding when 'Display course structure' is on 2013-03-24 11:02:41 +01:00
survey MDL-38654 do not test $CFG->gdversion 2013-03-22 16:57:55 +01:00
url MDL-34311 mod_url: Missing setType on the external url 2013-03-25 09:39:30 +08:00
wiki Merge branch 'MDL-38352-en_fix' of git://github.com/mudrd8mz/moodle 2013-03-06 17:26:37 +01:00
workshop MDL-38215 Fix cross-db support in workshop SQL queries 2013-03-13 14:58:50 +01:00
index.html
README.txt
upgrade.txt MDL-29996 remove deprecated stuff from filter code 2012-12-30 17:02:18 +01:00

ACTIVITY MODULES
----------------

These are main modules in Moodle, allowing various activities.


Each of these modules contains a number of expected components:

  mod_form.php: a form to setup/update a module instance

  version.php: defines some meta-info and provides upgrading code

  pix/icon.gif: a 16x16 icon for the module

  db/install.xml: an SQL dump of all the required db tables and data

  index.php: a page to list all instances in a course

  view.php: a page to view a particular instance

  lib.php: any/all functions defined by the module should be in here.
         constants should be defined using MODULENAME_xxxxxx
         functions should be defined using modulename_xxxxxx

         There are a number of standard functions:

         modulename_add_instance()
         modulename_update_instance()
         modulename_delete_instance()

         modulename_user_complete()
         modulename_user_outline()

         modulename_cron()

         modulename_print_recent_activity()


If you are a developer and interested in developing new Modules see:

   Moodle Documentation:  http://moodle.org/doc
   Moodle Community:      http://moodle.org/community