moodle/mod
2018-04-26 14:17:55 +08:00
..
assign MDL-61308 assign_feedback: Privacy code for user rights. 2018-04-26 14:17:55 +08:00
assignment MDL-61918 assignment: Implement null privacy provider 2018-04-16 09:59:46 +08:00
book MDL-61980 booktool: Implement null privacy provider 2018-04-13 16:15:30 +08:00
chat MDL-61984 mod_chat: Do not assume context passed is one of chat 2018-04-24 10:38:27 +08:00
choice MDL-62025 mod_choice: add missing join on modules table 2018-04-19 15:17:43 +08:00
data MDL-61969 datapreset_imagegallery: Implement null privacy provider 2018-04-18 13:50:05 +08:00
feedback MDL-61862 mod_feedback: Tweak query to support UNION on TEXT fields 2018-04-17 11:35:55 +08:00
folder MDL-61724 resource: Unable to view or download file resource 2018-03-26 11:14:46 +08:00
forum MDL-58885 core_search: Group support in relevant module search areas 2018-02-16 16:57:01 +00:00
glossary MDL-61476 mod_glossary: Check XML arrays exist 2018-04-09 23:27:27 +02:00
imscp MDL-62055 imscp: Implement privacy API 2018-04-20 08:57:04 +02:00
label MDL-61567 mod_label: Implement null provider mod_label 2018-03-13 11:02:00 +08:00
lesson MDL-61581 lesson: style continue to last buttons 2018-04-06 16:44:12 +02:00
lti MDL-61651 mod_lti: Add missing callback doc 2018-04-24 09:21:51 +08:00
page MDL-61567 mod_page: Implement null provider mod_page 2018-03-13 11:02:00 +08:00
quiz NOBUG: Fixed file access permissions 2018-04-20 23:53:53 +02:00
resource MDL-61567 mod_resource: Implement null provider mod_resource 2018-03-13 11:02:00 +08:00
scorm MDL-59857 mod_scorm: use valid length for grade type field. 2018-04-13 11:10:00 +12:00
survey MDL-61970 mod_survey: Do not assume context passed is one of survey 2018-04-19 13:10:22 +08:00
url MDL-61567 mod_url: Implement null provider mod_url 2018-03-13 11:02:00 +08:00
wiki MDL-61163 mod_wiki: guests should be able to view frontpage modules 2018-03-29 11:11:48 +08:00
workshop MDL-60991 Workshop: Display late submission text after deadline 2018-03-01 13:51:46 +00:00
index.html
README.txt
upgrade.txt MDL-60923 backup: Added $CFG->backuptempdir 2018-04-16 23:50:28 +02: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