moodle/mod
2018-09-04 13:07:00 +02:00
..
assign Merge branch 'MDL-62944' of https://github.com/NeillM/moodle 2018-09-04 12:15:36 +02:00
assignment MDL-61041 assign: Remove assignment 2.2 upgrader 2018-07-25 14:11:10 +08:00
book MDL-62478 upgrade: add 3.5.0 separation line to all upgrade scripts 2018-05-28 13:15:48 +02:00
chat MDL-62944 activities: Activities should not require capability 2018-08-31 10:15:37 +01:00
choice MDL-62944 activities: Activities should not require capability 2018-08-31 10:15:37 +01:00
data MDL-62944 activities: Activities should not require capability 2018-08-31 10:15:37 +01:00
feedback MDL-62944 activities: Activities should not require capability 2018-08-31 10:15:37 +01:00
folder MDL-62628 resource: Folder name formatting issue when displayed inline 2018-06-08 08:35:29 +08:00
forum MDL-57281 behat: deprecated step definition I navigate to node in 2018-08-20 12:53:26 +01:00
glossary MDL-61839 glossary: One letter search in glossary returns all entries 2018-08-06 09:45:34 +08:00
imscp MDL-62478 upgrade: add 3.5.0 separation line to all upgrade scripts 2018-05-28 13:15:48 +02:00
label MDL-62344 mod_label: ID number feature support 2018-07-27 06:03:24 -04:00
lesson MDL-62944 activities: Activities should not require capability 2018-08-31 10:15:37 +01:00
lti Merge branch 'MDL-57281-master' of https://github.com/vmdef/moodle 2018-08-21 10:49:10 +08:00
page MDL-41265 resource: Page resource option to show/hide last modified 2018-06-25 09:13:04 +08:00
quiz MDL-62944 activities: Activities should not require capability 2018-08-31 10:15:37 +01:00
resource MDL-62478 upgrade: add 3.5.0 separation line to all upgrade scripts 2018-05-28 13:15:48 +02:00
scorm MDL-62944 activities: Activities should not require capability 2018-08-31 10:15:37 +01:00
survey MDL-62478 upgrade: add 3.5.0 separation line to all upgrade scripts 2018-05-28 13:15:48 +02:00
url MDL-62478 upgrade: add 3.5.0 separation line to all upgrade scripts 2018-05-28 13:15:48 +02:00
wiki MDL-57281 behat: deprecated step definition I navigate to node in 2018-08-20 12:53:26 +01:00
workshop MDL-60820 workshop: Allow teacher to specify submission types 2018-08-31 14:48:29 +02:00
index.html
README.txt
upgrade.txt Merge branch 'MDL-53297-master' of git://github.com/cescobedo/moodle 2018-08-07 15:57:00 +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