moodle/mod
2024-04-12 11:46:25 +07:00
..
assign MDL-81190 mod_assign: correct context argument to format string. 2024-03-11 16:58:08 +00:00
bigbluebuttonbn Merge branch 'MDL-81362-402' of https://github.com/ssj365/moodle into MOODLE_402_STABLE 2024-04-11 10:59:56 +07:00
book Merge branch 'MDL-78152-402' of https://github.com/paulholden/moodle into MOODLE_402_STABLE 2023-05-17 15:07:17 +08:00
chat MDL-80613 behat: convert manual completion steps to use generators 2024-02-15 11:01:23 +08:00
choice MDL-78621 mod_choice: verify limited responses before showing "full". 2024-01-10 09:48:59 +00:00
data Merge branch 'MDL-77015-402' of https://github.com/paulholden/moodle into MOODLE_402_STABLE 2024-04-12 11:46:25 +07:00
feedback MDL-81351 lang: Import fixed English strings (en_fix) 2024-03-28 11:19:40 +01:00
folder MDL-80377 block: Behat confirming folder file in recent activity block 2024-01-19 14:30:27 +08:00
forum MDL-80613 behat: convert manual completion steps to use generators 2024-02-15 11:01:23 +08:00
glossary MDL-80613 behat: convert manual completion steps to use generators 2024-02-15 11:01:23 +08:00
h5pactivity NOBUG: mod_h5pactivity - Version bump after rewrite 2024-04-04 10:36:34 +08:00
imscp MDL-80088 mod_imscp: better uploaded package filetype validation. 2024-02-20 14:10:12 +00:00
label MDL-80613 behat: convert manual completion steps to use generators 2024-02-15 11:01:23 +08:00
lesson MDL-80488 mod_lesson: avoid overflowing length of page titles. 2024-03-20 23:51:24 +00:00
lti MDL-80079 core: Correct incorrect arg to format_string::$options 2023-11-14 22:28:55 +08:00
page MDL-76723 mod_page: Use external_format_value constructor properly 2023-12-19 15:50:30 +08:00
quiz Merge branch 'MDL-70829-402' of https://github.com/junpataleta/moodle into MOODLE_402_STABLE 2024-04-12 11:59:20 +08:00
resource MDL-80613 behat: convert manual completion steps to use generators 2024-02-15 11:01:23 +08:00
scorm Merge branch 'MDL-81472-402' of https://github.com/paulholden/moodle into MOODLE_402_STABLE 2024-04-11 17:35:54 +02:00
survey MDL-79980 mod_survey: remove responses link if user cannot access. 2023-12-07 12:09:10 +01:00
url MDL-78895 mod_url: fix double encoded ampersands in URL. 2023-09-06 13:24:41 +01:00
wiki MDL-80181 wiki: fix width of left column in comments 2023-11-24 11:18:04 +01:00
workshop MDL-70829 mod_workshop: Mark up decorative images properly 2024-04-12 11:17:06 +08:00
index.html
README.txt
upgrade.txt MDL-77708 docs: Update references from docs.moodle.org/dev 2023-09-26 10:49:24 +02: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