moodle/mod
Frederic Massart 20942dd702 MDL-47397 assignfeedback_editpdf: Copy stamps to other students in team
During a team submission the stamps were attached to the user that
was graded and not to the other users. This could lead to errors when
generating the PDF for each user.
2014-10-24 15:09:06 +01:00
..
assign MDL-47397 assignfeedback_editpdf: Copy stamps to other students in team 2014-10-24 15:09:06 +01:00
assignment MDL-46045 Fix php tags (lowercase) everywhere 2014-06-19 11:05:16 +08:00
book MDL-44725 Availability: Replace groupmembersonly - FEATURE_xx (6) 2014-09-02 13:03:17 +01:00
chat MDL-44725 Availability: Replace groupmembersonly - FEATURE_xx (6) 2014-09-02 13:03:17 +01:00
choice MDL-3034 mod_choice: minor tidy up 2014-09-25 14:03:52 +12:00
data MDL-44725 Availability: Replace groupmembersonly - FEATURE_xx (6) 2014-09-02 13:03:17 +01:00
feedback MDL-28484 core_lib: Add function for https detection 2014-10-03 13:02:29 +01:00
folder MDL-44725 Availability: Replace groupmembersonly - FEATURE_xx (6) 2014-09-02 13:03:17 +01:00
forum MDL-47802 mod_forum: Check for required subscription capabilities 2014-10-24 14:44:21 +01:00
glossary MDL-47657 mod_glossary: Fixed wrong error message on edit timeout. 2014-10-15 14:48:18 +08:00
imscp MDL-44725 Availability: Replace groupmembersonly - FEATURE_xx (6) 2014-09-02 13:03:17 +01:00
label MDL-44725 Availability: Replace groupmembersonly - FEATURE_xx (6) 2014-09-02 13:03:17 +01:00
lesson MDL-43245 mod_lesson: Add string for essay grading permission. 2014-10-24 11:48:04 +02:00
lti MDL-47812 mod_lti: execute upgrade script for all DBs 2014-10-24 14:00:30 +08:00
page MDL-44725 Availability: Replace groupmembersonly - FEATURE_xx (6) 2014-09-02 13:03:17 +01:00
quiz Merge branch 'MDL-47695' of git://github.com/timhunt/moodle 2014-10-21 14:42:36 +13:00
resource MDL-44725 Availability: Replace groupmembersonly - FEATURE_xx (6) 2014-09-02 13:03:17 +01:00
scorm MDL-47795 SCORM: SCORM report not a report. 2014-10-21 15:37:31 +01:00
survey MDL-44725 Availability: Replace groupmembersonly - FEATURE_xx (6) 2014-09-02 13:03:17 +01:00
url MDL-44725 Availability: Replace groupmembersonly - FEATURE_xx (6) 2014-09-02 13:03:17 +01:00
wiki MDL-47613 wiki: allow searching several words 2014-10-10 16:35:13 +08:00
workshop MDL-31936 workshop: version bump 2014-10-07 10:15:54 +08:00
index.html
README.txt
upgrade.txt MDL-44725 Availability: Replace groupmembersonly - upgrade, core (1) 2014-09-02 13:03:07 +01: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