moodle/mod
2022-05-18 19:47:44 +12:00
..
assign MDL-74413 phpunit: Move more tests to use correct names and namespaces 2022-05-07 20:32:30 +02: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-74584 mod_bigbluebuttonbn: Update behat tests 2022-05-06 14:39:06 +08:00
book MDL-74602 mod_book: disable activity header on book print page 2022-05-03 09:56:56 +08:00
chat MDL-74413 phpunit: Move more tests to use correct names and namespaces 2022-05-07 20:32:30 +02:00
choice MDL-74510 upgrade: add the 4.0.0 separation line to all upgrade scripts 2022-04-22 18:45:10 +02:00
data MDL-74510 upgrade: add the 4.0.0 separation line to all upgrade scripts 2022-04-22 18:45:10 +02:00
feedback MDL-74413 phpunit: Move more tests to use correct names and namespaces 2022-05-07 20:32:30 +02:00
folder MDL-74510 upgrade: add the 4.0.0 separation line to all upgrade scripts 2022-04-22 18:45:10 +02:00
forum MDL-74413 phpunit: Move more tests to use correct names and namespaces 2022-05-07 20:32:30 +02:00
glossary MDL-74413 phpunit: Move more tests to use correct names and namespaces 2022-05-07 20:32:30 +02:00
h5pactivity MDL-74510 upgrade: add the 4.0.0 separation line to all upgrade scripts 2022-04-22 18:45:10 +02:00
imscp MDL-74510 upgrade: add the 4.0.0 separation line to all upgrade scripts 2022-04-22 18:45:10 +02:00
label MDL-74510 upgrade: add the 4.0.0 separation line to all upgrade scripts 2022-04-22 18:45:10 +02:00
lesson MDL-74413 phpunit: Move more tests to use correct names and namespaces 2022-05-07 20:32:30 +02:00
lti MDL-74413 phpunit: Move more tests to use correct names and namespaces 2022-05-07 20:32:30 +02:00
page MDL-74510 upgrade: add the 4.0.0 separation line to all upgrade scripts 2022-04-22 18:45:10 +02:00
quiz Merge branch 'MDL-74041' of https://github.com/timhunt/moodle 2022-05-10 17:59:45 +08:00
resource MDL-74510 upgrade: add the 4.0.0 separation line to all upgrade scripts 2022-04-22 18:45:10 +02:00
scorm MDL-74785 mod_scorm: Add scorm content filearea to global search. 2022-05-18 19:47:44 +12:00
survey MDL-74510 upgrade: add the 4.0.0 separation line to all upgrade scripts 2022-04-22 18:45:10 +02:00
url MDL-74510 upgrade: add the 4.0.0 separation line to all upgrade scripts 2022-04-22 18:45:10 +02:00
wiki MDL-74413 phpunit: Move more tests to use correct names and namespaces 2022-05-07 20:32:30 +02:00
workshop MDL-74413 phpunit: Move more tests to use correct names and namespaces 2022-05-07 20:32:30 +02: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