moodle/mod
2016-09-02 09:39:31 +08:00
..
assign Merge branch 'MDL-54873-master' of git://github.com/andrewnicols/moodle 2016-08-30 12:52:38 +08:00
assignment MDL-54677 upgrade: add 3.1.0 separation line to all upgrade scripts 2016-05-23 01:31:34 +02:00
book MDL-55278 search: Updating references to area namespace 2016-07-21 18:38:18 +02:00
chat MDL-55274 mod_chat: Add unit tests for special commands 2016-08-09 10:44:08 +08:00
choice Merge branch 'MDL-48773_m32v1' of https://github.com/sbourget/moodle 2016-08-23 08:18:16 +01:00
data MDL-55127 mod_data: Search entries fixes 2016-08-25 16:50:15 +08:00
feedback MDL-55333 mod_feedback: Correct constant name 2016-08-10 10:13:07 +08:00
folder MDL-55278 search: Updating references to area namespace 2016-07-21 18:38:18 +02:00
forum Merge branch 'MDL-55237_master' of git://github.com/dmonllao/moodle 2016-08-30 12:54:46 +02:00
glossary MDL-54941 glossary: Correct variable naming for entry files 2016-08-03 14:33:53 +08:00
imscp MDL-55278 search: Updating references to area namespace 2016-07-21 18:38:18 +02:00
label MDL-55661 lang: Merge English strings from the en_fix language pack 2016-08-25 14:38:07 +02:00
lesson Merge branch 'MDL-55661-master-enfix' of git://github.com/mudrd8mz/moodle 2016-08-29 14:40:03 +08:00
lti MDL-55457 mod_lti: Support object icon_info in tool proxy 2016-09-02 09:39:31 +08:00
page MDL-55278 search: Updating references to area namespace 2016-07-21 18:38:18 +02:00
quiz Merge branch 'MDL-55477' of git://github.com/timhunt/moodle 2016-08-29 11:14:11 +08:00
resource MDL-53765 mod_resource/mod_wiki: Removed update_module_button() 2016-08-09 10:00:54 +08:00
scorm MDL-44712 scorm: make upgrade match install.xml defintion 2016-08-22 12:40:03 +01:00
survey MDL-55278 search: Updating references to area namespace 2016-07-21 18:38:18 +02:00
url MDL-55278 search: Updating references to area namespace 2016-07-21 18:38:18 +02:00
wiki Merge branch 'MDL-55557_m32v1' of https://github.com/sbourget/moodle 2016-08-22 12:45:18 +01:00
workshop Merge branch 'MDL-54838-master' of https://github.com/nashtechdev01/moodle 2016-08-23 12:42:52 +08:00
index.html
README.txt
upgrade.txt MDL-53765 core: Deprecate update_module_button functions 2016-08-09 11:17:43 +08: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