Parent Directory
|
Revision Log
|
Revision Graph
Implemented hook_uninstall.
| 1 | <?php |
| 2 | // $Id$ |
| 3 | |
| 4 | /** |
| 5 | * Implementation of hook_uninstall(). |
| 6 | */ |
| 7 | function field_keyword_filter_uninstall() { |
| 8 | if (db_table_exists('faceted_search_filters')) { |
| 9 | db_query("DELETE FROM {faceted_search_filters} WHERE filter_key LIKE 'field_%' AND filter_id = 'keyword'"); |
| 10 | } |
| 11 | } |
| 12 |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |