moodle/mod
2019-11-05 11:58:56 +08:00
..
assign MDL-66990 lang: Import fixed English strings (en_fix) 2019-11-01 11:16:10 +01:00
assignment MDL-66022 core: Remove unused subplugin files 2019-06-27 08:18:24 +08:00
book MDL-65026 course: Fix modules intro formatting in WS 2019-09-16 13:04:26 +02:00
chat MDL-65026 course: Fix modules intro formatting in WS 2019-09-16 13:04:26 +02:00
choice MDL-66874 mod_choice: Explicitly add btn-secondary class to select all 2019-10-14 11:27:19 +08:00
data MDL-66679 Forms: Submit button remains disabled after file download 2019-10-30 16:36:28 +00:00
feedback MDL-66009 mod_feedback: Nested dependency fails again 2019-10-17 09:19:55 +02:00
folder MDL-66609: core_h5p: Add <component>_get_path_from_pluginfile method 2019-10-29 10:22:43 +08:00
forum Merge branch 'MDL-66381-master' of git://github.com/Chocolate-lightning/moodle_forum-project 2019-11-05 11:58:56 +08:00
glossary Merge branch 'MDL-66733-master' of git://github.com/andrewnicols/moodle 2019-09-23 23:35:42 +02:00
imscp MDL-65957 mod_imscp: Add required @file_upload tag in behat scenarios 2019-10-01 09:35:53 +08:00
label MDL-65026 course: Fix modules intro formatting in WS 2019-09-16 13:04:26 +02:00
lesson MDL-66968 php74: array_key_exists() for objects is deprecated 2019-10-25 00:49:04 +02:00
lti MDL-65026 course: Fix modules intro formatting in WS 2019-09-16 13:04:26 +02:00
page MDL-66609: core_h5p: Add <component>_get_path_from_pluginfile method 2019-10-29 10:22:43 +08:00
quiz MDL-66965 core: php74 curly 2 square braces changes 2019-10-25 17:41:10 +02:00
resource MDL-66609: core_h5p: Add <component>_get_path_from_pluginfile method 2019-10-29 10:22:43 +08:00
scorm MDL-66609: core_h5p: Add <component>_get_path_from_pluginfile method 2019-10-29 10:22:43 +08:00
survey MDL-65026 course: Fix modules intro formatting in WS 2019-09-16 13:04:26 +02:00
url MDL-65026 course: Fix modules intro formatting in WS 2019-09-16 13:04:26 +02:00
wiki MDL-65026 course: Fix modules intro formatting in WS 2019-09-16 13:04:26 +02:00
workshop Merge branch 'MDL-66074-OCT28' of git://github.com/Chocolate-lightning/moodle_forum-project 2019-10-30 13:44:59 +08:00
index.html
README.txt
upgrade.txt MDL-66079 core_grades: Add support for multiple grade items in an activity 2019-10-30 10:23:40 +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