moodle/mod
2013-05-09 00:35:28 +02:00
..
assign Merge branch 'MDL-39545_master' of https://github.com/markn86/moodle 2013-05-08 12:37:18 +01:00
assignment MDL-39077 maxbytes - fix warnings for cli install 2013-05-02 12:11:08 +08:00
book MDL-39434 Bump all versions near 2.5 release 2013-05-01 18:03:29 +02:00
chat MDL-39434 Bump all versions near 2.5 release 2013-05-01 18:03:29 +02:00
choice Merge branch 'MDL-38315-master' of git://github.com/sammarshallou/moodle 2013-05-06 22:27:41 +08:00
data MDL-39434 Bump all versions near 2.5 release 2013-05-01 18:03:29 +02:00
feedback MDL-39463 forms: use the date selectors 'optional' parameter rather than creating additional logic 2013-05-08 16:36:54 +08:00
folder MDL-39434 Bump all versions near 2.5 release 2013-05-01 18:03:29 +02:00
forum Merge branch 'MDL-38315-master' of git://github.com/sammarshallou/moodle 2013-05-06 22:27:41 +08:00
glossary Merge branch 'MDL-38315-master' of git://github.com/sammarshallou/moodle 2013-05-06 22:27:41 +08:00
imscp MDL-39434 Bump all versions near 2.5 release 2013-05-01 18:03:29 +02:00
label MDL-39434 Bump all versions near 2.5 release 2013-05-01 18:03:29 +02:00
lesson Merge branch 'MDL-39437' of git://github.com/rwijaya/moodle 2013-05-07 15:50:29 +02:00
lti MDL-32301: Allow instructor custom parameters for LTI tools 2013-05-07 10:24:32 -07:00
page MDL-39434 Bump all versions near 2.5 release 2013-05-01 18:03:29 +02:00
quiz MDL-39434 Bump all versions near 2.5 release 2013-05-01 18:03:29 +02:00
resource Merge branch 'MDL-39367-master-int' of git://github.com/FMCorz/moodle 2013-05-01 17:32:09 +01:00
scorm MDL-39463 forms: use the date selectors 'optional' parameter rather than creating additional logic 2013-05-08 16:36:54 +08:00
survey MDL-39434 Bump all versions near 2.5 release 2013-05-01 18:03:29 +02:00
url MDL-39434 Bump all versions near 2.5 release 2013-05-01 18:03:29 +02:00
wiki MDL-39434 Bump all versions near 2.5 release 2013-05-01 18:03:29 +02:00
workshop Merge branch 'MDL-39497-workshop-allocator-stable' of git://github.com/mudrd8mz/moodle 2013-05-07 16:42:19 +01:00
index.html
README.txt Fixed location of icon.gif 2010-03-24 10:56:22 +00:00
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