moodle/mod
2013-07-18 20:22:47 +02:00
..
assign MDL-40220 use new core_component::get_plugin_list() 2013-07-16 22:36:11 +02:00
assignment Merge branch 'MDL-40701-master' of git://github.com/danpoltawski/moodle 2013-07-17 12:45:18 +10:00
book MDL-40220 use new core_component::get_plugin_list() 2013-07-16 22:36:11 +02:00
chat MDL-39628 Chat: check mod/chat:chat capability when using daemon. 2013-07-02 12:20:29 +08:00
choice MDL-39753 Add 2.5.0 upgrade line 2013-05-20 15:33:19 +02:00
data MDL-40220 use new core_component::get_plugin_list() 2013-07-16 22:36:11 +02:00
feedback MDL-40402 libraries: Replace get_system_context() with context_system::instance() in core 2013-07-04 15:41:06 +08:00
folder MDL-39753 Add 2.5.0 upgrade line 2013-05-20 15:33:19 +02:00
forum MDL-40424 libraries: Deprecate context_instance_preload_sql() 2013-07-12 17:41:49 +08:00
glossary MDL-39815 mod_glossary: Fixing behat test 2013-07-11 09:36:32 +02:00
imscp MDL-32480 allow external https links in IMSCP too 2013-06-07 09:58:03 +02:00
label MDL-39753 Add 2.5.0 upgrade line 2013-05-20 15:33:19 +02:00
lesson MDL-35851 lesson: Handle importing questions into an empty lesson. 2013-07-18 16:45:44 +08:00
lti MDL-40308: Fix javascript for lti mod_form 2013-07-04 13:47:09 +08:00
page MDL-39753 Add 2.5.0 upgrade line 2013-05-20 15:33:19 +02:00
quiz Merge branch 'wip_MDL-40074' of https://github.com/jamiepratt/moodle 2013-07-18 20:22:47 +02:00
resource MDL-39753 Add 2.5.0 upgrade line 2013-05-20 15:33:19 +02:00
scorm MDL-40220 use new core_component::get_plugin_list() 2013-07-16 22:36:11 +02:00
survey MDL-39753 Add 2.5.0 upgrade line 2013-05-20 15:33:19 +02:00
url MDL-39753 Add 2.5.0 upgrade line 2013-05-20 15:33:19 +02:00
wiki MDL-40604 wiki: fix use of print_container 2013-07-17 14:11:10 +08:00
workshop MDL-40220 use new core_component::get_plugin_list() 2013-07-16 22:36:11 +02:00
index.html
README.txt
upgrade.txt MDL-29996 remove deprecated stuff from filter code 2012-12-30 17:02:18 +01: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