You are here

function uc_file_user in Ubercart 6.2

Same name and namespace in other branches
  1. 5 uc_file/uc_file.module \uc_file_user()

Implements hook_user().

File

uc_file/uc_file.module, line 401

Code

function uc_file_user($op, &$edit, &$account, $category = NULL) {
  switch ($op) {
    case 'delete':
      return uc_file_user_delete($account);
    case 'view':
      return uc_file_user_view($account);
  }
}