IT Placement Papers CMS Moodle
This category contains Moodle Interview Questions and Answers
|
How do I get/set configuration settings?
|
|
|
|
|
To get config values you would typically access the global $CFG
object directly, which is automatically created by the core Moodle
scripts. To set these "main" config values use set_config($name,
$value). The values are stored in the Moodle "config" database table,
but these functions take care of cacheing on your behalf, so you should
always use these rather than fetching the records directly.
There is also a second table of config settings specifically
for plugins ("config_plugin"). These are not automatically loaded into
the $CFG object, so to fetch these you would use get_config($plugin,
$name). To set them use set_config($name, $value, $plugin).
Only registered users can write comments. Please login or register.
|