moodle/mod
2021-07-21 07:37:59 +08:00
..
assign MDL-72125 mod_assign: Use assign submission data generators 2021-07-21 07:37:59 +08:00
assignment MDL-69044 upgrade: add 3.9.0 separation line to all upgrade scripts 2020-06-14 13:09:13 +02:00
book MDL-67668 behat: Update tests for inplace editable field type 2020-11-23 09:00:46 +08:00
chat MDL-70409 chat: Use require_once to import lib.php 2020-12-04 10:46:16 -05:00
choice MDL-69130 lang: Import fixed English strings (en_fix) 2020-06-25 21:52:35 +02:00
data Merge branch 'MDL-71434-39' of git://github.com/paulholden/moodle into MOODLE_39_STABLE 2021-05-06 11:15:29 +01:00
feedback MDL-70767 feedback: Prevent xss in feedback answer text. 2021-03-03 23:09:26 +01:00
folder MDL-71200 mod_folder: ensure "Download folder" option is backed up. 2021-04-22 10:29:04 +01:00
forum Merge branch 'MDL-70772-39' of git://github.com/paulholden/moodle into MOODLE_39_STABLE 2021-05-06 23:20:20 +02:00
glossary MDL-70621 mod_glossary: use glossary rsstype string. 2021-02-03 08:34:24 +01:00
h5pactivity MDL-71939 mod_h5pactivity: Increase window size during test 2021-06-15 23:34:32 +02:00
imscp MDL-68958 mod_imscp: Return manifestfilename as default response. 2021-01-25 13:23:38 +08:00
label MDL-62244 Resource: label view redirects to label, not course 2021-04-01 11:53:53 -06:00
lesson MDL-71425 lang: Fix reworded strings in tests 2021-05-04 16:59:21 +02:00
lti MDL-71782 behat: Ensure page after saving changes is there 2021-07-10 15:51:07 +02:00
page MDL-69044 upgrade: add 3.9.0 separation line to all upgrade scripts 2020-06-14 13:09:13 +02:00
quiz Merge branch 'MDL-68747-39' of https://github.com/dcai/moodle into MOODLE_39_STABLE 2021-05-07 11:46:50 +08:00
resource MDL-69044 upgrade: add 3.9.0 separation line to all upgrade scripts 2020-06-14 13:09:13 +02:00
scorm MDL-66979 scorm: Increase behat window size 2021-01-22 14:52:21 +08:00
survey MDL-69044 upgrade: add 3.9.0 separation line to all upgrade scripts 2020-06-14 13:09:13 +02:00
url MDL-69758 Web services: core_get_course_contents PHP warnings 2020-09-21 15:28:47 +01:00
wiki MDL-71425 lang: Import fixed English strings (en_fix) 2021-05-04 16:59:04 +02:00
workshop Merge branch 'MDL-70340-39' of git://github.com/jleyva/moodle into MOODLE_39_STABLE 2021-03-02 23:33:25 +01:00
index.html
README.txt
upgrade.txt MDL-68645 output: Do not apply filters when creating calendar events 2020-05-13 10:03:01 +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