You are here

function simple_access_delete_group in Simple Access 5.2

Same name and namespace in other branches
  1. 5 simple_access.module \simple_access_delete_group()
  2. 6.2 simple_access.module \simple_access_delete_group()
  3. 7.2 simple_access.module \simple_access_delete_group()
1 call to simple_access_delete_group()
simple_access_delete_group_confirm_submit in ./simple_access.module

File

./simple_access.module, line 927
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_group($gid) {
  db_query('DELETE FROM {simple_access_roles} WHERE gid = %d', $gid);
  db_query('DELETE FROM {simple_access_groups} WHERE gid = %d', $gid);
  db_query('DELETE FROM {simple_access_node} WHERE gid = %d', $gid);
}