moodle/mod
Dan Poltawski 03e93abad8 MDL-48277 css: enable duplicate definitions lint rule
And remove duplicates found in code which were detected by this rule
(leaving the last rule defined as this would take precidence).

https://github.com/CSSLint/csslint/wiki/Disallow-duplicate-properties
2014-11-18 22:11:36 +00:00
..
assign Merge branch 'MDL-47975-master' of git://github.com/damyon/moodle 2014-11-11 19:05:45 +00:00
assignment MDL-48144 upgrade: add v2.8.0 sep lines 2014-11-10 18:08:15 +01:00
book MDL-48144 upgrade: add v2.8.0 sep lines 2014-11-10 18:08:15 +01:00
chat MDL-48144 upgrade: add v2.8.0 sep lines 2014-11-10 18:08:15 +01:00
choice MDL-48144 upgrade: add v2.8.0 sep lines 2014-11-10 18:08:15 +01:00
data MDL-48144 upgrade: add v2.8.0 sep lines 2014-11-10 18:08:15 +01:00
feedback MDL-48144 upgrade: add v2.8.0 sep lines 2014-11-10 18:08:15 +01:00
folder MDL-48144 upgrade: add v2.8.0 sep lines 2014-11-10 18:08:15 +01:00
forum MDL-30968 mod_forum: No picture link to group when no groups mode 2014-11-12 11:53:14 +08:00
glossary MDL-48144 upgrade: add v2.8.0 sep lines 2014-11-10 18:08:15 +01:00
imscp MDL-48144 upgrade: add v2.8.0 sep lines 2014-11-10 18:08:15 +01:00
label MDL-48144 upgrade: add v2.8.0 sep lines 2014-11-10 18:08:15 +01:00
lesson MDL-48144 upgrade: add v2.8.0 sep lines 2014-11-10 18:08:15 +01:00
lti MDL-48144 upgrade: add v2.8.0 sep lines 2014-11-10 18:08:15 +01:00
page MDL-48144 upgrade: add v2.8.0 sep lines 2014-11-10 18:08:15 +01:00
quiz Merge branch 'MDL-48168' of git://github.com/timhunt/moodle 2014-11-11 18:48:39 +00:00
resource MDL-48144 upgrade: add v2.8.0 sep lines 2014-11-10 18:08:15 +01:00
scorm MDL-48277 css: enable duplicate definitions lint rule 2014-11-18 22:11:36 +00:00
survey MDL-48144 upgrade: add v2.8.0 sep lines 2014-11-10 18:08:15 +01:00
url MDL-48144 upgrade: add v2.8.0 sep lines 2014-11-10 18:08:15 +01:00
wiki MDL-48204 mod_wiki: admin.php - fix syntax error 2014-11-13 00:46:43 +01:00
workshop MDL-48144 upgrade: add v2.8.0 sep lines 2014-11-10 18:08:15 +01: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