You are here

function private_node_type_delete in Private 7.2

Implements hook_node_type_delete().

File

./private.module, line 291
A tremendously simple access control module -- it allows users to mark individual nodes as private; users with 'access private content' perms can read these nodes, while others cannot.

Code

function private_node_type_delete($info) {
  variable_del('private_' . $info->type);
}