moodle/mod
2022-06-23 09:48:47 +08:00
..
assign Merge branch 'master-MDL-71468-v4' of https://github.com/golenkovm/moodle 2022-06-22 14:54:01 +10: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-74296 mod_bigbluebuttonbn: Fix completion indicator 2022-06-10 18:05:27 +02:00
book MDL-74760 activity web services: refactor duplicate code 2022-06-07 12:53:34 +01: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-74510 upgrade: add the 4.0.0 separation line to all upgrade scripts 2022-04-22 18:45:10 +02:00
feedback MDL-74733 core_navigation: Secondary nav in plugins, change namespace 2022-06-08 15:40:44 +01:00
folder MDL-74760 activity web services: refactor duplicate code 2022-06-07 12:53:34 +01:00
forum Merge branch 'MDL-73466' of https://github.com/paulholden/moodle 2022-06-10 13:12:12 +02:00
glossary Merge branch 'MDL-74733-master' of https://github.com/sammarshallou/moodle 2022-06-10 13:12:10 +02: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-74733-master' of https://github.com/sammarshallou/moodle 2022-06-10 13:12: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 Merge branch 'MDL_74310_master' of https://github.com/cengage/moodle 2022-06-13 11:45:55 +08:00
page MDL-74760 activity web services: refactor duplicate code 2022-06-07 12:53:34 +01:00
quiz Merge branch 'MDL-74533-master' of https://github.com/BruceGoodGuy/moodle 2022-06-17 10:17:12 +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-74760 activity web services: refactor duplicate code 2022-06-07 12:53:34 +01:00
url MDL-74760 activity web services: refactor duplicate code 2022-06-07 12:53:34 +01:00
wiki MDL-74760 activity web services: refactor duplicate code 2022-06-07 12:53:34 +01:00
workshop MDL-67966 mod_workshop: Use condition to verify form is using editor 2022-06-02 10:27:41 +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