moodle/mod
2018-02-11 23:07:18 +01:00
..
assign MDL-61168 mod_assign: Truncate only the online text submission 2018-02-02 09:20:57 +08:00
assignment MDL-59159 upgrade: clean < 3.1.0 upgrade steps 2017-12-04 01:18:57 +01:00
book MDL-59159 upgrade: clean < 3.1.0 upgrade steps 2017-12-04 01:18:57 +01:00
chat MDL-57394 mod_chat: New WS mod_chat_get_session_messages 2018-01-30 14:30:51 +01:00
choice Merge branch 'MDL-2051-master-2' of git://github.com/junpataleta/moodle 2017-12-26 01:25:14 +01:00
data MDL-60060 mod_data: add unit tests for callbacks 2017-12-11 14:05:00 +08:00
feedback MDL-51885 lang: Remove strings deprecated in 3.1 2018-01-08 12:44:07 +05:30
folder MDL-59159 upgrade: clean < 3.1.0 upgrade steps 2017-12-04 01:18:57 +01:00
forum MDL-44612 mod_forum: Confirm forum post listing in recent activity block 2018-01-24 16:38:54 +08:00
glossary Merge branch 'MDL-44612-master' of git://github.com/junpataleta/moodle 2018-02-01 10:33:17 +08:00
imscp MDL-59159 upgrade: clean < 3.1.0 upgrade steps 2017-12-04 01:18:57 +01:00
label MDL-59159 upgrade: clean < 3.1.0 upgrade steps 2017-12-04 01:18:57 +01:00
lesson Merge branch 'MDL-51885-master' of git://github.com/ankitagarwal/moodle 2018-01-15 19:09:52 +01:00
lti Merge branch 'MDL-60549-master' of https://github.com/davidknu/moodle 2018-01-16 10:08:26 +08:00
page MDL-59159 upgrade: clean < 3.1.0 upgrade steps 2017-12-04 01:18:57 +01:00
quiz MDL-52832 quiz: sql fixing couple of incorrect group by uses 2018-02-06 18:30:11 +01:00
resource MDL-59159 upgrade: clean < 3.1.0 upgrade steps 2017-12-04 01:18:57 +01:00
scorm MDL-60061 mod_scorm: add unit tests for drag/drop 2017-12-12 15:15:09 +08:00
survey MDL-59159 upgrade: clean < 3.1.0 upgrade steps 2017-12-04 01:18:57 +01:00
url MDL-59159 upgrade: clean < 3.1.0 upgrade steps 2017-12-04 01:18:57 +01:00
wiki MDL-59159 upgrade: clean < 3.1.0 upgrade steps 2017-12-04 01:18:57 +01:00
workshop MDL-61150 xmldb: correct path to schema in install.xml 2018-02-11 23:07:18 +01:00
index.html
README.txt
upgrade.txt MDL-59612 core: removed hard-coded check for referer in modules 2017-07-31 12:03:28 +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