function simple_access_delete_profile in Simple Access 7.2
Same name and namespace in other branches
- 5.2 simple_access.module \simple_access_delete_profile()
- 6.2 simple_access.module \simple_access_delete_profile()
Delete profile from all 3 tables.
1 call to simple_access_delete_profile()
- simple_access_profile_delete_confirm_submit in ./
simple_access.admin.inc - Confirm delete submit callback.
File
- ./
simple_access.module, line 786 - 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_delete_profile($pid) {
foreach (array(
'simple_access_profiles',
'simple_access_profiles_access',
'simple_access_profiles_node',
) as $table) {
db_delete($table)
->condition('pid', $pid)
->execute();
}
}