moodle/mod
2012-05-15 12:27:27 +08:00
..
assign MDL-32933: Add outcomes to mod_assign and upgrade tool 2012-05-15 12:27:27 +08:00
assignment Merge branch 'master-MDL-31028_2' of git://github.com/chtombleson/moodle 2012-05-10 13:52:31 +12:00
chat MDL-32670 mod/chat: also added missing call to ->set_heading in report.php 2012-05-02 19:09:43 -07:00
choice MDL-30686 improve accuracy of qualified_me() by trying PAGE->url first 2012-04-27 13:39:18 +02:00
data MDL-31763 mod_data: Fixed array iteration reference issue 2012-05-10 17:31:42 +12:00
feedback MDL-32735 fix multiple E_STRICT feedback issues 2012-05-06 12:02:54 +02:00
folder MDL-31945 folder: Removing deprecated function folder_get_participants 2012-05-08 14:44:47 +08:00
forum Merge branch 'MDL-31946-master' of git://github.com/ankitagarwal/moodle 2012-05-09 11:35:38 +12:00
glossary MDL-30649 Glossary : Fixed floating element breaking HTML 2012-05-11 10:53:22 +08:00
imscp MDL-31948 - IMC-CP - Removing the deprecated imscp_get_participants function 2012-05-08 14:58:02 +08:00
label MDL-31950 - Label - Removing the deprecated label_get_participants function 2012-05-08 14:53:54 +08:00
lesson MDL-29624 Media embedding system, part 3: resource module (and URL, lesson) 2012-05-09 18:29:31 +01:00
lti MDL-32569 drop migrated module tests 2012-04-21 16:58:07 +02:00
page MDL-31952 - Resource - Removing the deprecated page_get_participants function 2012-05-08 14:40:53 +08:00
quiz Merge branch 'MDL-31854' of git://github.com/timhunt/moodle 2012-05-08 12:33:45 +08:00
resource Merge branch 'MDL-29624-master' of git://github.com/sammarshallou/moodle 2012-05-10 10:52:32 +08:00
scorm Merge branch 'master_MDL-32507' of git://github.com/danmarsden/moodle 2012-05-10 13:58:12 +12:00
survey MDL-31607 use full course object for require_login() if already available 2012-04-22 17:41:47 +02:00
url MDL-29624 Media embedding system, part 3: resource module (and URL, lesson) 2012-05-09 18:29:31 +01:00
wiki Merge branch 'MDL-32471-thumbnails' of git://github.com/mudrd8mz/moodle 2012-04-25 15:14:27 +02:00
workshop MDL-32718 Fixed typo in column name 2012-05-08 15:54:11 +08:00
index.html
README.txt Fixed location of icon.gif 2010-03-24 10:56:22 +00:00
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