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

Contents of /contributions/modules/a_sync/a_sync.install

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


Revision 1.1 - (show annotations) (download) (as text)
Sun Mar 23 17:50:19 2008 UTC (20 months ago) by vb
Branch: MAIN
CVS Tags: HEAD
File MIME type: text/x-php
Initial a_sync release.
1 <?php
2 // $Id: smfforum.install,v 1.1.2.1 2008/02/05 21:18:03 vb Exp $
3 /**
4 * Copyright (Ñ) 2007-2008 by Vadim G.B. (http://vgb.org.ru)
5 */
6
7 /**
8 * Implementation of hook_install().
9 */
10 //function smfforum_install() {
11 //}
12
13 /**
14 * Implementation of hook_uninstall().
15 */
16
17 function a_sybc_uninstall() {
18
19 // Drop variables.
20 $variables = array(
21 'a_sync_data',
22 'a_sync_module',
23 );
24
25 foreach ($variables as $variable) {
26 variable_del($variable);
27 }
28
29 drupal_set_message(t('a_sync module uninstalled successfully.'));
30 }

  ViewVC Help
Powered by ViewVC 1.1.2