moodle/mod
Meirza 52f512e5cf MDL-77348 mod_scorm: Added missing class properties
In PHP 8.2 and later, setting a value to an undeclared class property is
deprecated and emits a deprecation notice.
So we need to add missing class properties that still need to be declared.
2023-04-12 13:05:35 +07:00
..
assign Merge branch 'MDL-73642_master' of https://github.com/tasosb/moodle 2023-04-06 08:36:24 +02:00
bigbluebuttonbn Merge branch 'MDL-74664-master' of https://github.com/call-learning/moodle 2023-03-30 11:27:09 +08:00
book MDL-52805 core: Remove legacy log calls 2023-03-07 13:08:46 +08:00
chat MDL-77347 mod_chat: Added missing class properties. 2023-03-27 15:58:01 +07:00
choice MDL-68093 choice: Add behat tests for groups 2023-03-14 08:52:26 +00:00
data MDL-77348 mod_data: Added missing class properties 2023-04-12 13:05:28 +07:00
feedback MDL-77347 mod_feedback: Added missing class properties. 2023-03-27 15:58:17 +07:00
folder Merge branch 'MDL-52805-42' of https://github.com/Chocolate-lightning/moodle 2023-03-08 14:49:59 +08:00
forum MDL-77033 core_behat: Refactor behat steps to be reusable. 2023-03-30 20:20:10 +08:00
glossary MDL-77348 mod_glossary: Added missing class properties 2023-04-12 10:04:24 +07:00
h5pactivity MDL-77839 mod_h5pactivity: Improve behat to avoid random errors 2023-04-04 10:30:47 +02:00
imscp MDL-76583 core: Update uses of external_* classes 2023-01-19 07:34:09 +08:00
label MDL-77416 lang: Use fixed strings in tests 2023-03-03 14:15:30 +00:00
lesson Merge branch 'MDL-77550-master' of https://github.com/dpalou/moodle 2023-03-15 14:26:11 +08:00
lti Merge branch 'MDL-69976' of https://github.com/paulholden/moodle 2023-04-04 12:20:52 +08:00
page MDL-75085 webservice: Fix parameter passed to external_format_value 2023-02-01 11:12:02 +08:00
quiz Merge branch 'MDL-75301_master' of https://github.com/marxjohnson/moodle 2023-04-06 08:33:06 +02:00
resource MDL-77333 mod_resource: fixes generator uploading files + tests 2023-03-28 19:06:09 +02:00
scorm MDL-77348 mod_scorm: Added missing class properties 2023-04-12 13:05:35 +07:00
survey MDL-77347 mod_survey: Added missing class properties. 2023-03-27 15:58:12 +07:00
url MDL-77105 mod_url: Declare filtericon custom data 2023-03-27 13:58:23 +08:00
wiki MDL-68093 wiki: Restrict group options to participation groups 2023-03-14 08:52:26 +00:00
workshop Merge branch 'MDL-77761-master' of https://github.com/junpataleta/moodle 2023-03-30 17:53:13 +02:00
index.html
README.txt
upgrade.txt MDL-72350 mod: Updated upgrade.txt file 2023-03-30 08:09:13 +08: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