Multisite Admin Only config
-
To disable the plugin configuration for non-multisite-admins you only need to add one line to the configuration.php script. This allows multisite installations to restrict the configuration to only the network admin and not the sub-site blog admin (as in a school setting where the IT staff controls all authentication settings)
In Configuration.php (line 40 in v2.3.0 of the plugin)
function onelogin_saml_configuration() { // If not a super-admin (network admin) or admin in single site mode don't add menu for configuration. (Add line below) if ( !is_super_admin() ) { return; }
- The topic ‘Multisite Admin Only config’ is closed to new replies.