moodle/mod
Adrian Greeve 40a154551f MDL-48371 editors: Option for removing managefiles
We want to remove the managefiles button from the
editors in the wiki so that students don't delete
each others files.
2015-09-07 09:59:35 +01:00
..
assign Merge branch 'MDL-46078-master' of git://github.com/damyon/moodle 2015-08-19 18:30:36 +02:00
assignment MDL-50183 upgrade: add 2.9.0 separation line to all upgrade scripts 2015-05-12 00:21:05 +02:00
book MDL-51148 lang: Merge English strings from the en_fix language pack 2015-08-26 16:46:43 +02:00
chat MDL-51148 lang: Merge English strings from the en_fix language pack 2015-08-26 16:46:43 +02:00
choice MDL-51148 lang: Merge English strings from the en_fix language pack 2015-08-26 16:46:43 +02:00
data Merge branch 'MDL-51179-master' of git://github.com/damyon/moodle 2015-09-01 15:57:21 +08:00
feedback MDL-49098 feedback: Fix completion message language strings 2015-06-03 16:47:52 +08:00
folder MDL-50008 folder: New Web Service mod_folder_view_folder 2015-07-30 23:02:47 +02:00
forum Merge branch 'MDL-45841' of git://github.com/timhunt/moodle 2015-09-01 10:14:45 +01:00
glossary MDL-50678 mod_glossary: removed extra login check 2015-07-15 14:08:48 +08:00
imscp MDL-50183 upgrade: add 2.9.0 separation line to all upgrade scripts 2015-05-12 00:21:05 +02:00
label MDL-50183 upgrade: add 2.9.0 separation line to all upgrade scripts 2015-05-12 00:21:05 +02:00
lesson Merge branch 'MDL-51148-master-enfix' of git://github.com/mudrd8mz/moodle 2015-08-27 12:46:11 +02:00
lti MDL-50391 mod_lti: Fixing indentation 2015-08-20 09:49:22 +08:00
page MDL-49791 page: New Web Service mod_page_view_page 2015-07-30 22:59:30 +02:00
quiz MDL-51090 behat: switch to main window 2015-09-03 10:26:33 +01:00
resource MDL-49792 resource: New WS mod_resource_view_resource 2015-07-30 23:01:21 +02:00
scorm MDL-51148 lang: Merge English strings from the en_fix language pack 2015-08-26 16:46:43 +02:00
survey MDL-49360 core_lib: add new method get_local_referer() 2015-07-27 11:11:24 +08:00
url MDL-49360 core_lib: add new method get_local_referer() 2015-07-27 11:11:24 +08:00
wiki MDL-48371 editors: Option for removing managefiles 2015-09-07 09:59:35 +01:00
workshop MDL-50062 grades: Carry agg. settings between categories when possible 2015-08-06 10:24:25 +08:00
index.html
README.txt
upgrade.txt MDL-43896 admin: Drop support for the $module syntax in version.php 2015-08-31 09:57:50 +02: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