Drupal 7: 사용자 이름 파일을 기반으로 권한 할당
이 코드와 made it available on my GitHub의 일반 버전을 꺼냈습니다.
로그인 후 후크
먼저 로그인을 후킹해야 합니다. 사용자가 로그인할 때 추가 권한이 필요한지 확인하려고 합니다. 이것은 the hook_user_login hook 을 사용하여 수행할 수 있습니다.
/**
* Implements hook_user_login
*/
function permissions_from_file_user_login(&$edit, $account) {
// assign the "test role" role, if necessary.
_permissions_from_file_update_permissions($account);
// do not redirect password reset requests.
if (!isset($_POST['form_id']) || $_POST['form_id'] != 'user_pass_reset') {
if (isset($_GET['target'])) {
drupal_goto($_GET['target']);
}
}
}
파일 읽기
다음으로 사용자 이름이 파일에 있는지 확인하는 또 다른 함수가 있습니다.
/**
* Reads from file and determine whether the specified user is in the list
**/
function _permissions_from_file_is_role($account) {
$contents = file_get_contents('/var/usernames/roleusernames.csv');
return preg_match("/$account->name/",$contents);
// returns if name is in the file.
}
역할 할당 또는 제거
마지막으로 사용자 이름이 파일에 있는지 여부에 따라 권한을 할당할 수 있습니다.
/**
* Calls function that checks if permissions should be found
**/
function _permissions_from_file_update_permissions($account) {
$is_role = _permissions_from_file_is_role($account);
$role = user_role_load_by_name('test role');
if ($is_role) {
// add permissions to that user
user_multiple_role_edit(array($account->uid), 'add_role', $role->rid);
}
else {
// delete the role assignment, if it exists
user_multiple_role_edit(array($account->uid), 'remove_role', $role->rid);
}
}
Reference
이 문제에 관하여(Drupal 7: 사용자 이름 파일을 기반으로 권한 할당), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/ryanlrobinson/drupal-7-assign-permissions-based-on-username-file-5b0h텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)