moodle/mod
2009-06-09 05:26:42 +00:00
..
assignment MDL-14564 fixed whitespace 2008-04-27 22:41:36 +00:00
chat Fix drift between CVS and git 2008-06-25 01:54:21 +00:00
choice MDL-17050 excorising $_POST - thanks to mikec for patch merged from HEAD 2008-10-31 00:57:34 +00:00
data MDL-14463 search/order - comments cleanup + make it cross-db + delete unused column from query ; backported from HEAD 2009-05-06 17:26:34 +00:00
exercise Add missing fields when upgrading/installing on Postgres 2007-11-09 01:22:25 +00:00
forum "MDL-6926, fix php notice and replace double quote with single quote to reduce memory usage, thanks, Anthony" 2009-04-06 06:12:29 +00:00
glossary MDL-18058 glossary rates - secured ; backported from HEAD 2009-05-06 09:33:06 +00:00
hotpot fixes for XHTML strict: add <fieldset> arround hidden form fields, use "id" instead of "name" to locate forms, use HTML entities in button captions <= and => 2009-05-24 10:20:46 +00:00
journal MDL-14292, fix html, see tracker, thanks Chris 2008-04-24 04:15:02 +00:00
label Fix MDL-11632: Multiple files with emtpy lines outside PHP open/close tags 2007-10-10 21:09:18 +00:00
lams MDL-1883 - /course/scales.php very slow. "Backported" the fix by Petr from 1.9 to 1.8. Not a direct merge as the code has been refactored. 2007-09-24 06:32:14 +00:00
lesson Lesson/MDL-13311: make it possible to have a short answer question using 0 as answer. (backport) 2008-10-07 05:18:08 +00:00
quiz quiz: MDL-18635 log every single hit to mod/quiz/attempts.php 2009-03-23 01:59:24 +00:00
resource resource MDL-18691 Implemented resource_get_name in one more place for dropdowns 2009-06-09 05:26:42 +00:00
scorm MDL-18460 - SCORM Report - remove duplicated header - thanks Vlas Voloshin for the report. - merged from HEAD 2009-03-11 01:19:35 +00:00
survey Fixes reopened bug MDL-7472, "Explicitly label radio buttons in Survey" - removes use of USER->screenreader using get_accesshide + many other accessibility fixes. MERGED. 2007-11-21 15:26:19 +00:00
wiki Fix link to wiki in breadcrumb. Credit goes to Clif Kussmaul. MDL-16331 2008-09-29 22:35:19 +00:00
workshop MDL-19092 Fixed the user login view, which was incomplete and broken on some browsers 2009-05-07 12:21:20 +00:00
index.html
README.txt

ACTIVITY MODULES
----------------

These are main modules in Moodle, allowing various activities.


Each of these modules contains a number of expected components:

  mod.html: a form to setup/update a module instance

  version.php: defines some meta-info and provides upgrading code

  icon.gif: a 16x16 icon for the module

  db/mysql.sql: 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