You are here

function filelog_uninstall in File Log 7

Same name and namespace in other branches
  1. 6.2 filelog.install \filelog_uninstall()
  2. 6 filelog.install \filelog_uninstall()

Implementation of hook_uninstall().

File

./filelog.install, line 57

Code

function filelog_uninstall() {
  drupal_load('module', 'filelog');
  file_scan_directory(filelog_directory(FALSE), '/.+/', array(
    'callback' => 'file_unmanaged_delete',
  ));
}