1
如何在用戶登錄時將我自己的數據加載到$ user對象?
如何在用戶登錄時將我自己的數據加載到$ user對象?
hook_user()可能具有的功能,你需要
custommodule_user($op, &$edit, &$account, $category = NULL){
global $user;
if($op=='login'){
$user->custommodule['data']='some stuff';
}
}