moodle/mod
2012-05-22 13:05:28 +08:00
..
assign MDL-32932 mod_assign: Coding style clean up and security improvement 2012-05-22 14:21:47 +12:00
assignment MDL-32247,MDL-32831,MDL-32900 Use correct url building of file type icons 2012-05-21 16:01:04 +08:00
book MDL-32709 Pre-integration trivial clean up 2012-05-21 14:06:00 +12:00
chat MDL-32925 lang: Add extended help texts for all modules 2012-05-18 00:27:04 +08:00
choice MDL-32925 lang: Add extended help texts for all modules 2012-05-18 00:27:04 +08:00
data MDL-32247,MDL-32831,MDL-32900 Use correct url building of file type icons 2012-05-21 16:01:04 +08:00
feedback MDL-32925 lang: Add extended help texts for all modules 2012-05-18 00:27:04 +08:00
folder MDL-33153 Resource: rename submit button to 'save changes' in folder resource 2012-05-22 09:36:29 +08:00
forum Merge branch 'w21_MDL-32379_m23_forumcron' of git://github.com/skodak/moodle 2012-05-22 13:05:28 +08:00
glossary MDL-32247,MDL-32831,MDL-32900 Use correct url building of file type icons 2012-05-21 16:01:04 +08:00
imscp MDL-32925 lang: Add extended help texts for all modules 2012-05-18 00:27:04 +08:00
label MDL-32925 lang: Add extended help texts for all modules 2012-05-18 00:27:04 +08:00
lesson MDL-32925 lang: Add extended help texts for all modules 2012-05-18 00:27:04 +08:00
lti MDL-32925 lang: Add extended help texts for all modules 2012-05-18 00:27:04 +08:00
page MDL-32925 lang: Add extended help texts for all modules 2012-05-18 00:27:04 +08:00
quiz MDL-32727 - quiz: fix incorrect variable name in upgrade 2012-05-18 15:08:07 +08:00
resource MDL-32247,MDL-32831,MDL-32900 Use correct url building of file type icons 2012-05-21 16:01:04 +08:00
scorm MDL-32925 lang: Add extended help texts for all modules 2012-05-18 00:27:04 +08:00
survey MDL-32925 lang: Add extended help texts for all modules 2012-05-18 00:27:04 +08:00
url MDL-32247,MDL-32831,MDL-32900 Use correct url building of file type icons 2012-05-21 16:01:04 +08:00
wiki MDL-32247,MDL-32831,MDL-32900 Use correct url building of file type icons 2012-05-21 16:01:04 +08:00
workshop MDL-32247,MDL-32831,MDL-32900 Use correct url building of file type icons 2012-05-21 16:01:04 +08:00
index.html
README.txt
upgrade.txt MDL-29624 Media embedding system, part 1: new API and filter changes 2012-05-09 18:29:29 +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