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

Diff of /contributions/modules/membership/membership.install

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

revision 1.1, Sun Feb 17 16:50:46 2008 UTC revision 1.1.2.1, Tue Oct 21 07:13:11 2008 UTC
# Line 1  Line 1 
1  <?php  <?php
2  // $Id$  // $Id: membership.install,v 1.1 2008/02/17 16:50:46 boobaa Exp $
3    
4    /**
5     * @file
6     *   Handles membership (un)installation tasks.
7     */
8    
9  /**  /**
10   * Implementation of hook_install().   * Implementation of hook_install().
# Line 16  function membership_install() { Line 21  function membership_install() {
21        expires int(11) NOT NULL default '0',        expires int(11) NOT NULL default '0',
22        PRIMARY KEY (mid)        PRIMARY KEY (mid)
23      ) /*!40100 DEFAULT CHARACTER SET UTF8 */");      ) /*!40100 DEFAULT CHARACTER SET UTF8 */");
24        drupal_set_message(t('Membership module has been installed, go <a href="@url">set it up</a>.', array('@url' => url('admin/settings/membership'))));
25      break;      break;
26    
27    case 'pgsql':    case 'pgsql':
28      // FIXME: to be implemented      // FIXME: to be implemented
29        drupal_set_message(t('Membership module does not support PGSQL yet. Patches welcome.'));
30      break;      break;
31    }    }
32  }  }

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.1.2.1

  ViewVC Help
Powered by ViewVC 1.1.2