| 1 |
<?php |
<?php |
| 2 |
|
|
| 3 |
|
// $Id $ |
| 4 |
|
|
| 5 |
/** |
/** |
| 6 |
* Implementation of hook_install(). |
* Implementation of hook_install(). |
| 7 |
*/ |
*/ |
| 145 |
variable_del('nodeaccess_authors'); |
variable_del('nodeaccess_authors'); |
| 146 |
foreach (node_get_types() as $type => $name) { |
foreach (node_get_types() as $type => $name) { |
| 147 |
variable_del('nodeaccess_' . $type); |
variable_del('nodeaccess_' . $type); |
| 148 |
|
variable_del('nodeaccess_' . $type . '_userreference'); |
| 149 |
} |
} |
| 150 |
// Remove tables. |
// Remove tables. |
| 151 |
drupal_uninstall_schema('nodeaccess'); |
drupal_uninstall_schema('nodeaccess'); |
| 152 |
} |
} |
| 153 |
|
|
| 154 |
?> |
|