moodle/mod
2024-12-19 10:03:51 +07:00
..
assign Merge branch 'versionbump' of https://github.com/junpataleta/moodle 2024-12-19 10:03:51 +07:00
bigbluebuttonbn Merge branch 'versionbump' of https://github.com/junpataleta/moodle 2024-12-19 10:03:51 +07:00
book Merge branch 'versionbump' of https://github.com/junpataleta/moodle 2024-12-19 10:03:51 +07:00
choice NOBUG: Bump versions for main to the current date 2024-12-18 23:53:12 +08:00
data Merge branch 'versionbump' of https://github.com/junpataleta/moodle 2024-12-19 10:03:51 +07:00
feedback NOBUG: Bump versions for main to the current date 2024-12-18 23:53:12 +08:00
folder NOBUG: Bump versions for main to the current date 2024-12-18 23:53:12 +08:00
forum Merge branch 'versionbump' of https://github.com/junpataleta/moodle 2024-12-19 10:03:51 +07:00
glossary Merge branch 'versionbump' of https://github.com/junpataleta/moodle 2024-12-19 10:03:51 +07:00
h5pactivity Merge branch 'versionbump' of https://github.com/junpataleta/moodle 2024-12-19 10:03:51 +07:00
imscp NOBUG: Bump versions for main to the current date 2024-12-18 23:53:12 +08:00
label NOBUG: Bump versions for main to the current date 2024-12-18 23:53:12 +08:00
lesson NOBUG: Bump versions for main to the current date 2024-12-18 23:53:12 +08:00
lti Merge branch 'versionbump' of https://github.com/junpataleta/moodle 2024-12-19 10:03:51 +07:00
page NOBUG: Bump versions for main to the current date 2024-12-18 23:53:12 +08:00
qbank Merge branch 'versionbump' of https://github.com/junpataleta/moodle 2024-12-19 10:03:51 +07:00
quiz Merge branch 'versionbump' of https://github.com/junpataleta/moodle 2024-12-19 10:03:51 +07:00
resource NOBUG: Bump versions for main to the current date 2024-12-18 23:53:12 +08:00
scorm Merge branch 'versionbump' of https://github.com/junpataleta/moodle 2024-12-19 10:03:51 +07:00
subsection NOBUG: Bump versions for main to the current date 2024-12-18 23:53:12 +08:00
url NOBUG: Bump versions for main to the current date 2024-12-18 23:53:12 +08:00
wiki NOBUG: Bump versions for main to the current date 2024-12-18 23:53:12 +08:00
workshop Merge branch 'versionbump' of https://github.com/junpataleta/moodle 2024-12-19 10:03:51 +07:00
index.html
README.txt
upgrade.txt MDL-81125 core: Update upgrade.txt files to document new upgrade notes 2024-05-20 22:26:45 +08:00
UPGRADING.md NOBUG: Add upgrade notes 2024-12-13 08:57:53 +07: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