You are here

file_upload_security.install in File Upload Security 7.3

Install, uninstall and update functions for file_upload_security module.

File

file_upload_security.install
View source
<?php

/**
 * @file
 * Install, uninstall and update functions for file_upload_security module.
 */

/**
 * Implements hook_uninstall().
 */
function file_upload_security_uninstall() {

  // Delete set variables.
  db_delete('variable')
    ->condition('name', 'file_upload_security_%', 'LIKE')
    ->execute();
}

Functions