moodle/mod
2014-04-09 15:31:49 +08:00
..
assign MDL-44268 Assign: Fix behat test for assigned marker filter 2014-04-09 14:29:46 +08:00
assignment MDL-44151 Amend subplugin packages. 2014-02-18 01:33:05 +01:00
book MDL-44017 Events: Deprecated content_viewed event 2014-03-07 15:16:10 +08:00
chat MDL-40843 chat: fixed bug in SQL query in recent activity block 2014-04-09 15:31:49 +08:00
choice MDL-44717 events: Fix multiple issues in events 2014-04-01 15:08:34 +08:00
data MDL-44717 events: Fix multiple issues in events 2014-04-01 15:08:34 +08:00
feedback Merge branch 'MDL-42462-Feedback-Fix-for-WCAG-2-0-issue-with-Informational-and-Error-Content-Displayed-in-red' of https://github.com/michael-milette/moodle 2014-04-08 14:11:59 +08:00
folder MDL-44321 events: cleaning up course_module_instance_list_viewed event 2014-02-28 16:36:09 +08:00
forum Merge branch 'MDL-44070-master' of https://github.com/sammarshallou/moodle 2014-04-08 13:30:41 +08:00
glossary Merge branch 'MDL-44070-master' of https://github.com/sammarshallou/moodle 2014-04-08 13:30:41 +08:00
imscp Merge branch 'MDL-40916_master' of https://github.com/markn86/moodle 2014-02-25 10:47:20 +08:00
label MDL-41176 mod_label: unified @package use 2014-02-16 11:48:00 +13:00
lesson Merge branch 'MDL-41063' of git://github.com/jmvedrine/moodle 2014-04-02 09:46:35 +08:00
lti MDL-44824 add missing subplugin type names 2014-03-27 11:46:36 +08:00
page MDL-42575 mod_page: revert heading option display 2014-03-21 15:42:34 +08:00
quiz Merge branch 'wip-MDL-40843-master' of git://github.com/marinaglancy/moodle 2014-04-07 16:57:06 +08:00
resource MDL-44321 events: cleaning up course_module_instance_list_viewed event 2014-02-28 16:36:09 +08:00
scorm Merge branch 'MDL-44677_scorm_commit' of git://github.com/davosmith/moodle 2014-04-08 11:14:52 +08:00
survey MDL-44715 use parent::validate_data() consistently in all events 2014-03-28 14:09:31 +08:00
url MDL-44321 events: cleaning up course_module_instance_list_viewed event 2014-02-28 16:36:09 +08:00
wiki Merge branch 'wip-MDL-33486-master' of git://github.com/marinaglancy/moodle 2014-04-07 13:10:41 +08:00
workshop Merge branch 'wip-MDL-44340-master' of git://github.com/abgreeve/moodle 2014-04-08 12:16:42 +08:00
index.html
README.txt
upgrade.txt MDL-22999 core_grades: Added ability to configure maximum grade value both globally and for each graded-activity. 2014-04-07 16:02:37 -04: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