moodle/mod
Dan Poltawski 1a27142afe Merge branch 'MDL-47903-master' of git://github.com/andrewnicols/moodle
Conflicts:
	mod/forum/version.php
    mod/forum/db/upgrade.php
2014-11-03 12:28:33 +00:00
..
assign Merge branch 'MDL-46219' of https://github.com/dkns/moodle 2014-10-29 15:37:47 +08:00
assignment MDL-46045 Fix php tags (lowercase) everywhere 2014-06-19 11:05:16 +08:00
book MDL-44725 Availability: Replace groupmembersonly - FEATURE_xx (6) 2014-09-02 13:03:17 +01:00
chat MDL-44725 Availability: Replace groupmembersonly - FEATURE_xx (6) 2014-09-02 13:03:17 +01:00
choice MDL-47875 choice: chat module strings not required from Choice anymore 2014-10-30 22:41:23 +01:00
data MDL-47796 mod_data: Fix display of group records. 2014-10-29 13:52:29 +08:00
feedback MDL-47865 mod_feedback - XSS through $searchstring in mod/feedback/mapcourse.php 2014-11-03 14:56:10 +08:00
folder MDL-44725 Availability: Replace groupmembersonly - FEATURE_xx (6) 2014-09-02 13:03:17 +01:00
forum Merge branch 'MDL-47903-master' of git://github.com/andrewnicols/moodle 2014-11-03 12:28:33 +00:00
glossary Merge branch 'MDL-47183-master' of git://github.com/andrewnicols/moodle 2014-10-28 14:02:19 +13:00
imscp MDL-44725 Availability: Replace groupmembersonly - FEATURE_xx (6) 2014-09-02 13:03:17 +01:00
label MDL-44725 Availability: Replace groupmembersonly - FEATURE_xx (6) 2014-09-02 13:03:17 +01:00
lesson Merge branch 'MDL-29873' of git://github.com/jmvedrine/moodle 2014-10-30 14:17:32 +08:00
lti MDL-47926 LTI: Fix missing sesskey checks and add content type headers to redirect 2014-11-03 14:43:54 +08:00
page MDL-44725 Availability: Replace groupmembersonly - FEATURE_xx (6) 2014-09-02 13:03:17 +01:00
quiz MDL-47978 mod_quiz: more explicit selector for action menu change 2014-11-03 11:39:30 +13:00
resource MDL-44725 Availability: Replace groupmembersonly - FEATURE_xx (6) 2014-09-02 13:03:17 +01:00
scorm MDL-47970 mod_scorm: fixed HTML5 validation error 2014-10-30 14:56:15 +13:00
survey MDL-44725 Availability: Replace groupmembersonly - FEATURE_xx (6) 2014-09-02 13:03:17 +01:00
url MDL-47690 web services: Fixed invalid return parameter type in mod_url 2014-10-24 09:54:35 +02:00
wiki MDL-47613 wiki: allow searching several words 2014-10-10 16:35:13 +08:00
workshop MDL-31936 workshop: version bump 2014-10-07 10:15:54 +08:00
index.html
README.txt
upgrade.txt MDL-44725 Availability: Replace groupmembersonly - upgrade, core (1) 2014-09-02 13:03:07 +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