Info
Content

List of Plugins


There's a simple way to get a list of all the plugins on your site. You can use the mdl_config_plugins table and look at the version attribute.

For example:

select * 
from mdl_config_plugins 
where name = 'version' 
order by plugin;
No Comments
Back to top