moodle/mod
2019-03-14 01:22:19 +01:00
..
assign Merge branch 'MDL-62465-35' of git://github.com/damyon/moodle into MOODLE_35_STABLE 2019-03-05 15:29:55 +08: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-63134 mod_chat: Check if the module is visible to the user 2019-02-11 16:10:41 +11:00
choice MDL-64943 behat: fix some remaining uses of old strings 2019-03-05 17:02:28 +01:00
data MDL-64971 access: Ensure that the capability exists when fetching 2019-03-06 10:16:54 +08:00
feedback Merge branch 'MDL-64943-35-enfix' of git://github.com/mudrd8mz/moodle into MOODLE_35_STABLE 2019-03-05 11:09:42 +01:00
folder MDL-47247 mod_folder: Apply site config when showexpanded is not set 2019-01-29 08:59:05 +08:00
forum MDL-64652 forum: Use an inner join when fetching ratings 2019-03-05 10:17:36 +08:00
glossary MDL-64652 glossary: Break LEFT JOINs to multiple INNER 2019-03-05 10:17:36 +08: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 Merge branch 'MDL-64943-35-enfix' of git://github.com/mudrd8mz/moodle into MOODLE_35_STABLE 2019-03-05 11:09:42 +01:00
lti MDL-64943 lang: Import fixed English strings (en_fix) 2019-02-28 18:02:44 +01: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-63146-35' of git://github.com/rezaies/moodle into MOODLE_35_STABLE 2019-03-14 01:22:19 +01:00
resource MDL-64346 mod_resource: Fix problems with # in file name. 2019-01-15 14:30:35 +01:00
scorm MDL-64943 lang: Import fixed English strings (en_fix) 2019-02-28 18:02:44 +01: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 MDL-64943 lang: Import fixed English strings (en_fix) 2019-02-28 18:02:44 +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