/[drupal]/contributions/modules/faceted_search/field_keyword_filter.install
ViewVC logotype

Contents of /contributions/modules/faceted_search/field_keyword_filter.install

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


Revision 1.1 - (show annotations) (download) (as text)
Thu May 29 22:14:50 2008 UTC (17 months, 4 weeks ago) by davidlesieur
Branch: MAIN
CVS Tags: DRUPAL-6--1-0-BETA2, DRUPAL-6--1-0-BETA1, DRUPAL-5--1-0-BETA4, HEAD
Branch point for: DRUPAL-5
File MIME type: text/x-php
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