download_file.install in DownloadFile 6
Same filename and directory in other branches
File
download_file.installView source
<?php
/**
* Implementation of hook_install().
*/
function download_file_install() {
// Add variable for the accessible format.
variable_set('download_file_accessible_format', '(format !extension / !file_size)');
// Display the link to configure the format of the link accessible.
drupal_set_message(t('Configure the format of the link accessible on the <a href="@setting">setting page</a>.', array(
'@setting' => url('admin/settings/download-file'),
)));
}
/**
* Implementation of hook_uninstall().
*/
function download_file_uninstall() {
// Delete variable for the accessible format.
variable_del('download_file_accessible_format');
}
/**
* First update for the 6.1 branch.
*/
function download_file_update_6100() {
// Add variable for the accessible format.
variable_set('download_file_accessible_format', '(format !extension / !file_size)');
// Clear all cache.
cache_clear_all();
// Display the link to configure the format of the link accessible.
drupal_set_message(t('Configure the format of the link accessible on the <a href="@setting">setting page</a>.', array(
'@setting' => url('admin/settings/download-file'),
)));
return array();
}
Functions
Name | Description |
---|---|
download_file_install | Implementation of hook_install(). |
download_file_uninstall | Implementation of hook_uninstall(). |
download_file_update_6100 | First update for the 6.1 branch. |