moodle/mod
2013-09-19 09:49:31 +12:00
..
assign Merge branch 'MDL-37148-master' of git://github.com/damyon/moodle 2013-09-17 08:50:38 +12:00
assignment MDL-41192 course: Can not write to the read-only properties of cm_info 2013-09-10 14:11:30 +10:00
book Merge branch 'MDL-41595_M26' of git://github.com/lazydaisy/moodle 2013-09-17 02:15:06 +02:00
chat NOBUG: fixed whitespace 2013-09-10 13:02:35 +12:00
choice MDL-40732 choice: improve heading levels and styling 2013-08-20 16:05:01 +08:00
data NOBUG: fixed whitespace 2013-09-10 13:02:35 +12:00
feedback MDL-40687 Feedback: improve page heading levels and layouts 2013-09-09 09:48:05 +08:00
folder MDL-41564 folder resource: fix page heading levels 2013-09-09 10:17:28 +08:00
forum MDL-40733 forum: fix duplciate headings 2013-09-11 16:14:37 +08:00
glossary Merge branch 'wip-mdl-41711' of git://github.com/rajeshtaneja/moodle 2013-09-17 20:22:32 +02:00
imscp Revert "MDL-39876 Change get_record('course') calls to get_course" 2013-08-21 13:42:30 +08:00
label MDL-40438 migrate all collatorlib:: and textlib:: uses 2013-08-06 21:04:35 +02:00
lesson Merge branch 'MDL-40735_lesson' of https://github.com/andyjdavis/moodle 2013-09-10 15:44:49 +12:00
lti MDL-41568 Merge English strings from the en_fix language pack 2013-09-03 12:31:35 +02:00
page MDL-41566 page resource: fix page heading levels. 2013-09-09 10:19:11 +08:00
quiz Merge branch 'MDL-41572-master' of git://github.com/jamiepratt/moodle 2013-09-17 14:30:16 +12:00
resource MDL-29987 File resource: fix problem with PDF display on mobile devices 2013-09-13 10:30:41 +01:00
scorm Merge branch 'master_MDL-38489' of git://github.com/danmarsden/moodle 2013-09-19 09:49:31 +12:00
survey Merge branch 'MDL-40736' of git://github.com/rwijaya/moodle 2013-09-10 13:48:01 +08:00
url MDL-41567 url resource: fix page heading levels. 2013-09-10 17:13:18 +08:00
wiki MDL-41288 wiki: fix missing .rtl class for deleting comment button and improve page display for deleting comment 2013-09-13 12:56:41 +08:00
workshop MDL-41622 workshop mod: fix page heading levels. 2013-09-17 12:44:25 +08:00
index.html
README.txt
upgrade.txt MDL-40438 migrate all collatorlib:: and textlib:: uses 2013-08-06 21:04:35 +02: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