moodle/mod
2021-10-02 15:29:28 +02:00
..
assign Merge branch 'MDL-72714_311' of git://github.com/stronk7/moodle into MOODLE_311_STABLE 2021-10-02 15:29:28 +02:00
assignment Merge branch 'MDL-71619-311' of https://github.com/paulholden/moodle into MOODLE_311_STABLE 2021-05-18 22:59:24 +02:00
book MDL-72179 behat: Make use of page resolvers 2021-07-26 15:14:24 +08:00
chat MDL-72179 behat: Lowercase all page instance resolvers 2021-07-23 20:43:47 +08:00
choice MDL-72179 behat: Make use of page resolvers 2021-07-26 15:14:24 +08:00
data MDL-72179 behat: Make use of page resolvers 2021-07-26 15:14:24 +08:00
feedback MDL-71055 behat: Update core settings to use generator 2021-08-23 12:23:03 +08:00
folder MDL-72179 behat: Make use of page resolvers 2021-07-26 15:14:24 +08:00
forum Merge branch 'MDL-69855-311' of git://github.com/junpataleta/moodle into MOODLE_311_STABLE 2021-09-09 12:59:45 +02:00
glossary MDL-72673 mod_glossary: Generate unique ID for Keywords select element 2021-09-24 18:31:28 +08:00
h5pactivity MDL-71055 behat: Update core settings to use generator 2021-08-23 12:23:03 +08:00
imscp MDL-72179 behat: Make use of page resolvers 2021-07-26 15:14:24 +08:00
label MDL-71638 upgrade: add 3.10.0 separation line to all upgrade scripts 2021-05-16 00:00:43 +02:00
lesson MDL-72499 event: add/correct event language strings as required. 2021-09-06 11:16:38 +01:00
lti MDL-72060 mod_lti: fix comparison if user is gradable 2021-09-28 17:25:27 +08:00
page MDL-72179 behat: Make use of page resolvers 2021-07-26 15:14:24 +08:00
quiz Merge branch 'MDL-72589_311' of https://github.com/stronk7/moodle into MOODLE_311_STABLE 2021-09-16 09:46:48 +08:00
resource MDL-72179 behat: Make use of page resolvers 2021-07-26 15:14:24 +08:00
scorm MDL-72179 behat: Make use of page resolvers 2021-07-26 15:14:24 +08:00
survey MDL-71113 js: Fix all jsdoc warnings 2021-06-18 09:38:05 +08:00
url MDL-51165 mod_url: allow directory index url direct access 2021-09-19 12:06:37 +09:30
wiki MDL-72179 behat: Make use of page resolvers 2021-07-26 15:14:24 +08:00
workshop MDL-72179 behat: Make use of page resolvers 2021-07-26 15:14:24 +08:00
index.html
README.txt
upgrade.txt MDL-68645 output: Do not apply filters when creating calendar events 2020-05-13 10:03:01 +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