moodle/mod
2024-03-28 11:46:51 +07:00
..
assign Merge branch 'MDL-81190' of https://github.com/paulholden/moodle 2024-03-15 08:41:58 +08:00
bigbluebuttonbn Merge branch 'main_MDL-81172' of https://github.com/mattporritt/moodle 2024-03-28 11:46:51 +07:00
book MDL-72376 mod_book: final removal of deprecated navigation method. 2024-03-20 23:49:01 +00:00
chat MDL-71734 lang: final removal of deprecated 400 strings. 2024-03-21 09:44:15 +00:00
choice MDL-65292 style: Fix all the function declaration ordering 2024-02-28 23:47:47 +01:00
data MDL-70384 mod_data: Format the forms for database activity fields. 2024-03-26 13:34:12 +01:00
feedback MDL-81281 phpunit: assertObjectHasAttribute is deprecated 2024-03-25 16:21:45 +01:00
folder MDL-65292 style: Fix all the function declaration ordering 2024-02-28 23:47:47 +01:00
forum MDL-81281 phpunit: assertObjectHasAttribute is deprecated 2024-03-25 16:21:45 +01:00
glossary MDL-71734 lang: final removal of deprecated 400 strings. 2024-03-21 09:44:15 +00:00
h5pactivity MDL-80828 core_courseformat: Modify availability subpanel visibility 2024-03-25 13:54:42 +01:00
imscp Merge branch 'MDL-80088' of https://github.com/paulholden/moodle 2024-03-25 16:20:25 +01:00
label MDL-65292 style: Fix all the function declaration ordering 2024-02-28 23:47:47 +01:00
lesson MDL-80488 mod_lesson: avoid overflowing length of page titles. 2024-03-20 23:51:12 +00:00
lti Merge branch 'main_MDL-81172' of https://github.com/mattporritt/moodle 2024-03-28 11:46:51 +07:00
page MDL-71734 lang: final removal of deprecated 400 strings. 2024-03-21 09:44:15 +00:00
quiz Merge branch 'main_MDL-81172' of https://github.com/mattporritt/moodle 2024-03-28 11:46:51 +07:00
resource MDL-65292 style: Fix all the function declaration ordering 2024-02-28 23:47:47 +01:00
scorm Merge branch 'MDL-71734' of https://github.com/paulholden/moodle 2024-03-21 16:11:40 +01:00
survey MDL-71734 lang: final removal of deprecated 400 strings. 2024-03-21 09:44:15 +00:00
url MDL-65292 style: Fix all the function declaration ordering 2024-02-28 23:47:47 +01:00
wiki MDL-81050 output: Add new 'attributes' parameter to container 2024-03-19 08:53:49 +01:00
workshop MDL-81281 phpunit: assertObjectHasAttribute is deprecated 2024-03-25 16:21:45 +01:00
index.html
README.txt
upgrade.txt MDL-80866 mod: Disable Chat and Survey for new installations 2024-03-01 11:41:50 +01: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