filefield_sources.install in FileField Sources 8
Same filename and directory in other branches
Update and install functions for FileField Sources.
File
filefield_sources.installView source
<?php
/**
* @file
* Update and install functions for FileField Sources.
*/
/**
* Implements hook_install().
*/
function filefield_sources_install() {
// FileField Sources needs to load after both ImageField and FileField.
try {
$file_weight = module_get_weight('file');
$image_weight = module_get_weight('image');
$weight = max([
$file_weight,
$image_weight,
]);
$weight++;
} catch (Exception $e) {
$weight = 5;
}
module_set_weight('filefield_sources', $weight);
}
Functions
Name | Description |
---|---|
filefield_sources_install | Implements hook_install(). |