You are here

function userpoints_workflow_ng_userpoints in User Points 5.3

File

./userpoints_workflow_ng.module, line 65
Some workflow-ng integration for the user points module

Code

function userpoints_workflow_ng_userpoints($op, $points = 0, $uid = 0, $event = '') {
  switch ($op) {
    case 'points after':
      workflow_ng_invoke_event('userpoints_points_awarded', $uid, $points);
      break;
  }
}