Parent Directory
|
Revision Log
|
Revision Graph
- New files sync to HEAD
| 1 | <?php |
| 2 | // $Id$ |
| 3 | |
| 4 | /** |
| 5 | * @file |
| 6 | * Install and uninstall schema and functions for the admin_links module. |
| 7 | */ |
| 8 | |
| 9 | /** |
| 10 | * Implementation of hook_uninstall(). |
| 11 | */ |
| 12 | function admin_links_uninstall() { |
| 13 | $variables = array_keys(admin_links_variables()); |
| 14 | foreach ($variables as $variable) { |
| 15 | variable_del($variable); |
| 16 | } |
| 17 | } |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |