moodle/mod
Laurent David 38b9319580 MDL-74081 mod_bigbluebuttonbn: Fix codechecker related issues
* Opening braces should be on the same line
* Unwanted MOODLE_INTERNAL
* Behat edit_instance.feature should use "activity editing" page locator
* Coverage indication
2022-09-07 17:26:27 +02:00
..
assign Merge branch 'MDL-70480-master' of https://github.com/chanqihui/moodle 2022-08-30 09:12:03 +01:00
assignment Merge branch 'MDL-71062-master' of https://github.com/sharidas/moodle 2022-07-13 11:39:08 +08:00
bigbluebuttonbn MDL-74081 mod_bigbluebuttonbn: Fix codechecker related issues 2022-09-07 17:26:27 +02: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 Merge branch 'MDL-71062-master' of https://github.com/sharidas/moodle 2022-07-13 11:39:08 +08:00
data Merge branch 'MDL-75521-master' of https://github.com/aanabit/moodle 2022-08-31 15:48:33 +02:00
feedback Merge branch 'MDL-74608' of https://github.com/timhunt/moodle 2022-08-18 10:52:02 +08:00
folder MDL-74608 activities: a new option to force the activity language 2022-08-15 22:15:52 +01:00
forum Merge branch 'MDL-75029' of https://github.com/paulholden/moodle 2022-08-18 11:17:19 +08:00
glossary Merge branch 'MDL-71062-master' of https://github.com/sharidas/moodle 2022-07-13 11:39:08 +08:00
h5pactivity Merge branch 'MDL-74861-master' of https://github.com/andelacruz/moodle 2022-08-31 11:53:15 +04:00
imscp MDL-71747 upgrade: remove all the < 3.9.0 upgrade steps 2022-07-07 19:16:37 +02:00
label MDL-74608 activities: a new option to force the activity language 2022-08-15 22:15:52 +01:00
lesson MDL-74608 activities: a new option to force the activity language 2022-08-15 22:15:52 +01:00
lti MDL-74608 activities: a new option to force the activity language 2022-08-15 22:15:52 +01:00
page MDL-74608 activities: a new option to force the activity language 2022-08-15 22:15:52 +01:00
quiz MDL-72188 quizaccess_seb: Implement Safe Exam Browser JS API 2022-08-31 13:10:28 +10: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 Merge branch 'MDL-74608' of https://github.com/timhunt/moodle 2022-08-18 10:52:02 +08:00
index.html
README.txt
upgrade.txt MDL-68011 course: Final deprecation of the callback get_shortcuts() 2022-07-19 14:13:36 +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