function active_tags_install in Active Tags 6.2
Same name and namespace in other branches
- 6 active_tags.install \active_tags_install()
Implementation of hook_install().
File
- ./
active_tags.install, line 11 - Install & uninstall functions.
Code
function active_tags_install() {
// Increase module weight to prevent compatibility issues.
$sql = "UPDATE {system}\n SET weight = 10\n WHERE name = 'active_tags'";
db_query($sql);
}