moodle/mod
tjhunt 9101efd312 cleanup: MDL-17083 Remove the old teacher, teachers, student and students columns from the course table.
For something that has been deprecated for over two years, they were still used in a lot of places!
2008-11-13 08:40:57 +00:00
..
assignment cleanup: MDL-17083 Remove the old teacher, teachers, student and students columns from the course table. 2008-11-13 08:40:57 +00:00
chat "MDL-11371, The View past chat sessions should not appear if there haven't been any." 2008-10-15 09:03:30 +00:00
choice MDL-17050 excorising $_POST - thanks to mikec for patch - also check groupmode before bothering to get groupstuff to save some trees. 2008-10-31 00:53:28 +00:00
data MDL-16587 portfolio export formats - support straight file export not just RICHHTML (html + attachments) , it doesn't make sense in things like box.net 2008-11-11 19:54:50 +00:00
feedback MDL-17008 - added a function to access the _form member 2008-11-06 16:10:04 +00:00
forum MDL-16587 portfolio export formats - support straight file export not just RICHHTML (html + attachments) , it doesn't make sense in things like box.net 2008-11-11 19:54:50 +00:00
glossary cleanup: MDL-17083 Remove the old teacher, teachers, student and students columns from the course table. 2008-11-13 08:40:57 +00:00
hotpot mod hotpot: fix undefined global variable $COURSE 2008-11-09 03:39:15 +00:00
label MDL-16676 All references to the text.html and emoticons.html files need to be updated to point to text2.html and emoticons2.html 2008-09-25 10:04:01 +00:00
lesson cleanup: MDL-17083 Remove the old teacher, teachers, student and students columns from the course table. 2008-11-13 08:40:57 +00:00
quiz cleanup: MDL-17083 Remove the old teacher, teachers, student and students columns from the course table. 2008-11-13 08:40:57 +00:00
resource cleanup: MDL-17083 Remove the old teacher, teachers, student and students columns from the course table. 2008-11-13 08:40:57 +00:00
scorm MDL-16810 - Allow site configuration of scorm settings. Bad array subscript. 2008-11-11 23:11:39 +00:00
survey cleanup: MDL-17083 Remove the old teacher, teachers, student and students columns from the course table. 2008-11-13 08:40:57 +00:00
wiki cleanup: MDL-17083 Remove the old teacher, teachers, student and students columns from the course table. 2008-11-13 08:40:57 +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