moodle/mod
2019-01-28 19:43:34 +01:00
..
assign Merge branch 'MDL-56604-35' of git://github.com/damyon/moodle into MOODLE_35_STABLE 2019-01-28 13:33:07 +01:00
assignment MDL-63816 privacy: Corrected provider get_users_in_context descriptions 2018-10-31 12:14:43 +08:00
book MDL-46783 permissions: let some moodle/ caps be overriden in all mods 2018-12-04 18:01:29 +00:00
chat MDL-46783 permissions: let some moodle/ caps be overriden in all mods 2018-12-04 18:01:29 +00:00
choice MDL-46783 permissions: let some moodle/ caps be overriden in all mods 2018-12-04 18:01:29 +00:00
data MDL-46783 permissions: let some moodle/ caps be overriden in all mods 2018-12-04 18:01:29 +00:00
feedback MDL-46783 permissions: let some moodle/ caps be overriden in all mods 2018-12-04 18:01:29 +00:00
folder MDL-63628 accessibility: Trigger file links with keyboard 2019-01-22 08:41:01 +08:00
forum Merge branch 'MDL-64240-35' of git://github.com/mickhawkins/moodle into MOODLE_35_STABLE 2019-01-24 00:57:03 +01:00
glossary Merge branch 'MDL-64486-35' of git://github.com/peterRd/moodle into MOODLE_35_STABLE 2019-01-22 08:23:31 +01:00
imscp MDL-46783 permissions: let some moodle/ caps be overriden in all mods 2018-12-04 18:01:29 +00:00
label MDL-46783 permissions: let some moodle/ caps be overriden in all mods 2018-12-04 18:01:29 +00:00
lesson MDL-63512 mod_lesson: Fix video links provided in feedback 2018-12-14 10:27:12 +08:00
lti MDL-64357 ltiservice_gradebookservices: updated unit tests 2018-12-11 17:03:26 +08:00
page Merge branch 'MDL-63145-35' of git://github.com/peterRd/moodle into MOODLE_35_STABLE 2018-12-12 08:30:20 +08:00
quiz Merge branch 'MDL-64107-35' of git://github.com/damyon/moodle into MOODLE_35_STABLE 2019-01-23 10:22:32 +01:00
resource MDL-64346 mod_resource: Fix problems with # in file name. 2019-01-15 14:30:35 +01:00
scorm MDL-46783 permissions: let some moodle/ caps be overriden in all mods 2018-12-04 18:01:29 +00:00
survey MDL-46783 permissions: let some moodle/ caps be overriden in all mods 2018-12-04 18:01:29 +00:00
url Merge branch 'MDL-63150-35' of git://github.com/peterRd/moodle into MOODLE_35_STABLE 2018-12-12 08:32:55 +08:00
wiki MDL-63628 accessibility: Trigger file links with keyboard 2019-01-22 08:41:01 +08:00
workshop Merge branch 'MDL-62668-35' of git://github.com/jleyva/moodle into MOODLE_35_STABLE 2019-01-28 19:43:34 +01: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