moodle/mod
2016-09-22 19:17:47 +02:00
..
assign Merge branch 'MDL-55944' of https://github.com/mr-russ/moodle 2016-09-19 11:25:12 +01: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-42041 mod_book: Add Turn Editing On to page body 2016-09-05 13:08:24 +08: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-55832 mod_feedback: apply filters to multichoice quesitons 2016-09-05 13:29:57 +08:00
folder MDL-55278 search: Updating references to area namespace 2016-07-21 18:38:18 +02:00
forum MDL-55982 mod_forum: Allow discussion view in locked blog 2016-09-22 08:22:13 +08:00
glossary MDL-55724 Glossary: Prevent infinite loop in trusttext_strip 2016-08-30 10:25:38 +01: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 MDL-55327 mod_lesson: better convert back to plain response_editor 2016-09-22 19:17:47 +02:00
lti Merge branch 'MDL-55742-master' of https://github.com/xow/moodle 2016-09-05 10:50:47 +01:00
page MDL-55278 search: Updating references to area namespace 2016-07-21 18:38:18 +02:00
quiz MDL-42125 quiz stats: removal trivial additional phpdocs newline 2016-09-06 11:47:57 +01:00
resource MDL-53765 mod_resource/mod_wiki: Removed update_module_button() 2016-08-09 10:00:54 +08:00
scorm MDL-55820 scorm: use correct displayattempt default options 2016-09-01 13:19:35 +12: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 MDL-41174 mod_workshop: Added workshop_refresh_events 2016-09-07 14:29:13 +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