Cannot find moodle values in database

219 views Asked by At

This might sound stupid, but i'm clueless right now. I'm trying copied the ''page'' module from moodle and restyled it slightly, now I'm trying to access values stored in the database. However I'm unsure how to bring those to display on my page, because I can't even find them in the database itself.

Any help or direction is greatly appreciated, thanks.

EDIT: I noticed I didn't specify that I'm trying to access the module ''settings'' page values.

1

There are 1 answers

3
Russell England On BEST ANSWER

The settings will be in mdl_config_plugins

SELECT *
FROM mdl_config_plugins
WHERE plugin LIKE '%pagenew%';