moodle/mod
Safat Shahin 0805e387b7 MDL-72076 bulk actions ui: Implement bulk actions in qbank API
This implementation will introduce bulk actions qbank
plugins which can grab the selected question and perform
actions according to the selected option from dropdown
in the base view.

Co-Authored-By: Safat Shahin <safatshahin@catalyst-au.net>
Co-Authored-By: Matt Porritt <mattp@catalyst-au.net>
2021-11-22 11:35:21 +11:00
..
assign MDL-68913 mod_assign: fix behat failure & version number 2021-11-11 12:15:50 +01:00
assignment Merge branch 'MDL-71619' of https://github.com/paulholden/moodle 2021-05-18 22:59:13 +02:00
book MDL-71912 mod_book: Restore hastily removed editing setting. 2021-11-10 16:26:57 +08:00
chat MDL-71912 course modules: Toggle heading depending on navigation. 2021-11-09 11:24:08 +08:00
choice MDL-71912 mod_choice: Small alteration to show responses. 2021-11-09 11:24:08 +08:00
data MDL-71913 mod_data: Update behat tests 2021-10-14 21:57:52 +07:00
feedback MDL-71914 feedback: Unit tests for the dynamic forms 2021-10-27 09:33:20 +08:00
folder MDL-71913 mod_folder: Add tertiary navigation 2021-10-13 11:05:30 +08:00
forum MDL-72925 mod_forum: Filter discussion when grading 2021-11-16 15:23:51 +11:00
glossary MDL-71914 mod_glossary: Updated glossary behat tests 2021-10-26 11:21:32 +08:00
h5pactivity MDL-71913 mod_h5pactivity: Update behat tests 2021-10-13 11:05:30 +08:00
imscp MDL-72179 behat: Make use of page resolvers 2021-07-26 15:14:28 +08:00
label MDL-72093 navigation: Update behat tests 2021-09-14 12:02:35 +08:00
lesson MDL-71912 mod_lesson: New step definitions for behat. 2021-11-10 16:26:56 +08:00
lti MDL-69092 mod_lti: Fix typo. 2021-11-19 09:50:36 +02:00
page MDL-70823 mod: safely parse module display options array. 2021-11-03 16:57:06 +01:00
quiz MDL-72076 bulk actions ui: Implement bulk actions in qbank API 2021-11-22 11:35:21 +11:00
resource MDL-70823 mod: safely parse module display options array. 2021-11-03 16:57:06 +01:00
scorm MDL-72316 filelib: Add ability for modules to directly load SVG images 2021-10-28 12:56:52 +08:00
survey MDL-72093 navigation: Update behat tests 2021-09-14 12:02:35 +08:00
url MDL-70823 mod: safely parse module display options array. 2021-11-03 16:57:06 +01:00
wiki MDL-72871 cleanup: Remove incorrect whitespace from codebase 2021-10-26 17:19:11 +02:00
workshop MDL-26633 workshop: Allow to randomly allocate more than 30 reviews 2021-10-08 17:46:43 +02:00
index.html
README.txt
upgrade.txt MDL-52206 completion: New criteria to handle behaviour between modules 2021-10-04 19:45:45 +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