Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Sign In with Facebook Sign In with Google Sign In with OpenID Sign In with Twitter

allow admins to view site while in maintenance mode - useful tweak

fh111fh111 Vanilla Padawan ✭✭
This discussion is related to the Maintenance Mode addon.

i don't know if this is the proper way to do it, but it works for me

personally i like to be able to view the site and dashboard while in mainenance mode. to make this possible i added the line

if (CheckPermission('Garden.Settings.Manage') == 0) {

right before

$Sender->Head->AddString($CustomCss);

so only if the user does not have a role assigned that lets them access the dashboard, they will see the maintenance mode screen

  if (CheckPermission('Garden.Settings.Manage') == 0) {
            $Sender->Head->AddString($CustomCss);
            }
        }
Sign In or Register to comment.