标签: drupal
如何在用户登录时将自己的数据加载到$ user对象上?
答案 0 :(得分:7)
hook_user()可能具有您需要的功能
custommodule_user($op, &$edit, &$account, $category = NULL){ global $user; if($op=='login'){ $user->custommodule['data']='some stuff'; } }