You are here

function node_privacy_byrole_uninstall in node privacy byrole 5

Same name and namespace in other branches
  1. 6 node_privacy_byrole.install \node_privacy_byrole_uninstall()

Implementation of hook_uninstall().

File

./node_privacy_byrole.install, line 89

Code

function node_privacy_byrole_uninstall() {
  db_query('DROP TABLE {node_privacy_byrole}');
  drupal_set_message(t('TIP: If all your nodes say access denied, it may be necessary to !rebuild.', array(
    '!rebuild' => l(t('rebuild permissions'), 'admin/content/node-settings'),
  )));
}