moodle/mod
Eloy Lafuente (stronk7) 0a8666b01a MDL-72743 tests: tidy up the new test with NS/name/covers
Ideally any new test should be using a class name matching
the file name, and to use namespace when clearly belonging to
a component (sub-namespace also allowed for better accuracy).

And, also, adding a @covers label to indicate which class
(preferred, method is also possible) is being covered with the test.
2021-10-28 13:11:37 +02:00
..
assign MDL-72013 js: Fix jsdocs to meet stricter eslint 2021-10-21 08:52:57 +08:00
assignment Merge branch 'MDL-71619-311' of https://github.com/paulholden/moodle into MOODLE_311_STABLE 2021-05-18 22:59:24 +02:00
book MDL-72179 behat: Make use of page resolvers 2021-07-26 15:14:24 +08:00
chat MDL-72179 behat: Lowercase all page instance resolvers 2021-07-23 20:43:47 +08:00
choice MDL-72179 behat: Make use of page resolvers 2021-07-26 15:14:24 +08:00
data MDL-72179 behat: Make use of page resolvers 2021-07-26 15:14:24 +08:00
feedback MDL-71055 behat: Update core settings to use generator 2021-08-23 12:23:03 +08:00
folder MDL-72179 behat: Make use of page resolvers 2021-07-26 15:14:24 +08:00
forum MDL-72013 js: Fix jsdocs to meet stricter eslint 2021-10-21 08:52:57 +08:00
glossary MDL-72673 mod_glossary: Generate unique ID for Keywords select element 2021-09-24 18:31:28 +08:00
h5pactivity MDL-71055 behat: Update core settings to use generator 2021-08-23 12:23:03 +08:00
imscp MDL-72179 behat: Make use of page resolvers 2021-07-26 15:14:24 +08:00
label MDL-71638 upgrade: add 3.10.0 separation line to all upgrade scripts 2021-05-16 00:00:43 +02:00
lesson MDL-72499 event: add/correct event language strings as required. 2021-09-06 11:16:38 +01:00
lti MDL-72060 mod_lti: fix comparison if user is gradable 2021-09-28 17:25:27 +08:00
page MDL-72179 behat: Make use of page resolvers 2021-07-26 15:14:24 +08:00
quiz MDL-72743 tests: tidy up the new test with NS/name/covers 2021-10-28 13:11:37 +02:00
resource MDL-72452 resource: Filter resource media embed output 2021-09-03 09:12:38 +10:00
scorm MDL-72316 filelib: Add ability for modules to directly load SVG images 2021-10-28 12:58:41 +08:00
survey MDL-71113 js: Fix all jsdoc warnings 2021-06-18 09:38:05 +08:00
url MDL-39324 mod_url: Fix icon when URL has params 2021-10-04 20:04:00 +10:30
wiki MDL-72871 cleanup: Remove incorrect whitespace from codebase 2021-10-26 17:19:17 +02:00
workshop MDL-26633 workshop: Allow to randomly allocate more than 30 reviews 2021-10-08 17:10:36 +02:00
index.html
README.txt
upgrade.txt MDL-68645 output: Do not apply filters when creating calendar events 2020-05-13 10:03:01 +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