function cufon_install in Cufón 6
Same name and namespace in other branches
- 7.2 cufon.install \cufon_install()
Implementation of hook_install().
File
- ./
cufon.install, line 6
Code
function cufon_install() {
// Increase module weight to ensure scripts are handled relatively late in
// the page rendering process.
$sql = "UPDATE {system}\n SET weight = 100\n WHERE name = 'cufon'";
db_query($sql);
}