/[drupal]/contributions/modules/admin_links/admin_links.install
ViewVC logotype

Contents of /contributions/modules/admin_links/admin_links.install

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.2 - (show annotations) (download) (as text)
Mon Nov 3 22:19:19 2008 UTC (12 months, 3 weeks ago) by davereid
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +17 -0 lines
File MIME type: text/x-php
- 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