moodle/mod
2025-02-13 09:15:20 +07:00
..
assign Merge branch 'MDL-83452-addbodyclass' of https://github.com/leonstr/moodle 2025-02-12 11:29:41 +07:00
bigbluebuttonbn Merge branch 'MDL-84214' of https://github.com/paulholden/moodle 2025-01-29 08:39:21 +01:00
book Merge branch 'versionbump' of https://github.com/junpataleta/moodle 2024-12-19 10:03:51 +07:00
choice NOBUG: Bump versions for main to the current date 2024-12-18 23:53:12 +08:00
data MDL-84321 lang: Use the fixed strings in tests, too 2025-01-27 23:11:59 +01:00
feedback MDL-79976 mod_feedback: Check group for response 2025-02-05 18:05:40 +01:00
folder NOBUG: Add upgrade notes 2025-02-06 16:21:38 +01:00
forum Merge branch 'MDL-80848-main' of https://github.com/andrewgos/moodle 2025-02-05 18:05:40 +01:00
glossary MDL-84003 mod_glossary: capability check restoring trusted entry text. 2025-02-06 10:51:30 +08:00
h5pactivity MDL-83468 phpunit: Fix various tests after phpunit 10 2025-01-20 16:47:55 +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 Merge branch 'MDL-70610-main' of https://github.com/kevpercy/moodle 2025-02-11 11:12:58 +07:00
lti MDL-73700 lti: remove old PHP version check 2025-01-28 18:58:08 +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 Merge branch 'MDL-79265-master' of https://github.com/NashTechOpenUniversity/moodle 2025-02-13 09:15:20 +07:00
resource NOBUG: Bump versions for main to the current date 2024-12-18 23:53:12 +08:00
scorm Merge branch 'MOODLE_main_MDL-82601' of https://github.com/danielneis/moodle 2025-02-11 11:46:17 +07: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-83468 phpunit: assertEqualsCanonicalizing now compares keys too 2025-01-20 16:47:56 +01:00
workshop Merge branch 'MDL-84249-main' of https://github.com/lameze/moodle 2025-01-23 09:02:11 +07: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