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

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

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


Revision 1.5 - (show annotations) (download) (as text)
Tue Aug 26 04:28:10 2008 UTC (15 months ago) by davidlesieur
Branch: MAIN
CVS Tags: DRUPAL-6--1-0-BETA2, DRUPAL-6--1-0-BETA1, HEAD
Changes since 1.4: +1 -20 lines
File MIME type: text/x-php
#219095 by DenRaf and David Lesieur: First step with Drupal 6 port.
1 <?php
2 // $Id: date_authored_facet.install,v 1.4 2008/04/23 14:14:25 davidlesieur Exp $
3
4 /**
5 * Implementation of hook_uninstall().
6 */
7 function date_authored_facet_uninstall() {
8 variable_del('date_authored_facet_format_y');
9 variable_del('date_authored_facet_format_ym');
10 variable_del('date_authored_facet_format_ymd');
11 if (db_table_exists('faceted_search_filters')) {
12 db_query("DELETE FROM {faceted_search_filters} WHERE filter_key = 'date_authored'");
13 }
14 }
15

  ViewVC Help
Powered by ViewVC 1.1.2