moodle/mod
Juan Leyva 651f5c494b MDL-64444 mod_assign: Use correct permissions for viewing grades
Some WebServices does not use the correct permissions.
Now we are using assign own API (require_view_grades()) instead.

Note this patch is different from the 36_STABLE and master ones
because there isn't context freezing here. Just we decided to
apply the changes for consistent perm evaluation in all branches.
2019-02-28 01:25:13 +01:00
..
assign MDL-64444 mod_assign: Use correct permissions for viewing grades 2019-02-28 01:25:13 +01:00
assignment MDL-63816 privacy: Corrected provider get_users_in_context descriptions 2018-10-31 12:14:43 +08:00
book MDL-46783 permissions: let some moodle/ caps be overriden in all mods 2018-12-04 18:01:29 +00:00
chat MDL-63134 mod_chat: Check if the module is visible to the user 2019-02-11 16:10:41 +11:00
choice MDL-46783 permissions: let some moodle/ caps be overriden in all mods 2018-12-04 18:01:29 +00:00
data MDL-62893 mod: Grade visibility bug in the Outline/Complete reports 2019-02-05 20:12:14 +10:30
feedback Merge branch 'MDL-64640-35' of git://github.com/andrewnicols/moodle into MOODLE_35_STABLE 2019-02-25 10:29:35 +01:00
folder MDL-47247 mod_folder: Apply site config when showexpanded is not set 2019-01-29 08:59:05 +08:00
forum Merge branch 'MDL-63892-35-rework' of git://github.com/mickhawkins/moodle into MOODLE_35_STABLE 2019-02-13 21:00:46 +08:00
glossary MDL-64729 mod_glossary: glossary_get_entries_search case sensitivity 2019-02-21 12:35:45 +01:00
imscp MDL-46783 permissions: let some moodle/ caps be overriden in all mods 2018-12-04 18:01:29 +00:00
label MDL-46783 permissions: let some moodle/ caps be overriden in all mods 2018-12-04 18:01:29 +00:00
lesson Merge branch 'MDL-63417-35' of git://github.com/mihailges/moodle into MOODLE_35_STABLE 2019-02-26 23:19:25 +01:00
lti MDL-64730 LTI Adv: do not ignore 0 score 2019-01-30 16:15:23 -05:00
page Merge branch 'MDL-63145-35' of git://github.com/peterRd/moodle into MOODLE_35_STABLE 2018-12-12 08:30:20 +08:00
quiz MDL-43428 accessrule_timelimit: timeclose can be ealier than timelimit 2019-02-26 14:45:37 +11:00
resource MDL-64346 mod_resource: Fix problems with # in file name. 2019-01-15 14:30:35 +01:00
scorm Merge branch 'MDL-63148-35' of git://github.com/peterRd/moodle into MOODLE_35_STABLE 2019-02-06 13:28:40 +01:00
survey MDL-46783 permissions: let some moodle/ caps be overriden in all mods 2018-12-04 18:01:29 +00:00
url Merge branch 'MDL-63150-35' of git://github.com/peterRd/moodle into MOODLE_35_STABLE 2018-12-12 08:32:55 +08:00
wiki MDL-63628 accessibility: Trigger file links with keyboard 2019-01-22 08:41:01 +08:00
workshop MDL-62893 mod: Grade visibility bug in the Outline/Complete reports 2019-02-05 20:12:14 +10:30
index.html
README.txt
upgrade.txt MDL-58768 core: Fix a typo for callback name 2018-07-31 16:15:38 +10: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