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

Contents of /contributions/modules/openid/openid.install

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


Revision 1.7 - (show annotations) (download) (as text)
Mon May 28 17:16:15 2007 UTC (2 years, 6 months ago) by walkah
Branch: MAIN
CVS Tags: HEAD
Changes since 1.6: +7 -38 lines
File MIME type: text/x-php
Schema support for openid.module == yay!
1 <?php
2 // $Id: openid.install,v 1.6 2007/05/23 04:46:15 walkah Exp $
3
4 /**
5 * Implementation of hook_install().
6 */
7 function openid_install() {
8 // Create table.
9 drupal_install_schema('openid');
10 }
11
12 /**
13 * Implementation of hook_uninstall().
14 */
15 function openid_uninstall() {
16 // Remove table.
17 drupal_uninstall_schema('openid');
18 }

  ViewVC Help
Powered by ViewVC 1.1.2