moodle/mod
2014-03-05 11:22:37 +08:00
..
assign Merge branch 'MDL-43930-26' of git://github.com/damyon/moodle into MOODLE_26_STABLE 2014-03-05 11:22:37 +08:00
assignment MDL-42339 - removed double formatting for set_title() and set_heading() 2014-02-05 15:40:25 +08:00
book MDL-43440 unit testing: Use cmid in unit tests when it should be used. 2014-01-24 14:56:53 +11:00
chat MDL-44082 mod_chat: added a security check for users already in the chat activity 2014-03-03 12:16:48 +08:00
choice Merge branch 'MDL-42339_m26' of git://github.com/rwijaya/moodle into MOODLE_26_STABLE 2014-02-05 15:57:21 +08:00
data Merge branch 'MDL-42339_m26' of git://github.com/rwijaya/moodle into MOODLE_26_STABLE 2014-02-05 15:57:21 +08:00
feedback MDL-43656 mod_feedback: availablity date logic incorrect 2014-03-03 11:24:23 +08:00
folder MDL-43590 Merge English strings from the en_fix language pack 2014-01-09 01:11:59 +01:00
forum MDL-43916 - Email addresses incorrectly displayed 2014-03-03 10:37:22 +08:00
glossary MDL-44362 recentactivity: fix regressions from MDL-44055 2014-02-28 16:33:54 +08:00
imscp MDL-34020: Further work on IMS package importing when using Blackboard packages 2013-12-04 15:18:13 +10:30
label MDL-42930 Add 2.6.0 upgrade line 2013-11-18 11:41:59 +08:00
lesson MDL-42339 - removed double formatting for set_title() and set_heading() 2014-02-05 15:40:25 +08:00
lti MDL-42339 - removed double formatting for set_title() and set_heading() 2014-02-05 15:40:25 +08:00
page MDL-42339 - removed double formatting for set_title() and set_heading() 2014-02-05 15:40:25 +08:00
quiz Merge branch 'MDL-44278_26' of git://github.com/timhunt/moodle into MOODLE_26_STABLE 2014-03-04 15:43:26 +08:00
resource MDL-42930 Add 2.6.0 upgrade line 2013-11-18 11:41:59 +08:00
scorm Merge branch 'MDL-44247-26' of git://github.com/FMCorz/moodle into MOODLE_26_STABLE 2014-02-24 14:30:08 +08:00
survey MDL-42339 - removed double formatting for set_title() and set_heading() 2014-02-05 15:40:25 +08:00
url MDL-42930 Add 2.6.0 upgrade line 2013-11-18 11:41:59 +08:00
wiki MDL-39990 wiki: more detailed validation of view/edit access 2014-03-03 14:45:40 +08:00
workshop MDL-44258 Behat test for workshop, automate MDLQA-99 2014-02-28 16:33:32 +08:00
index.html
README.txt
upgrade.txt Merge branch 'wip-mdl-31405-new' of git://github.com/rajeshtaneja/moodle 2013-10-21 10:57:44 +08: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