Parent Directory
|
Revision Log
|
Revision Graph
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 |