moodle/mod
Jun Pataleta 8228b800d9 MDL-74638 mod_bigbluebuttonbn: Fix unit tests
* Guest URL and passwords are not supposed to be included in the backup
file so they should be excluded in assert_bbb_activities_same.
* Removed redundant entry 'course' in the filter list as well.
2022-11-11 19:09:55 +08:00
..
assign MDL-76213 mod_assign: Pass correct parameters to override query 2022-11-11 16:09:02 +08:00
assignment Merge branch 'MDL-71062-master' of https://github.com/sharidas/moodle 2022-07-13 11:39:08 +08:00
bigbluebuttonbn MDL-74638 mod_bigbluebuttonbn: Fix unit tests 2022-11-11 19:09:55 +08:00
book Merge branch 'MDL-74608' of https://github.com/timhunt/moodle 2022-08-18 10:52:02 +08:00
chat Merge branch 'MDL-74608' of https://github.com/timhunt/moodle 2022-08-18 10:52:02 +08:00
choice MDL-76071 mod_choice: fix choice display on graphs 2022-10-25 10:41:49 +02:00
data MDL-76252 mod_data: Remove space at the end of datemodified 2022-11-09 12:56:59 +01:00
feedback MDL-72606 mod_feedback: Change "Answer the questions" button to primary. 2022-10-19 14:51:05 +02:00
folder MDL-74608 activities: a new option to force the activity language 2022-08-15 22:15:52 +01:00
forum MDL-70071 forum: Convert post threshold warnings to info 2022-11-03 13:10:22 +08:00
glossary MDL-76185 mod_glossary: Remove separator in continuous display format 2022-11-03 23:53:36 +08:00
h5pactivity MDL-73853 core_h5p: Improve behat tests, to avoid random errors 2022-11-09 14:04:41 +01:00
imscp MDL-71747 upgrade: remove all the < 3.9.0 upgrade steps 2022-07-07 19:16:37 +02:00
label MDL-76224 Resource: Set correct page url in /mod/label/view.php 2022-11-07 18:45:27 +01:00
lesson MDL-75872 mod_lesson: allow unlimited attempts default value. 2022-11-09 18:53:54 +00:00
lti MDL-69275 mod_lti: submission review (gradebook launch) 2022-10-26 15:03:41 -04:00
page MDL-74608 activities: a new option to force the activity language 2022-08-15 22:15:52 +01:00
quiz MDL-74996 Quiz: Convert submission confirmation to saveCancelPromise 2022-11-07 09:40:06 +07:00
resource MDL-74608 activities: a new option to force the activity language 2022-08-15 22:15:52 +01:00
scorm MDL-74608 activities: a new option to force the activity language 2022-08-15 22:15:52 +01:00
survey MDL-74608 activities: a new option to force the activity language 2022-08-15 22:15:52 +01:00
url MDL-74608 activities: a new option to force the activity language 2022-08-15 22:15:52 +01:00
wiki MDL-74608 activities: a new option to force the activity language 2022-08-15 22:15:52 +01:00
workshop MDL-68550 mod_workshop: Update behat test to avoid incorrect selector 2022-11-11 07:25:50 +01:00
index.html
README.txt
upgrade.txt MDL-74762 qbank_statistics: improve performance loading the data 2022-09-16 21:34:00 +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