You are here

function autoupload_install in AutoUpload 7

Implements hook_install().

File

./autoupload.install, line 11
Install, update, and uninstall functions of the AutoUpload module

Code

function autoupload_install() {
  require_once 'autoupload.admin.inc';
  $media_enabled = module_exists('media') ? 1 : 0;
  $predefined = array(
    'managed_file' => 1,
    'media' => $media_enabled,
    'media_library' => $media_enabled,
  );
  variable_set('autoupload_userdefined', NULL);
  variable_set('autoupload_predefined', $predefined);
}