moodle/mod
Adrian Greeve d2148f32ca MDL-63531 privacy: Update to comments provider to simplfy sql.
This updates the get_users_in_context_from_sql query to include
the context id to simplify the calls made from other components.
2018-10-30 09:47:14 +08:00
..
assign MDL-63531 privacy: Update to comments provider to simplfy sql. 2018-10-30 09:47:14 +08:00
assignment MDL-63513 mod_assignment: Add removal of context users. 2018-10-22 12:48:25 +02:00
book MDL-63117 mod_book: Check if the module is visible to the user 2018-09-06 17:41:06 +10:00
chat MDL-63497 mod_chat: Add support for removal of context users 2018-10-22 12:48:31 +02:00
choice Merge branch 'MDL-63135-master' of git://github.com/rezaies/moodle 2018-09-19 13:12:40 +02:00
data MDL-63531 privacy: Update to comments provider to simplfy sql. 2018-10-30 09:47:14 +08:00
feedback MDL-63497 mod_feedback: Add support for removal of context users 2018-10-22 12:48:33 +02:00
folder MDL-63138 mod_folder: Check if the module is visible to the user 2018-09-07 14:58:35 +10:00
forum Merge branch 'MDL-61391-master' of git://github.com/damyon/moodle 2018-10-22 16:50:47 +02:00
glossary MDL-63531 privacy: Update to comments provider to simplfy sql. 2018-10-30 09:47:14 +08:00
imscp MDL-63141 mod_imscp: Check if the module is visible to the user 2018-09-11 15:35:21 +10:00
label MDL-63142 mod_label: Check if the module is visible to the user 2018-09-14 17:39:21 +10:00
lesson MDL-63497 mod_lesson: Add support for removal of context users 2018-10-22 12:48:33 +02:00
lti Merge branch 'MDL-63679-master' of git://github.com/mihailges/moodle 2018-10-25 15:12:50 +08:00
page MDL-41265 resource: Page resource option to show/hide last modified 2018-06-25 09:13:04 +08:00
quiz MDL-63765 behat: Fix behat tests opening a menu 2018-10-26 16:14:41 +08:00
resource MDL-62478 upgrade: add 3.5.0 separation line to all upgrade scripts 2018-05-28 13:15:48 +02:00
scorm MDL-63501 mod_scorm: Add support for removal of context users 2018-10-22 12:48:34 +02:00
survey MDL-63510 mod_survey: Add support for removal of context users 2018-10-22 12:48:34 +02:00
url MDL-62478 upgrade: add 3.5.0 separation line to all upgrade scripts 2018-05-28 13:15:48 +02:00
wiki MDL-63531 privacy: Update to comments provider to simplfy sql. 2018-10-30 09:47:14 +08:00
workshop MDL-63186 workshopform_numerrors: Move percents lang string to core 2018-09-28 11:07:21 +08:00
index.html
README.txt
upgrade.txt Merge branch 'MDL-53297-master' of git://github.com/cescobedo/moodle 2018-08-07 15:57:00 +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