moodle/mod
2006-10-06 07:09:27 +00:00
..
assignment Change creation of restorelog file location to protected backupdata folder. 2006-10-04 14:50:50 +00:00
chat Change creation of restorelog file location to protected backupdata folder. 2006-10-04 14:50:50 +00:00
choice Change creation of restorelog file location to protected backupdata folder. 2006-10-04 14:50:50 +00:00
data fix for MDL-6859, MDL-6860 2006-10-06 06:04:32 +00:00
exercise Removed some references to user_teachers that will probably cause a bug 2006-10-06 06:42:33 +00:00
forum Merged fixes for MDL-2583 2006-10-05 03:18:29 +00:00
glossary removing some debugging statements 2006-10-05 03:26:22 +00:00
hotpot fix typo on line 89: get_context_instance(CONTEXT_COURSE, $course) ... should be ... get_context_instance(CONTEXT_COURSE, $course->id) 2006-10-06 07:09:27 +00:00
journal Change creation of restorelog file location to protected backupdata folder. 2006-10-04 14:50:50 +00:00
label FIxed to use the new debugging function 2006-09-18 09:13:04 +00:00
lams major whitespace cleanup - fixed trailng whitespace in new files and admin area 2006-09-20 21:00:45 +00:00
lesson Change creation of restorelog file location to protected backupdata folder. 2006-10-04 14:50:50 +00:00
quiz MDL-6837 - move warning about pupup blockers into the lang file. Merged from MOODLE_16_STABLE. 2006-10-05 15:58:08 +00:00
resource improved handling of resource file/directory references when renaming and deleting files in file manager. It is now fully configurable too. MDL-6132 2006-09-25 14:12:46 +00:00
scorm Fixed comments_from_learner data element to fit ADL requirements 2006-10-05 06:48:30 +00:00
survey Changed <module>_print_recent_activity() functions so that they don't use $isteacher. However, I've left the $isteacher parameter in the functions, for backward compatibility so as not to break thrid party modules. Should we remove the parameter now? 2006-09-24 14:01:50 +00:00
wiki fix for MDL-6859, MDL-6860 2006-10-06 06:04:32 +00:00
workshop Change creation of restorelog file location to protected backupdata folder. 2006-10-04 14:50:50 +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