<?php
// $Id: file_convert.install,v 1.13 2008/10/06 22:38:39 miglius Exp $

/**
 * @file
 * File convert module installation and upgrade code.
 */

//////////////////////////////////////////////////////////////////////////////
// Module installation/uninstallation

/**
 * Implementation of hook_enable().
 */
function file_convert_enable() {
  drupal_set_message(t('File convert module successfully installed. Please review the available <a href="@settings">configuration settings</a>.', array('@settings' => url('admin/settings/file/convert'))));
}

/**
 * Implementation of hook_install().
 */
function file_convert_install() {}

/**
 * Implementation of hook_uninstall().
 */
function file_convert_uninstall() {
  variable_del('file_convert_limit_size');
  variable_del('file_convert_debug');
}

