You are here

function spaces_user in Spaces 5.2

Same name and namespace in other branches
  1. 5 spaces.module \spaces_user()
  2. 6 spaces.module \spaces_user()
  3. 6.2 spaces.module \spaces_user()

Implementation of hook_user().

2 string references to 'spaces_user'
spaces_casetracker_context_define in spaces_casetracker/spaces_casetracker.module
hook_context_define()
spaces_casetracker_views_default_views in spaces_casetracker/spaces_casetracker.module
Implementation of hook_default_views

File

./spaces.module, line 122

Code

function spaces_user($op, &$edit, &$account, $category = NULL) {
  if (in_array($op, array(
    'view',
    'form',
  ))) {
    spaces_router('user view', $account);
  }
}