You are here

files_undo_remove.install in Files undo remove 7

Files undo remove install file.

File

files_undo_remove.install
View source
<?php

/**
 * @file
 * Files undo remove install file.
 */

/**
 * Implements hook_install().
 */
function files_undo_remove() {

  // Make sure we are really low in weight.
  db_update('system')
    ->fields(array(
    'weight' => 20,
  ))
    ->condition('name', 'files_undo_remove')
    ->execute();
}

Functions

Namesort descending Description
files_undo_remove Implements hook_install().