moodle/mod
Juan Leyva 30cdddb017 MDL-55129 mod_assign: Allow plugins to handle configs for external
Until now in the get_assignments WS all the settings for assignment
plugins (submission and feedback) are returned, this was bad because:

- It was returning settings for plugins that may not be enabled
- It was returning settings that would be a security risk (a third
party plugin including a password or credentials for connecting a
remote site)
- Some values was returned "raw" without further processing, for
example, maxsubmissionsizebytes returned 0 when using the plugin
default value instead a valid size
- Assignment plugins implemented an API for communication with the
external API, see for example: get_external_parameters, it didn’t make
sense had an API for the received parameters and not the returned data.
2016-10-04 20:28:38 +01:00
..
assign MDL-55129 mod_assign: Allow plugins to handle configs for external 2016-10-04 20:28:38 +01:00
assignment MDL-54677 upgrade: add 3.1.0 separation line to all upgrade scripts 2016-05-23 01:31:34 +02:00
book MDL-55071 css: reformat some css files we touch with stylefmt 2016-09-23 10:57:36 +01:00
chat MDL-55071 css: fix some lint issues 2016-09-23 10:57:53 +01:00
choice MDL-55224 theme_noname: RTL adjustments for auto-flipping era 2016-09-23 10:49:49 +01:00
data Merge branch 'MDL-55866-master' of git://github.com/andrewnicols/moodle 2016-09-28 02:29:45 +02:00
feedback MDL-55071 theme_boost: Fix relevant JS warnings 2016-09-23 10:57:36 +01:00
folder MDL-55278 search: Updating references to area namespace 2016-07-21 18:38:18 +02:00
forum Merge branch 'MDL-56019-master' of git://github.com/dpalou/moodle 2016-09-28 20:08:31 +02:00
glossary Merge branch 'MDL-55785-master' of git://github.com/jleyva/moodle 2016-09-28 19:59:20 +02:00
imscp MDL-55278 search: Updating references to area namespace 2016-07-21 18:38:18 +02:00
label MDL-55661 lang: Merge English strings from the en_fix language pack 2016-08-25 14:38:07 +02:00
lesson MDL-55071 theme/output: PHPCS fixes for new theme branch 2016-09-23 10:57:36 +01:00
lti MDL-49609 mod_lti: Fixes for problems found in testing 2016-09-29 11:13:50 +08:00
page MDL-55278 search: Updating references to area namespace 2016-07-21 18:38:18 +02:00
quiz Merge branch 'MDL-53870-master' of git://github.com/jleyva/moodle 2016-09-29 01:45:02 +02:00
resource MDL-53765 mod_resource/mod_wiki: Removed update_module_button() 2016-08-09 10:00:54 +08:00
scorm Merge branch 'MDL-56019-master' of git://github.com/dpalou/moodle 2016-09-28 20:08:31 +02:00
survey MDL-55278 search: Updating references to area namespace 2016-07-21 18:38:18 +02:00
url MDL-55278 search: Updating references to area namespace 2016-07-21 18:38:18 +02:00
wiki Merge branch 'MDL-56019-master' of git://github.com/dpalou/moodle 2016-09-28 20:08:31 +02:00
workshop MDL-55957 behat: Set some text before selecting in Atto 2016-09-28 07:35:26 +08:00
index.html
README.txt
upgrade.txt MDL-53765 core: Deprecate update_module_button functions 2016-08-09 11:17:43 +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