moodle/mod
2019-07-22 10:44:53 +08:00
..
assign MDL-66136 assign: Verify presence of resources in online text submission 2019-07-22 10:44:53 +08:00
assignment MDL-63816 privacy: Corrected provider get_users_in_context descriptions 2018-10-31 12:14:43 +08:00
book MDL-46783 permissions: let some moodle/ caps be overriden in all mods 2018-12-04 18:01:29 +00:00
chat MDL-65397 lang: Import fixed English strings (en_fix) 2019-04-29 11:50:36 +02:00
choice MDL-65397 lang: Import fixed English strings (en_fix) 2019-04-29 11:50:36 +02:00
data MDL-65397 lang: Import fixed English strings (en_fix) 2019-04-29 11:50:36 +02:00
feedback MDL-63959 feedback: Adjust unit test for perf 2019-05-10 11:43:19 +08:00
folder MDL-47247 mod_folder: Apply site config when showexpanded is not set 2019-01-29 08:59:05 +08:00
forum MDL-65537 lang: Import fixed English strings (en_fix) 2019-05-10 16:14:16 +02:00
glossary MDL-64623 glossary: Check the entry id 2019-07-01 19:01:39 +02:00
imscp MDL-46783 permissions: let some moodle/ caps be overriden in all mods 2018-12-04 18:01:29 +00:00
label MDL-46783 permissions: let some moodle/ caps be overriden in all mods 2018-12-04 18:01:29 +00:00
lesson MDL-61115: mod_lesson: Check if the teacher can access the override 2019-07-03 17:50:44 +02:00
lti Merge branch 'MDL-63144-35' of git://github.com/rezaies/moodle into MOODLE_35_STABLE 2019-03-19 11:27:32 +08:00
page Merge branch 'MDL-63145-35' of git://github.com/peterRd/moodle into MOODLE_35_STABLE 2018-12-12 08:30:20 +08:00
quiz MDL-34411 mod_quiz: Check if the teacher can access the override 2019-07-01 19:01:39 +02:00
resource MDL-64346 mod_resource: Fix problems with # in file name. 2019-01-15 14:30:35 +01:00
scorm MDL-65576 behat: Reset Selenium driver between scorm scenarios 2019-05-31 08:17:29 +08:00
survey MDL-63149 mod_survey: Add userid param to mod_survey calendar callbacks 2019-03-07 17:54:54 +11:00
url Merge branch 'MDL-63150-35' of git://github.com/peterRd/moodle into MOODLE_35_STABLE 2018-12-12 08:32:55 +08:00
wiki Merge branch 'MDL-63151-35' of git://github.com/rezaies/moodle into MOODLE_35_STABLE 2019-03-26 13:16:06 +01:00
workshop Merge branch 'MDL-63152-35' of git://github.com/rezaies/moodle into MOODLE_35_STABLE 2019-03-26 13:28:31 +01:00
index.html
README.txt
upgrade.txt MDL-58768 core: Fix a typo for callback name 2018-07-31 16:15:38 +10: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