moodle/mod
David Monllao 09083ab0a8 Merge branch 'MDL-42571' of git://github.com/blaky/moodle
Conflicts:
	mod/assign/feedback/editpdf/version.php
2015-11-16 13:39:59 +08:00
..
assign Merge branch 'MDL-42571' of git://github.com/blaky/moodle 2015-11-16 13:39:59 +08:00
assignment MDL-52059 versions: bump all versions and requires near release 2015-11-10 12:33:52 +01:00
book MDL-52059 versions: bump all versions and requires near release 2015-11-10 12:33:52 +01:00
chat MDL-52059 versions: bump all versions and requires near release 2015-11-10 12:33:52 +01:00
choice MDL-52059 versions: bump all versions and requires near release 2015-11-10 12:33:52 +01:00
data MDL-52059 versions: bump all versions and requires near release 2015-11-10 12:33:52 +01:00
feedback MDL-52059 versions: bump all versions and requires near release 2015-11-10 12:33:52 +01:00
folder MDL-52059 versions: bump all versions and requires near release 2015-11-10 12:33:52 +01:00
forum MDL-52126 forum: Verify forum mailout contents 2015-11-15 13:29:31 +01:00
glossary MDL-52059 versions: bump all versions and requires near release 2015-11-10 12:33:52 +01:00
imscp MDL-52059 versions: bump all versions and requires near release 2015-11-10 12:33:52 +01:00
label MDL-52059 versions: bump all versions and requires near release 2015-11-10 12:33:52 +01:00
lesson MDL-52059 versions: bump all versions and requires near release 2015-11-10 12:33:52 +01:00
lti MDL-52059 versions: bump all versions and requires near release 2015-11-10 12:33:52 +01:00
page MDL-52059 versions: bump all versions and requires near release 2015-11-10 12:33:52 +01:00
quiz MDL-52059 versions: bump all versions and requires near release 2015-11-10 12:33:52 +01:00
resource MDL-52059 versions: bump all versions and requires near release 2015-11-10 12:33:52 +01:00
scorm MDL-52059 versions: bump all versions and requires near release 2015-11-10 12:33:52 +01:00
survey MDL-52059 versions: bump all versions and requires near release 2015-11-10 12:33:52 +01:00
url MDL-52059 versions: bump all versions and requires near release 2015-11-10 12:33:52 +01:00
wiki Merge branch 'MDL-51935-master' of git://github.com/dpalou/moodle 2015-11-11 09:59:36 +08:00
workshop MDL-52059 versions: bump all versions and requires near release 2015-11-10 12:33:52 +01: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