moodle/mod
Petr Skoda 2dc54611f2 MDL-29921 remove unmaintained qti_two export question type
It can be easily included in official distribution again if somebody fixes it because there are no stored data, capabilities or versions. This will finally allow us to drop the outdate Smarty library form distribution package.
2011-10-28 10:32:24 +02:00
..
assignment MDL-29368 Assignment: Fixed a fatal error caused by a missing include 2011-10-25 19:19:02 +02:00
chat MDL-29189 course Minor fixups after code review 2011-09-13 11:17:18 +12:00
choice MDL-29690 fix usage of select all/deselect all in choice reports 2011-10-07 21:41:35 +13:00
data MDL-27640 rating: altered the return url provided by mod_data to ratings 2011-10-03 15:17:27 +08:00
feedback MDL-29806 - When a Feedback activity is restore the "Site after submit" URL is not updated and shows "$@PAGEVIEWBYID*15463@$" 2011-10-21 23:08:59 +02:00
folder MDL-27001 'Show description' feature part 3: Implementation for all modules 2011-09-06 11:03:06 +01:00
forum MDL-28615 forum: Fixed up a couple of minor regressions 2011-10-05 11:08:50 +13:00
glossary MDL-29189 mutlilang Reviewed the uses of course shortname and ensured things are being formatted consistently 2011-09-08 09:30:27 +12:00
imscp Merge branch 'MDL-27001-master' of git://github.com/sammarshallou/moodle 2011-09-06 15:50:26 +02:00
label Merge branch 'MDL-28169' of git://github.com/nebgor/moodle 2011-07-07 10:21:32 +02:00
lesson Merge branch 'MDL-29569' of git://github.com/rwijaya/moodle 2011-10-26 10:44:41 +13:00
page MDL-27001 'Show description' feature part 3: Implementation for all modules 2011-09-06 11:03:06 +01:00
quiz MDL-29921 remove unmaintained qti_two export question type 2011-10-28 10:32:24 +02:00
resource MDL-29231 - Course, Resource - Fix so that the correct icon is displayed for courses that have had two or more files uploaded to them - Thanks Michael D for the patch 2011-10-13 11:50:23 +08:00
scorm MDL-29464 Scorm Fixing regressions on userreport.php 2011-10-20 08:14:41 +05:30
survey Merge branch MDL-29189-master of git://github.com/samhemelryk/moodle 2011-09-13 11:39:06 +08:00
url MDL-29619 Validate urls before generating output 2011-10-21 14:00:38 +05:30
wiki MDL-29191 wiki - avoid one more username leak 2011-10-16 19:03:19 +02:00
workshop Merge branch 'w38_MDL-29401_m22_frankenstyle' of git://github.com/skodak/moodle 2011-09-27 00:00:20 +02:00
index.html
README.txt
upgrade.txt MDL-28701 temp and cache upgrade notes 2011-09-10 11:36:41 +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