Parent Directory
|
Revision Log
|
Revision Graph
Improved data model for search environment settings.
| 1 | <?php |
| 2 | // $Id: content_type_facet.install,v 1.8 2008/08/26 04:28:10 davidlesieur Exp $ |
| 3 | |
| 4 | /** |
| 5 | * Implementation of hook_uninstall(). |
| 6 | */ |
| 7 | function content_type_facet_uninstall() { |
| 8 | if (db_table_exists('faceted_search_filters')) { |
| 9 | db_query("DELETE FROM {faceted_search_filters} WHERE filter_key = 'content_type'"); |
| 10 | } |
| 11 | } |
| 12 |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |