moodle/mod
2024-02-01 12:04:49 +08:00
..
assign MDL-79029 behat: replace deprecated behat steps 2024-01-22 11:12:28 +01:00
bigbluebuttonbn Merge branch 'MDL-80289-main' of https://github.com/call-learning/moodle 2024-02-01 08:55:09 +07:00
book MDL-78496 core: Address phpcs issues with upgrade.php files 2023-11-19 21:20:53 +08:00
chat MDL-80151 mod_chat: Behat for chat repeat times and past session view 2023-12-18 16:10:15 +08:00
choice Merge branch 'MDL-80221-main-enfix' of https://github.com/mudrd8mz/moodle 2023-12-04 16:12:07 +08:00
data MDL-80499 datafield_date: specify UTC time when editing field content. 2024-01-10 19:23:08 +00:00
feedback MDL-79029 behat: replace deprecated behat steps 2024-01-22 11:12:28 +01:00
folder MDL-80377 block: Behat confirming folder file in recent activity block 2024-01-19 14:26:52 +08:00
forum Merge branch 'MDL-70483-main' of https://github.com/kevpercy/moodle 2024-02-01 12:04:49 +08:00
glossary MDL-80259 theme_boost: Refactor badge helper classes for Bootstrap 5 2024-01-23 08:27:23 +01:00
h5pactivity MDL-69225 h5pactivity: Review when and which banners display 2024-01-25 17:46:36 +01:00
imscp MDL-79029 behat: replace deprecated behat steps 2024-01-22 11:12:28 +01:00
label Merge branch 'MDL-80523' of https://github.com/paulholden/moodle 2024-01-30 09:41:35 +07:00
lesson Merge branch 'MDL-73545' of https://github.com/paulholden/moodle 2024-01-30 09:38:38 +07:00
lti Merge branch 'MDL-80259-main' of https://github.com/roland04/moodle 2024-01-24 09:16:12 +01:00
page MDL-76723 mod_page: Use external_format_value constructor properly 2023-12-19 15:48:07 +08:00
quiz Merge branch 'MDL-80650' of https://github.com/timhunt/moodle 2024-01-25 09:23:27 +07:00
resource MDL-80450 mod_resource: observe print intro setting when embedding. 2023-12-21 11:22:13 +00:00
scorm MDL-79029 behat: replace deprecated behat steps 2024-01-22 11:12:28 +01:00
survey MDL-79029 behat: replace deprecated behat steps 2024-01-22 11:12:28 +01:00
url MDL-78496 core: Address phpcs issues with upgrade.php files 2023-11-19 21:20:53 +08:00
wiki Merge branch 'MDL-80181-master' of https://github.com/srobotta/moodle 2023-11-29 09:37:53 +08:00
workshop Merge branch 'MDL-79940-master' of https://github.com/andelacruz/moodle 2024-01-24 09:22:31 +01:00
index.html
README.txt
upgrade.txt MDL-77708 docs: Update references from docs.moodle.org/dev 2023-09-26 10:30:19 +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