Skip to content
  1. Extras
  2. msBonus2
  3. Plugin events
  4. Examples

Examples

Cancel bonus application

php
$sp = &$scriptProperties;
switch ($modx->event->name) {
  case 'msb2OnBeforeSetBonus':
    $modx->event->output('Sorry, not this time!');
    break;
}