files_undo_remove.install in Files undo remove 7
Files undo remove install file.
File
files_undo_remove.installView 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
Name![]() |
Description |
---|---|
files_undo_remove | Implements hook_install(). |