function poll_user_cancel

Implements hook_user_cancel().

Archivo

drupal-7.x/modules/poll/poll.module, line 986
Enables your site to capture votes on different topics in the form of multiple choice questions.

Código

function poll_user_cancel($edit, $account, $method) {
  switch ($method) {
    case 'user_cancel_reassign':
      db_update('poll_vote')->fields(array('uid' => 0))->condition('uid', $account->uid)->execute();
      break;
  }
}