moodle/mod
2018-09-19 13:31:16 +02:00
..
assign Merge branch 'MDL-62944-m35' of https://github.com/NeillM/moodle into MOODLE_35_STABLE 2018-09-04 12:15:50 +02:00
assignment MDL-62478 upgrade: add 3.5.0 separation line to all upgrade scripts 2018-05-28 13:16:21 +02:00
book MDL-63117 mod_book: Check if the module is visible to the user 2018-09-06 17:46:10 +10:00
chat MDL-62944 activities: Activities should not require capability 2018-08-31 10:17:53 +01:00
choice Merge branch 'MDL-63135-35' of git://github.com/rezaies/moodle into MOODLE_35_STABLE 2018-09-19 13:13:10 +02:00
data Merge branch 'MDL-63136-35' of git://github.com/rezaies/moodle into MOODLE_35_STABLE 2018-09-11 23:52:11 +02:00
feedback MDL-58781 mod_feedback: Inconsistency in analysis exported to excel 2018-09-14 12:37:17 +02:00
folder MDL-63138 mod_folder: Check if the module is visible to the user 2018-09-07 15:06:28 +10:00
forum MDL-63139 mod_forum: Check if the module is visible to the user 2018-09-07 16:56:30 +10:00
glossary MDL-63140 mod_glossary: Check if the module is visible to the user 2018-09-19 21:27:54 +10:00
imscp MDL-62478 upgrade: add 3.5.0 separation line to all upgrade scripts 2018-05-28 13:16:21 +02:00
label MDL-62478 upgrade: add 3.5.0 separation line to all upgrade scripts 2018-05-28 13:16:21 +02:00
lesson Merge branch 'MDL-63249-35-enfix' of git://github.com/mudrd8mz/moodle into MOODLE_35_STABLE 2018-09-04 22:35:03 +02:00
lti MDL-63249 lang: Merge English strings from the en_fix language pack 2018-09-04 15:12:17 +02:00
page MDL-62478 upgrade: add 3.5.0 separation line to all upgrade scripts 2018-05-28 13:16:21 +02:00
quiz MDL-50314 mod_quiz: removed hardcoded export columns 2018-09-07 14:18:06 +02:00
resource MDL-62478 upgrade: add 3.5.0 separation line to all upgrade scripts 2018-05-28 13:16:21 +02:00
scorm MDL-62944 activities: Activities should not require capability 2018-08-31 10:17:53 +01:00
survey MDL-62478 upgrade: add 3.5.0 separation line to all upgrade scripts 2018-05-28 13:16:21 +02:00
url MDL-62478 upgrade: add 3.5.0 separation line to all upgrade scripts 2018-05-28 13:16:21 +02:00
wiki Merge branch 'MDL-62977_35' of git://github.com/markn86/moodle into MOODLE_35_STABLE 2018-08-01 16:42:10 +02:00
workshop MDL-62763 lang: Merge English strings from the en_fix language pack 2018-07-02 13:36:29 +02:00
index.html
README.txt
upgrade.txt MDL-58768 core: Fix a typo for callback name 2018-07-31 16:15:38 +10: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