moodle/mod
2008-09-25 08:21:59 +00:00
..
assignment MDL-16666 removing all use_html_editor() instances 2008-09-24 21:03:36 +00:00
chat "MDL-14129, fix hardcoded print_error" 2008-09-25 01:55:39 +00:00
choice MDL-14679 fixed some more addslashes() 2008-09-23 21:22:04 +00:00
data MDL-16666 removing all use_html_editor() instances 2008-09-24 21:03:36 +00:00
feedback MDL-16002 rewritten upgrade locking and better upgrade progress tracking; MDL-16070 Do not use $a[0] syntax in lang packs + various other upgrade improvements and fixes 2008-08-16 12:16:01 +00:00
forum MDL-16617 fixed forum name filtering - thanks Mark Nielsen; merged from mOODLE_19_STABLE 2008-09-25 07:12:27 +00:00
glossary MDL-15666 MDL-16486 2008-09-17 14:31:30 +00:00
hotpot MDL-16002 rewritten upgrade locking and better upgrade progress tracking; MDL-16070 Do not use $a[0] syntax in lang packs + various other upgrade improvements and fixes 2008-08-16 12:16:01 +00:00
label MDL-16002 rewritten upgrade locking and better upgrade progress tracking; MDL-16070 Do not use $a[0] syntax in lang packs + various other upgrade improvements and fixes 2008-08-16 12:16:01 +00:00
lesson MDL-16666 removing all use_html_editor() instances 2008-09-24 21:03:36 +00:00
quiz "MDL-14129, fixed hardcoded print_header in quiz module" 2008-09-25 08:21:59 +00:00
resource MDL-16486 Implemented the proxy DB class. Sort of working, but still some issues to sort out, like fix_course_sort_order, which updates a record NOT inserted by the unit test. 2008-09-19 14:28:22 +00:00
scorm MDL-7068 - SCORM 2004 compliance. Handle cmi.interactions hydration (scorm 1.2 to as well). 2008-09-24 23:12:09 +00:00
survey MDL-16002 rewritten upgrade locking and better upgrade progress tracking; MDL-16070 Do not use $a[0] syntax in lang packs + various other upgrade improvements and fixes 2008-08-16 12:16:01 +00:00
wiki MDL-16666 removing all use_html_editor() instances 2008-09-24 21:03:36 +00:00
index.html
README.txt MDL-14679 fixed references to mod.html 2008-06-01 19:09:13 +00: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

  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