moodle/mod
2023-09-22 10:53:55 +08:00
..
assign Merge branch 'MDL-78527-master' of https://github.com/aanabit/moodle 2023-09-13 11:17:20 +08:00
bigbluebuttonbn Merge branch 'MDL-78527-master' of https://github.com/aanabit/moodle 2023-09-13 11:17:20 +08:00
book NOBUG: Fixed SVG browser compatibility 2023-09-15 17:33:23 +02:00
chat Merge branch 'MDL-78559-master' of https://github.com/rmady/moodle 2023-08-08 13:01:56 +02:00
choice NOBUG: Fixed SVG browser compatibility 2023-09-15 17:33:23 +02:00
data NOBUG: Fixed SVG browser compatibility 2023-09-15 17:33:23 +02:00
feedback MDL-78527 core_completion: Fixing tests 2023-09-12 15:43:49 +02:00
folder MDL-78884 files: Deprecate size parameter for icons 2023-08-23 07:30:16 +02:00
forum MDL-79323 lang: Import fixed English strings (en_fix) 2023-09-19 10:24:37 +01:00
glossary MDL-79390 mod_glossary: right-align export menu dropdown menu. 2023-09-18 11:03:27 +01:00
h5pactivity MDL-78527 core_completion: Fixing tests 2023-09-12 15:43:49 +02:00
imscp MDL-76953 mod: deprecate libxml library method wrappers. 2023-06-16 19:15:24 +01:00
label MDL-79323 lang: Import fixed English strings (en_fix) 2023-09-19 10:24:37 +01:00
lesson MDL-78527 core_completion: Fixing tests 2023-09-12 15:43:49 +02:00
lti Merge branch 'MDL-79323-master-enfix' of https://github.com/vmdef/moodle 2023-09-21 15:29:40 +02:00
page MDL-75913 behat: Add support for file uploads in page generators 2023-06-19 16:35:46 +10:00
quiz Merge branch 'MDL-74054-master-fixes' of https://github.com/marxjohnson/moodle 2023-09-22 10:53:55 +08:00
resource MDL-78527 core_completion: Fixing tests 2023-09-12 15:43:49 +02:00
scorm NOBUG: Fixed SVG browser compatibility 2023-09-15 17:33:23 +02:00
survey Merge branch 'MDL-78527-master' of https://github.com/aanabit/moodle 2023-09-13 11:17:20 +08:00
url MDL-78895 mod_url: fix double encoded ampersands in URL. 2023-09-06 13:24:36 +01:00
wiki NOBUG: Fixed SVG browser compatibility 2023-09-15 17:33:23 +02:00
workshop MDL-78527 core_completion: Fixing tests 2023-09-12 15:43:49 +02:00
index.html
README.txt
upgrade.txt MDL-72350 mod: Updated upgrade.txt file 2023-03-30 08:09: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