Projet

Général

Profil

Paste
Télécharger (424 octets) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / feeds / tests / feeds_tests.install @ ec2b0e7b

1
<?php
2

    
3
/**
4
 * @file
5
 * Uninstall hooks.
6
 */
7

    
8
/**
9
 * Implements hook_uninstall().
10
 */
11
function feeds_tests_uninstall() {
12
  variable_del('feeds_loaded_nodes');
13
  variable_del('feeds_tests_feeds_source_import_queue_time');
14
  variable_del('feeds_tests_feeds_after_parse_empty_items');
15
  variable_del('feeds_tests_feeds_after_save_sleep');
16
  variable_del('feeds_tests_nodes_changed');
17
  variable_del('feeds_track_node_loads');
18
}