Parent Directory
|
Revision Log
|
Revision Graph
#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 |