moodle/mod
2024-09-24 16:54:09 +02:00
..
assign NOBUG: Add upgrade notes 2024-09-24 16:54:09 +02:00
bigbluebuttonbn MDL-82389 mod_bigbluebuttonbn: Fix disablenotes 2024-09-11 09:30:22 -06:00
book Merge branch 'MDL-81634-main' of https://github.com/andrewnicols/moodle 2024-08-20 09:30:44 +07:00
chat Merge branch 'MDL-81634-main' of https://github.com/andrewnicols/moodle 2024-08-20 09:30:44 +07:00
choice Merge branch 'MDL-81634-main' of https://github.com/andrewnicols/moodle 2024-08-20 09:30:44 +07:00
data MDL-63399 behat: update existing tests to use the better download steps 2024-09-06 12:14:07 +08:00
feedback Merge branch 'MDL-82301' of https://github.com/paulholden/moodle 2024-08-28 16:45:40 +02:00
folder MDL-63399 behat: update existing tests to use the better download steps 2024-09-06 12:14:07 +08:00
forum Merge branch 'MDL-82359-main' of https://github.com/sammarshallou/moodle 2024-08-28 22:46:56 +08:00
glossary MDL-63399 behat: update existing tests to use the better download steps 2024-09-06 12:14:07 +08:00
h5pactivity Merge branch 'MDL-81634-main' of https://github.com/andrewnicols/moodle 2024-08-20 09:30:44 +07:00
imscp MDL-81634 core: Fix all implicitly defined nullables 2024-08-02 14:11:12 +08:00
label MDL-81634 core: Fix all implicitly defined nullables 2024-08-02 14:11:12 +08:00
lesson MDL-82365 mod_lesson: stricter equality checks of activity password. 2024-08-29 12:12:58 +08:00
lti Merge branch 'MDL-81634-main' of https://github.com/andrewnicols/moodle 2024-08-20 09:30:44 +07:00
page MDL-81634 core: Fix all implicitly defined nullables 2024-08-02 14:11:12 +08:00
quiz Merge branch 'MDL-77625' of https://github.com/timhunt/moodle 2024-09-24 02:52:46 +10:00
resource MDL-81634 core: Fix all implicitly defined nullables 2024-08-02 14:11:12 +08:00
scorm Merge branch 'MDL-82158-main' of https://github.com/andrewnicols/moodle 2024-08-27 10:01:38 +07:00
subsection MDL-82845 course: fix subsection navigation nodes 2024-09-19 11:26:28 +02:00
survey Merge branch 'MDL-81634-main' of https://github.com/andrewnicols/moodle 2024-08-20 09:30:44 +07:00
url MDL-81634 core: Fix all implicitly defined nullables 2024-08-02 14:11:12 +08:00
wiki Merge branch 'MDL-81634-main' of https://github.com/andrewnicols/moodle 2024-08-20 09:30:44 +07:00
workshop Merge branch 'MDL-82841-main' of https://github.com/andelacruz/moodle 2024-08-22 08:43:14 +07: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-09-10 20:02:53 +07: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