You are here

node_export_file.install in Node export 6.3

Same filename and directory in other branches
  1. 6.2 modules/node_export_file/node_export_file.install

The Node export file install file.

File

modules/node_export_file/node_export_file.install
View source
<?php

/**
 * @file
 * The Node export file install file.
 */

/**
 * Implementation of hook_install().
 */
function node_export_file_install() {

  // Weight the module light to ensure it runs before all CCK modules
  db_query("UPDATE {system} SET weight = -10 WHERE name = 'node_export_file'");
}

/**
 * Implementation of hook_uninstall().
 */
function node_export_file_uninstall() {
  variable_del('node_export_file_types');
  variable_del('node_export_file_mode');
  variable_del('node_export_file_assets_path');
}

Functions

Namesort descending Description
node_export_file_install Implementation of hook_install().
node_export_file_uninstall Implementation of hook_uninstall().