2013-05-16 117 views

回答

0

你可以做這樣的事情,

function module_user_login(&$edit, $account) { 
    $alias = drupal_get_path_alias($_GET['q']); 
    if (in_array('Member', $account->roles)) { 
    drupal_goto("http://" . $_SERVER['HTTP_HOST'] . '/' . $alias); 
    } 
} 

注意,上面說的用戶具有角色「會員」檢查代碼。

或者利用這個module

相關問題