moodle/mod
2023-09-15 10:47:10 +08:00
..
assign Merge branch 'MDL-79064-master' of https://github.com/andrewnicols/moodle 2023-08-29 13:32:45 +08:00
bigbluebuttonbn Merge branch 'MDL-78960-master' of https://github.com/call-learning/moodle 2023-09-12 10:52:35 +08:00
book Merge branch 'MDL-76982-master' of https://github.com/rjnl/moodle 2023-08-23 22:15:42 +08:00
chat Merge branch 'MDL-78559-master' of https://github.com/rmady/moodle 2023-08-08 13:01:56 +02:00
choice Merge branch 'MDL-71196' of https://github.com/paulholden/moodle 2023-08-17 09:12:34 +02:00
data MDL-78324 core: Convert modals to use new static methods 2023-09-09 00:04:11 +08:00
feedback MDL-71494 mod_feedback: final removal of deprecated constructor param. 2023-09-05 09:09:26 +01:00
folder MDL-78884 files: Deprecate size parameter for icons 2023-08-23 07:30:16 +02:00
forum MDL-78324 core: Convert modals to use new static methods 2023-09-09 00:04:11 +08:00
glossary Merge branch 'MDL-78579' of https://github.com/paulholden/moodle 2023-08-25 10:47:11 +08:00
h5pactivity MDL-78291 core_courseformat: fix cm visibility behats 2023-08-22 09:39:13 +02:00
imscp MDL-76953 mod: deprecate libxml library method wrappers. 2023-06-16 19:15:24 +01:00
label MDL-78474 mod_label: fix phpunit and behat tests 2023-09-08 12:13:23 +01:00
lesson MDL-79015 behat: make verification step more specific 2023-08-25 08:38:43 +08:00
lti MDL-78916 mod_lti: update behat tests to test new instance form 2023-09-15 10:47:10 +08:00
page MDL-75913 behat: Add support for file uploads in page generators 2023-06-19 16:35:46 +10:00
quiz MDL-78324 mod_quiz: Update modals to stop using factory 2023-09-08 23:49:13 +08:00
resource MDL-78280 completion: Fix behat for new completion UI 2023-07-19 16:44:54 +02:00
scorm Merge branch 'MDL-63539' of https://github.com/danmarsden/moodle 2023-09-11 11:14:48 +08:00
survey MDL-78324 mod_survey: Convert validation to esm 2023-09-09 00:04:03 +08:00
url MDL-78884 theme: Update styles to display new icons properly 2023-08-23 07:32:49 +02:00
wiki MDL-77396 wiki: Fix print without background new 2023-06-27 18:10:12 +05:30
workshop Merge branch 'MDL-76974' of https://github.com/paulholden/moodle 2023-08-28 17:03:27 +08:00
index.html
README.txt
upgrade.txt MDL-72350 mod: Updated upgrade.txt file 2023-03-30 08:09:13 +08: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