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

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

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


Revision 1.1 - (show annotations) (download) (as text)
Thu Jun 19 20:29:49 2008 UTC (17 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
Expose node titles for indexing.
1 <?php
2 // $Id$
3
4 /**
5 * Implementation of hook_uninstall().
6 */
7 function node_field_indexer_uninstall() {
8 if (db_table_exists('field_indexer_map')) {
9 db_query("DELETE FROM {field_indexer_map} WHERE namespace = 'node'");
10 }
11 }

  ViewVC Help
Powered by ViewVC 1.1.2