moodle/mod
2015-10-07 11:22:56 +08:00
..
assign MDL-50526 mod_assign: Highlight error message when user has no group 2015-10-06 16:41:25 +01:00
assignment MDL-50183 upgrade: add 2.9.0 separation line to all upgrade scripts 2015-05-12 00:21:05 +02:00
book MDL-51564 webservice: Review the use of external format_string 2015-10-06 14:00:45 +02:00
chat MDL-49823 webservice: Support gravatar profile images 2015-10-01 09:36:31 +02:00
choice Merge branch 'MDL-49823-master' of git://github.com/jleyva/moodle 2015-10-07 01:08:52 +02:00
data MDL-49750 mod_data: fix updating file/picture fields breaks references 2015-10-05 11:42:53 +02:00
feedback MDL-49098 feedback: Fix completion message language strings 2015-06-03 16:47:52 +08:00
folder MDL-50008 folder: New Web Service mod_folder_view_folder 2015-07-30 23:02:47 +02:00
forum Merge branch 'wip-mdl-51285' of git://github.com/rajeshtaneja/moodle 2015-10-07 11:22:56 +08:00
glossary MDL-50678 mod_glossary: removed extra login check 2015-07-15 14:08:48 +08:00
imscp MDL-51564 webservice: Review the use of external format_string 2015-10-06 14:00:45 +02:00
label MDL-50183 upgrade: add 2.9.0 separation line to all upgrade scripts 2015-05-12 00:21:05 +02:00
lesson MDL-48881 mod_lesson: A couple of performance improvements 2015-09-16 13:32:49 +08:00
lti MDL-51615 mod_lti: New Web Service mod_lti_get_tool_launch_data 2015-10-03 08:25:28 +02:00
page MDL-49791 page: New Web Service mod_page_view_page 2015-07-30 22:59:30 +02:00
quiz MDL-51402 quiz: notification emails should respect grouping 2015-09-21 13:28:38 +01:00
resource MDL-49792 resource: New WS mod_resource_view_resource 2015-07-30 23:01:21 +02:00
scorm Merge branch 'MDL-51564-master' of git://github.com/jleyva/moodle 2015-10-06 16:32:55 +01:00
survey MDL-49360 core_lib: add new method get_local_referer() 2015-07-27 11:11:24 +08:00
url MDL-49360 core_lib: add new method get_local_referer() 2015-07-27 11:11:24 +08:00
wiki MDL-49028 mod_wiki: Fix for reseting pages and tags 2015-10-07 10:03:02 +08:00
workshop MDL-48165 workshop: Validate the rubric editing form 2015-09-01 23:37:20 +02:00
index.html
README.txt
upgrade.txt MDL-51564 webservice: Review the use of external format_string 2015-10-06 14:00:45 +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