caption_filter.install in Caption Filter 7.2
Same filename and directory in other branches
Update and install functions for FileField Sources.
File
caption_filter.installView source
<?php
/**
* @file
* Update and install functions for FileField Sources.
*/
/**
* Implementation of hook_install().
*/
function caption_filter_install() {
// Caption Filter needs to load after Insert module.
db_query("UPDATE {system} SET weight = 20 WHERE type = 'module' AND name = 'caption_filter'");
}
/**
* Set the Caption Filter module weight.
*/
function caption_filter_update_7100() {
// Caption Filter needs to load after Insert module.
db_query("UPDATE {system} SET weight = 20 WHERE type = 'module' AND name = 'caption_filter'");
}
Functions
Name![]() |
Description |
---|---|
caption_filter_install | Implementation of hook_install(). |
caption_filter_update_7100 | Set the Caption Filter module weight. |