moodle/mod
2018-04-17 09:44:44 +08:00
..
assign Merge branch 'MDL-59691-master' of https://github.com/lucisgit/moodle 2018-04-11 16:01:03 +08:00
assignment MDL-59159 upgrade: clean < 3.1.0 upgrade steps 2017-12-04 01:18:57 +01:00
book MDL-60115 mod_book: Book Resource Cancel Button Redirect Bug 2018-04-02 04:01:34 +00:00
chat MDL-61375 mod_chat: specify the 'eventtype' to avoid duplicate rows 2018-02-09 14:46:11 +08:00
choice MDL-61743 core_privacy: Add context level checks for all users deletion 2018-04-06 08:57:24 +02:00
data MDL-58885 core_search: Group support in relevant module search areas 2018-02-16 16:57:01 +00:00
feedback MDL-61862 mod_feedback: Implement core_privacy API 2018-04-16 18:45:27 +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-59159 upgrade: clean < 3.1.0 upgrade steps 2017-12-04 01:18:57 +01: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 Merge branch 'MDL-61708-lti-fullnamedisplay' of https://github.com/wjroes/moodle 2018-04-16 15:29:08 +08:00
page MDL-61567 mod_page: Implement null provider mod_page 2018-03-13 11:02:00 +08:00
quiz MDL-60923 backup: Added $CFG->backuptempdir 2018-04-16 23:50:28 +02:00
resource MDL-61567 mod_resource: Implement null provider mod_resource 2018-03-13 11:02:00 +08:00
scorm Merge branch 'MDL-61709-scorm-student-fullnamedisplay' of https://github.com/wjroes/moodle 2018-04-11 01:49:54 +02:00
survey MDL-61129 survey: Add colgroup attribute at survey question tables 2018-04-09 10:33:43 -05: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