Skip to content

Instantly share code, notes, and snippets.

@Semdevmaster
Created September 15, 2017 13:45
Show Gist options
  • Select an option

  • Save Semdevmaster/cd775fcd160f2daec0c9de0dcd262d5b to your computer and use it in GitHub Desktop.

Select an option

Save Semdevmaster/cd775fcd160f2daec0c9de0dcd262d5b to your computer and use it in GitHub Desktop.
<?php
/** @var modx $modx */
switch ($modx->event->name) {
case 'pdoToolsOnFenomInit':
$fenom->addBlockFunction('master', function (array $params, $content) use ($modx) {
if ($modx->user->isMember('Administrator')) {
return $content;
}
});
break;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment