moodle/mod
2023-03-14 08:34:42 +08:00
..
assign MDL-76867 core: Add plugintype_supports_disabling to plugininfo 2023-03-14 08:34:42 +08:00
assignment MDL-76497 upgrade: add the 4.1.0 separation line to all upgrade scripts 2022-11-28 14:43:04 +08:00
bigbluebuttonbn Merge branch 'MDL-77559-master-2' of https://github.com/andrewnicols/moodle 2023-03-09 16:02:01 +08:00
book MDL-52805 core: Remove legacy log calls 2023-03-07 13:08:46 +08:00
chat MDL-52805 core: Remove legacy log calls 2023-03-07 13:08:46 +08:00
choice MDL-52805 core: Remove legacy log calls 2023-03-07 13:08:46 +08:00
data Merge branch 'MDL-77559-master-2' of https://github.com/andrewnicols/moodle 2023-03-09 16:02:01 +08:00
feedback Merge branch 'MDL-70613' of https://github.com/paulholden/moodle 2023-03-10 09:19:55 +08:00
folder Merge branch 'MDL-52805-42' of https://github.com/Chocolate-lightning/moodle 2023-03-08 14:49:59 +08:00
forum Merge branch 'MDL-76970-master' of https://github.com/laurentdavid/moodle 2023-03-09 22:22:32 +08:00
glossary MDL-52805 core: Remove legacy log calls 2023-03-07 13:08:46 +08:00
h5pactivity MDL-52805 core: Remove legacy log calls 2023-03-07 13:08:46 +08:00
imscp MDL-76583 core: Update uses of external_* classes 2023-01-19 07:34:09 +08:00
label MDL-77416 lang: Use fixed strings in tests 2023-03-03 14:15:30 +00:00
lesson Merge branch 'MDL-52805-42' of https://github.com/Chocolate-lightning/moodle 2023-03-08 14:49:59 +08:00
lti Merge branch 'MDL-77559-master-2' of https://github.com/andrewnicols/moodle 2023-03-09 16:02:01 +08:00
page MDL-75085 webservice: Fix parameter passed to external_format_value 2023-02-01 11:12:02 +08:00
quiz Merge branch 'MDL-77582-master' of https://github.com/sarjona/moodle 2023-03-10 12:19:17 +08:00
resource MDL-52805 core: Remove legacy log calls 2023-03-07 13:08:46 +08:00
scorm MDL-52805 core: Plugins with removed tests due to old events 2023-03-07 13:08:46 +08:00
survey Merge branch 'MDL-77559-master-2' of https://github.com/andrewnicols/moodle 2023-03-09 16:02:01 +08:00
url MDL-76583 core: Update uses of external_* classes 2023-01-19 07:34:09 +08:00
wiki Merge branch 'MDL-52805-42' of https://github.com/Chocolate-lightning/moodle 2023-03-08 14:49:59 +08:00
workshop Merge branch 'MDL-77559-master-2' of https://github.com/andrewnicols/moodle 2023-03-09 16:02:01 +08:00
index.html
README.txt
upgrade.txt MDL-74762 qbank_statistics: improve performance loading the data 2022-09-16 21:34:00 +10: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