moodle/mod
2021-12-09 19:58:35 +01:00
..
assign MDL-73201 lang: Use changed strings in tests, too 2021-12-09 19:58:35 +01:00
assignment Merge branch 'MDL-71619-311' of https://github.com/paulholden/moodle into MOODLE_311_STABLE 2021-05-18 22:59:24 +02:00
book MDL-72179 behat: Make use of page resolvers 2021-07-26 15:14:24 +08:00
chat MDL-72179 behat: Lowercase all page instance resolvers 2021-07-23 20:43:47 +08:00
choice MDL-72179 behat: Make use of page resolvers 2021-07-26 15:14:24 +08:00
data MDL-72179 behat: Make use of page resolvers 2021-07-26 15:14:24 +08:00
feedback MDL-73201 lang: Import fixed English strings (en_fix) 2021-12-09 19:58:34 +01:00
folder MDL-72179 behat: Make use of page resolvers 2021-07-26 15:14:24 +08:00
forum MDL-73202 mod_forum: Add behat generators 2021-11-30 10:07:44 +01:00
glossary MDL-72673 mod_glossary: Generate unique ID for Keywords select element 2021-09-24 18:31:28 +08:00
h5pactivity MDL-71055 behat: Update core settings to use generator 2021-08-23 12:23:03 +08:00
imscp MDL-72179 behat: Make use of page resolvers 2021-07-26 15:14:24 +08:00
label MDL-71638 upgrade: add 3.10.0 separation line to all upgrade scripts 2021-05-16 00:00:43 +02:00
lesson MDL-72667 lesson: improve colour contrast of correct text 2021-11-04 21:04:44 +08:00
lti MDL-72988 mod_lti: improved handling of missing tool endpoint. 2021-11-19 08:28:55 +00:00
page MDL-70823 mod: safely parse module display options array. 2021-11-03 16:57:15 +01:00
quiz MDL-72870 mod_quiz: fix attempt navigation button alignment. 2021-11-30 23:21:50 +00:00
resource MDL-70823 mod: safely parse module display options array. 2021-11-03 16:57:15 +01:00
scorm MDL-72316 filelib: Add ability for modules to directly load SVG images 2021-10-28 12:58:41 +08:00
survey MDL-71113 js: Fix all jsdoc warnings 2021-06-18 09:38:05 +08:00
url MDL-73195 mod_url: prevent invalid urls from breaking the course 2021-12-02 16:58:15 +08:00
wiki MDL-72871 cleanup: Remove incorrect whitespace from codebase 2021-10-26 17:19:17 +02:00
workshop MDL-68944 mod_workshop: Workshop skips scheduled allocation 2021-11-25 09:48:10 +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