function simple_access_owner_grant_submit in Simple Access 7.2
Same name and namespace in other branches
- 8.3 simple_access.module \simple_access_owner_grant_submit()
- 6.2 simple_access.module \simple_access_owner_grant_submit()
Submit callback for the owner grant form.
File
- ./
simple_access.module, line 894 - This module allows administrators to make nodes viewable by specific 'access groups'. Each access group can contain any number of roles. If a node is not assigned to any access groups, it will remain viewable by all users.
Code
function simple_access_owner_grant_submit($form, &$form_state) {
$settings = array(
'sa_owner_permissions' => $form_state['values']['sa_owner_permissions'],
);
return $settings;
}