moodle/mod
Marina Glancy c6956595f7 MDL-61163 mod_wiki: add default view capability to frontpage
It is inconsistent that guests are allowed to view frontpage wiki but once user is logged in they
loose this capability
2018-03-29 11:11:48 +08:00
..
assign Merge branch 'wip-MDL-61344' of https://github.com/ndunand/moodle 2018-02-13 09:03:50 +08:00
assignment MDL-59159 upgrade: clean < 3.1.0 upgrade steps 2017-12-04 01:18:57 +01:00
book MDL-59159 upgrade: clean < 3.1.0 upgrade steps 2017-12-04 01:18:57 +01:00
chat MDL-61375 mod_chat: specify the 'eventtype' to avoid duplicate rows 2018-02-09 14:46:11 +08:00
choice MDL-61475 mod_choice: perf improvement when exporting personal data 2018-03-14 09:36:03 +08:00
data MDL-58885 core_search: Group support in relevant module search areas 2018-02-16 16:57:01 +00:00
feedback MDL-48501 mod_feedback: update feedback to use reCAPTCHA v2 2018-03-08 14:48:35 -05:00
folder MDL-61567 mod_folder: Implement null provider mod_folder 2018-03-13 11:01:59 +08:00
forum MDL-58885 core_search: Group support in relevant module search areas 2018-02-16 16:57:01 +00:00
glossary MDL-61530 mod_glossary: import_entries.feature needs @_file_upload tag 2018-03-22 11:44:36 +08:00
imscp MDL-59159 upgrade: clean < 3.1.0 upgrade steps 2017-12-04 01:18:57 +01:00
label MDL-61567 mod_label: Implement null provider mod_label 2018-03-13 11:02:00 +08:00
lesson Merge branch 'MDL-58179-master-fix' of https://github.com/andrewnicols/moodle 2018-03-22 12:05:29 +08:00
lti MDL-61533 lang: Merge English strings from the en_fix language pack 2018-03-01 17:17:16 +01:00
page MDL-61567 mod_page: Implement null provider mod_page 2018-03-13 11:02:00 +08:00
quiz Merge branch 'MDL-61514-master' of git://github.com/rezaies/moodle 2018-03-22 10:52:53 +08:00
resource MDL-61567 mod_resource: Implement null provider mod_resource 2018-03-13 11:02:00 +08:00
scorm MDL-58080 mod_scorm: add immutable header for scorm content files. 2018-03-15 12:50:38 +13:00
survey MDL-59159 upgrade: clean < 3.1.0 upgrade steps 2017-12-04 01:18:57 +01:00
url MDL-61567 mod_url: Implement null provider mod_url 2018-03-13 11:02:00 +08:00
wiki MDL-61163 mod_wiki: add default view capability to frontpage 2018-03-29 11:11:48 +08:00
workshop MDL-60991 Workshop: Display late submission text after deadline 2018-03-01 13:51:46 +00:00
index.html
README.txt
upgrade.txt MDL-59612 core: removed hard-coded check for referer in modules 2017-07-31 12:03:28 +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