| 1 |
<?php |
<?php |
| 2 |
// $Id: xmlsitemap_file.install,v 1.1.4.3 2008/11/28 16:12:47 kiam Exp $ |
// $Id: xmlsitemap_file.install,v 1.1.4.4 2008/11/29 19:25:15 kiam Exp $ |
| 3 |
|
|
| 4 |
/** |
/** |
| 5 |
* @file |
* @file |
| 72 |
), |
), |
| 73 |
'primary keys' => array('fid'), |
'primary keys' => array('fid'), |
| 74 |
); |
); |
| 75 |
|
return $schema; |
| 76 |
} |
} |
| 77 |
|
|
| 78 |
/** |
/** |
| 93 |
* Implementation of hook_uninstall(). |
* Implementation of hook_uninstall(). |
| 94 |
*/ |
*/ |
| 95 |
function xmlsitemap_file_uninstall() { |
function xmlsitemap_file_uninstall() { |
| 96 |
db_query("DROP TABLE {xmlsitemap_file}"); |
drupal_uninstall_schema('xmlsitemap_file'); |
| 97 |
} |
} |