moodle/mod
2019-05-14 12:47:32 +08:00
..
assign Merge branch 'MDL-65484-master' of git://github.com/damyon/moodle 2019-05-08 11:21:59 +08:00
assignment MDL-64878 grades: Update delete_instance 2019-02-27 10:37:54 +08:00
book MDL-65388 mod_book: format plugin file urls when printing book 2019-04-30 10:45:01 +08:00
chat MDL-65397 lang: Import fixed English strings (en_fix) 2019-04-29 11:46:26 +02:00
choice Merge branch 'MDL-65397-master-enfix' of git://github.com/mudrd8mz/moodle 2019-05-01 01:42:55 +02:00
data Merge branch 'MDL-65397-master-enfix' of git://github.com/mudrd8mz/moodle 2019-05-01 01:42:55 +02:00
feedback MDL-63959 feedback: Adjust unit test for perf 2019-05-10 11:41:23 +08:00
folder MDL-47247 mod_folder: Apply site config when showexpanded is not set 2019-01-29 08:58:14 +08:00
forum MDL-65528 mod_forum: Do not render add discussion if not permitted 2019-05-14 12:47:32 +08:00
glossary Merge branch 'MDL-64906_hideif_mod' of git://github.com/davosmith/moodle 2019-04-30 20:47:22 +02:00
imscp MDL-63276 upgrade: clean < 3.2.0 upgrade steps 2019-01-03 01:17:17 +01:00
label MDL-63276 upgrade: clean < 3.2.0 upgrade steps 2019-01-03 01:17:17 +01:00
lesson Merge branch 'MDL-35396-master' of git://github.com/mihailges/moodle 2019-05-08 09:47:04 +08:00
lti MDL-65537 lang: Import fixed English strings (en_fix) 2019-05-10 10:17:47 +02:00
page MDL-64906 mod: add support for hideif to activity modules 2019-04-02 09:13:09 +01:00
quiz MDL-65537 lang: Use fixed strings in tests, too 2019-05-10 12:37:03 +02:00
resource MDL-64906 mod: add support for hideif to activity modules 2019-04-02 09:13:09 +01:00
scorm Merge branch 'MDL-65250' of git://github.com/stronk7/moodle 2019-05-01 16:04:02 +08:00
survey MDL-65056 completion: fix behat tests for survey 2019-04-24 18:32:25 +02:00
url Merge branch 'MDL-64906_hideif_mod' of git://github.com/davosmith/moodle 2019-04-30 20:47:22 +02:00
wiki MDL-64656 core_tag: Return tags in modules and blog 2019-04-11 10:20:44 +02:00
workshop Merge branch 'MDL-64906_hideif_mod' of git://github.com/davosmith/moodle 2019-04-30 20:47:22 +02:00
index.html
README.txt
upgrade.txt

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