moodle/mod
2022-07-05 14:52:04 +08:00
..
assign Merge branch 'MDL-74815-master' of https://github.com/junpataleta/moodle 2022-07-05 14:52:04 +08:00
assignment MDL-74510 upgrade: add the 4.0.0 separation line to all upgrade scripts 2022-04-22 18:45:10 +02:00
bigbluebuttonbn MDL-75008 lang: Import fixed English strings (en_fix) 2022-06-30 20:31:27 +02:00
book MDL-74815 pix: Convert PNG version of darkened SVG icons 2022-07-04 14:03:39 +08:00
chat MDL-74760 activity web services: refactor duplicate code 2022-06-07 12:53:34 +01:00
choice MDL-74760 activity web services: refactor duplicate code 2022-06-07 12:53:34 +01:00
data MDL-74220 data: Implement behat generators 2022-05-26 10:38:11 +02:00
feedback MDL-74815 pix: Convert PNG version of darkened SVG icons 2022-07-04 14:03:39 +08:00
folder MDL-74760 activity web services: refactor duplicate code 2022-06-07 12:53:34 +01:00
forum MDL-74815 pix: Convert PNG version of darkened SVG icons 2022-07-04 14:03:39 +08:00
glossary MDL-74815 pix: Convert PNG version of darkened SVG icons 2022-07-04 14:03:39 +08:00
h5pactivity MDL-73423 core_privacy: Calling reset() on objects deprecated PHP8.1 2022-04-29 16:16:07 +02:00
imscp MDL-74760 activity web services: refactor duplicate code 2022-06-07 12:53:34 +01:00
label Merge branch 'MDL-74841-master' of https://github.com/andelacruz/moodle 2022-06-30 10:43:34 +08:00
lesson MDL-74815 pix: Convert PNG version of darkened SVG icons 2022-07-04 14:03:39 +08:00
lti Merge branch 'master_mdl-73498' of https://github.com/daniil-berg/moodle 2022-07-05 12:00:43 +08:00
page MDL-74760 activity web services: refactor duplicate code 2022-06-07 12:53:34 +01:00
quiz Merge branch 'MDL-74516' of https://github.com/stronk7/moodle 2022-07-04 23:17:20 +08:00
resource Merge branch 'MDL-74790' of https://github.com/paulholden/moodle 2022-06-14 22:54:08 +08:00
scorm Merge branch 'MDL-74785' of https://github.com/danmarsden/moodle 2022-06-23 09:48:47 +08:00
survey MDL-75008 lang: Import fixed English strings (en_fix) 2022-06-30 20:31:27 +02:00
url Merge branch 'MDL74387_master' of https://github.com/Amrita1991/moodle 2022-06-29 23:20:33 +08:00
wiki MDL-75008 lang: Use the fixed strings in Behat scenario files 2022-06-30 20:48:16 +02:00
workshop Merge branch 'MDL-74815-master' of https://github.com/junpataleta/moodle 2022-07-05 14:52:04 +08:00
index.html
README.txt
upgrade.txt MDL-74235 output: Fall back to icon and support monologo 2022-04-07 12:56:13 +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