moodle/mod
Mikel Martín f9abc562f5 MDL-81825 theme_boost: Refactor .sr-only usages for BS5
- Add .visually-hidden to the Boostratp 5 bridge SCSS file
- Replace .sr-only occurrences with .visually-hidden
- Replace .dropzone-sr-only-focusable  with .dropzone-visually-hidden-focusable
  for consistency
2024-12-10 14:02:32 +01:00
..
assign MDL-81825 theme_boost: Refactor .sr-only usages for BS5 2024-12-10 14:02:32 +01:00
bigbluebuttonbn MDL-81825 theme_boost: Refactor .sr-only usages for BS5 2024-12-10 14:02:32 +01:00
book Merge branch 'MDL-81821-main' of https://github.com/roland04/moodle 2024-11-28 13:23:54 +08:00
chat Merge branch 'MDL-83470-main' of https://github.com/junpataleta/moodle 2024-11-28 13:23:53 +08:00
choice MDL-83470 core: Remove upgrade steps from 4.1 2024-11-27 10:27:09 +08:00
data MDL-81825 theme_boost: Refactor .sr-only usages for BS5 2024-12-10 14:02:32 +01:00
feedback NOBUG: Add upgrade notes 2024-11-29 12:36:42 +01:00
folder Merge branch 'MDL-83470-main' of https://github.com/junpataleta/moodle 2024-11-28 13:23:53 +08:00
forum MDL-81825 theme_boost: Refactor .sr-only usages for BS5 2024-12-10 14:02:32 +01:00
glossary MDL-81825 theme_boost: Refactor .sr-only usages for BS5 2024-12-10 14:02:32 +01:00
h5pactivity Merge branch 'MDL-83470-main' of https://github.com/junpataleta/moodle 2024-11-28 13:23:53 +08:00
imscp Merge branch 'MDL-83470-main' of https://github.com/junpataleta/moodle 2024-11-28 13:23:53 +08:00
label MDL-83470 core: Remove upgrade steps from 4.1 2024-11-27 10:27:09 +08:00
lesson MDL-81825 theme_boost: Refactor .sr-only usages for BS5 2024-12-10 14:02:32 +01:00
lti MDL-81825 theme_boost: Refactor .sr-only usages for BS5 2024-12-10 14:02:32 +01:00
page Merge branch 'MDL-83470-main' of https://github.com/junpataleta/moodle 2024-11-28 13:23:53 +08:00
qbank NOBUG: Fixed SVG browser compatibility 2024-11-29 12:36:28 +01:00
quiz MDL-81825 theme_boost: Refactor .sr-only usages for BS5 2024-12-10 14:02:32 +01:00
resource MDL-83470 core: Remove upgrade steps from 4.1 2024-11-27 10:27:09 +08:00
scorm MDL-83844 mod_scorm: avoid SQL reserved words retrieving SCO timing. 2024-12-02 10:45:57 +00:00
subsection MDL-83374 upgrade: add the 4.5.0 separation line to all upgrade scripts 2024-10-05 21:16:13 +08:00
survey Merge branch 'MDL-83470-main' of https://github.com/junpataleta/moodle 2024-11-28 13:23:53 +08:00
url Merge branch 'MDL-83470-main' of https://github.com/junpataleta/moodle 2024-11-28 13:23:53 +08:00
wiki Merge branch 'MDL-83470-main' of https://github.com/junpataleta/moodle 2024-11-28 13:23:53 +08:00
workshop Merge branch 'MDL-83470-main' of https://github.com/junpataleta/moodle 2024-11-28 13:23:53 +08:00
index.html
README.txt
upgrade.txt MDL-81125 core: Update upgrade.txt files to document new upgrade notes 2024-05-20 22:26:45 +08:00
UPGRADING.md NOBUG: Add upgrade notes 2024-10-05 15:08:28 +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