Skip to content

Instantly share code, notes, and snippets.

@matdave
Last active June 19, 2025 14:41
Show Gist options
  • Save matdave/fc6150915e916fb35ce66984c4a03c72 to your computer and use it in GitHub Desktop.
Save matdave/fc6150915e916fb35ce66984c4a03c72 to your computer and use it in GitHub Desktop.
No Manager - MODX Output Modifier
<?php
/**
* No Manager Output Modifier
* Use to disable items from being shown if a user is logged into the manager
* Useful for disabling analytics chunks
**/
if (!empty($modx->user)) {
if ($modx->user->hasSessionContext('mgr')) {
return ' ';
}
}
return $input;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment