moodle/mod
2025-02-25 17:02:48 +00:00
..
assign MDL-84378 mod_assign: Fix right alignment for action button 2025-02-24 06:56:46 +01:00
bigbluebuttonbn Merge branch 'MDL-84412' of https://github.com/jfederico/moodle 2025-02-24 08:20:28 +01:00
book MDL-75669 theme_boost: Fix incorrect .row BS5 class usages 2025-02-14 10:58:36 +01:00
choice NOBUG: Bump versions for main to the current date 2024-12-18 23:53:12 +08:00
data NOBUG: Add upgrade notes 2025-02-21 10:14:58 +07:00
feedback MDL-83892 mod_feedback: add course overview integration 2025-02-25 09:41:44 +01:00
folder MDL-75669 theme_boost: Fix incorrect .row BS5 class usages 2025-02-14 10:58:36 +01:00
forum MDL-84526 theme_boost: Fix forum table after BS5 upgrade 2025-02-21 14:55:06 +01:00
glossary MDL-75669 theme_boost: Fix incorrect .row BS5 class usages 2025-02-14 10:58:36 +01:00
h5pactivity Merge branch '84348-hide-h5p-preview-message-main' of https://github.com/DSI-Universite-Rennes2/moodle 2025-02-18 13:12:06 +01:00
imscp MDL-84103 imscc: Behat test for import IMS Cartridge to course 2025-01-30 09:36:21 +08:00
label MDL-83468 phpunit: Fix various tests after phpunit 10 2025-01-20 16:47:55 +01:00
lesson MDL-75669 theme_boost: Fix incorrect .row BS5 class usages 2025-02-14 10:58:36 +01:00
lti MDL-75669 theme_boost: Refactor BS5 data attributes 2025-02-14 09:10:33 +01:00
page NOBUG: Bump versions for main to the current date 2024-12-18 23:53:12 +08:00
qbank MDL-84321 lang: Import fixed English strings (en_fix) 2025-01-27 23:01:17 +01:00
quiz MDL-84378 mod_quiz: Fix Switch bank button 2025-02-24 06:56:46 +01:00
resource NOBUG: Bump versions for main to the current date 2024-12-18 23:53:12 +08:00
scorm MDL-75669 theme_boost: Fix incorrect .row BS5 class usages 2025-02-14 10:58:36 +01:00
subsection MDL-82034 core_course: Fix Activity chooser opening issues on behat 2024-12-20 10:31:24 +01:00
url NOBUG: Bump versions for main to the current date 2024-12-18 23:53:12 +08:00
wiki MDL-75669 theme_boost: Fix incorrect .row BS5 class usages 2025-02-14 10:58:36 +01:00
workshop MDL-75669 theme_boost: Fix incorrect .row BS5 class usages 2025-02-14 10:58:36 +01: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