moodle/mod
2013-03-07 10:41:52 +08:00
..
assign Merge branch 'MDL-38352-en_fix' of git://github.com/mudrd8mz/moodle 2013-03-06 17:26:37 +01: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-31390 Convert set_source_sql with order clauses to set_source_table 2013-03-01 11:29:01 +00:00
data MDL-38352 Merge English strings from the en_fix language pack 2013-03-06 16:44:39 +01:00
feedback MDL-37800 mod_feedback - item "information" does not appear correctly 2013-02-01 11:44:52 +01:00
folder MDL-37455 lang - fix trailing whitespace 2013-02-25 12:05:16 +08:00
forum Merge branch 'MDL-38352-en_fix' of git://github.com/mudrd8mz/moodle 2013-03-06 17:26:37 +01:00
glossary Merge branch 'MDL-37801_glossary_links' of git://github.com/davosmith/moodle 2013-02-05 01:01:14 +01:00
imscp MDL-37726 remove PREVIOUS/NEXT from all install.xml files 2013-01-29 22:34:46 +01:00
label MDL-33946 course dndupload - fixes to dialog when dragging text 2013-03-06 22:38:01 +00:00
lesson Merge branch 'MDL-38352-en_fix' of git://github.com/mudrd8mz/moodle 2013-03-06 17:26:37 +01:00
lti MDL-32620 whitespace + comment fixes. 2013-02-19 13:21:18 +01:00
page MDL-38352 Merge English strings from the en_fix language pack 2013-03-06 16:44:39 +01:00
quiz Merge branch 'MDL-38352-en_fix' of git://github.com/mudrd8mz/moodle 2013-03-06 17:26:37 +01:00
resource MDL-38352 Merge English strings from the en_fix language pack 2013-03-06 16:44:39 +01:00
scorm MDL-31390 Convert set_source_sql with order clauses to set_source_table 2013-03-01 11:29:01 +00:00
survey MDL-38352 Merge English strings from the en_fix language pack 2013-03-06 16:44:39 +01:00
url MDL-38352 Merge English strings from the en_fix language pack 2013-03-06 16:44:39 +01:00
wiki Merge branch 'MDL-38352-en_fix' of git://github.com/mudrd8mz/moodle 2013-03-06 17:26:37 +01:00
workshop Merge branch 'MDL-38352-en_fix' of git://github.com/mudrd8mz/moodle 2013-03-06 17:26:37 +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