moodle/mod
2019-04-30 07:57:21 +02:00
..
assign Merge branch 'MDL-64524-35' of git://github.com/damyon/moodle into MOODLE_35_STABLE 2019-04-01 13:46:34 +08: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-65291 phpunit: Make a test immune to DST changes 2019-04-15 01:23:03 +02:00
choice MDL-64943 behat: fix some remaining uses of old strings 2019-03-05 17:02:28 +01:00
data MDL-64971 access: Ensure that the capability exists when fetching 2019-03-06 10:16:54 +08:00
feedback MDL-63959 mod_feedback: Add phpunit tests for get_pages in completion 2019-04-30 07:57:21 +02:00
folder MDL-47247 mod_folder: Apply site config when showexpanded is not set 2019-01-29 08:59:05 +08:00
forum MDL-65173 message_email: removed bogus logic 2019-03-25 17:19:27 +08:00
glossary MDL-65089 glossary: Enforcing case comparison in SQL. 2019-03-28 18:33:02 -05: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 MDL-62974 mod_lesson: Minor update to html class. 2019-04-12 11:10:41 +08:00
lti Merge branch 'MDL-63144-35' of git://github.com/rezaies/moodle into MOODLE_35_STABLE 2019-03-19 11:27:32 +08: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-62992 quiz: fix tags filtering on random question modal 2019-03-27 10:26:33 +08:00
resource MDL-64346 mod_resource: Fix problems with # in file name. 2019-01-15 14:30:35 +01:00
scorm MDL-64943 lang: Import fixed English strings (en_fix) 2019-02-28 18:02:44 +01:00
survey MDL-63149 mod_survey: Add userid param to mod_survey calendar callbacks 2019-03-07 17:54:54 +11: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 Merge branch 'MDL-63151-35' of git://github.com/rezaies/moodle into MOODLE_35_STABLE 2019-03-26 13:16:06 +01:00
workshop Merge branch 'MDL-63152-35' of git://github.com/rezaies/moodle into MOODLE_35_STABLE 2019-03-26 13:28:31 +01:00
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