moodle/mod
2024-12-16 09:50:12 +07:00
..
assign NOBUG: Add upgrade notes 2024-12-13 08:57:53 +07:00
bigbluebuttonbn Merge branch 'MDL-81520-main' of https://github.com/andrewnicols/moodle 2024-12-11 13:41:15 +08:00
book MDL-81520 core: Fix test finality 2024-12-11 12:30:23 +08:00
choice MDL-81520 core: Fix test finality 2024-12-11 12:30:23 +08:00
data Merge branch 'MDL-81520-main' of https://github.com/andrewnicols/moodle 2024-12-11 13:41:15 +08:00
feedback MDL-81520 core: Fix test finality 2024-12-11 12:30:23 +08:00
folder MDL-81520 core: Fix test finality 2024-12-11 12:30:23 +08:00
forum Merge branch 'MDL-81520-main' of https://github.com/andrewnicols/moodle 2024-12-11 13:41:15 +08:00
glossary Merge branch 'MDL-81520-main' of https://github.com/andrewnicols/moodle 2024-12-11 13:41:15 +08:00
h5pactivity MDL-81520 core: Fix test finality 2024-12-11 12:30:23 +08:00
imscp MDL-81520 core: Fix test finality 2024-12-11 12:30:23 +08:00
label MDL-81520 core: Fix test finality 2024-12-11 12:30:23 +08:00
lesson Merge branch 'MDL-81520-main' of https://github.com/andrewnicols/moodle 2024-12-11 13:41:15 +08:00
lti Merge branch 'MDL-81520-main' of https://github.com/andrewnicols/moodle 2024-12-11 13:41:15 +08:00
page MDL-81520 core: Fix test finality 2024-12-11 12:30:23 +08:00
qbank NOBUG: Fixed SVG browser compatibility 2024-11-29 12:36:28 +01:00
quiz Merge branch 'MDL-75075-master' of https://github.com/NashTechOpenUniversity/moodle 2024-12-16 09:50:12 +07:00
resource MDL-81520 core: Fix test finality 2024-12-11 12:30:23 +08:00
scorm Merge branch 'MDL-81520-main' of https://github.com/andrewnicols/moodle 2024-12-11 13:41:15 +08:00
subsection MDL-83374 upgrade: add the 4.5.0 separation line to all upgrade scripts 2024-10-05 21:16:13 +08:00
url MDL-81520 core: Fix test finality 2024-12-11 12:30:23 +08:00
wiki MDL-81520 core: Fix test finality 2024-12-11 12:30:23 +08:00
workshop MDL-81520 core: Fix test finality 2024-12-11 12:30:23 +08:00
index.html
README.txt
upgrade.txt MDL-81125 core: Update upgrade.txt files to document new upgrade notes 2024-05-20 22:26:45 +08:00
UPGRADING.md NOBUG: Add upgrade notes 2024-12-13 08:57:53 +07: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