/[drupal]/contributions/modules/field_indexer/cck_field_indexer.install
ViewVC logotype

Contents of /contributions/modules/field_indexer/cck_field_indexer.install

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


Revision 1.1 - (show annotations) (download) (as text)
Mon May 19 01:33:22 2008 UTC (18 months, 1 week ago) by davidlesieur
Branch: MAIN
CVS Tags: DRUPAL-6--1-0, DRUPAL-5--1-0, HEAD
Branch point for: DRUPAL-5
File MIME type: text/x-php
Initial version.
1 <?php
2 // $Id$
3
4 /**
5 * Implementation of hook_uninstall().
6 */
7 function cck_field_indexer_uninstall() {
8 if (db_table_exists('field_indexer_map')) {
9 db_query("DELETE FROM {field_indexer_map} WHERE namespace = 'cck'");
10 }
11 }

  ViewVC Help
Powered by ViewVC 1.1.2