fast_404.install in Fast 404 6
Same filename and directory in other branches
File
fast_404.installView source
<?php
/**
* Implementation of hook_enable().
*/
function fast_404_enable() {
$bootstrap = 1;
$weight = -1000;
$type = 'module';
$name = 'fast_404';
db_query("UPDATE {system} SET bootstrap = %d, weight = %d WHERE name = '%s' AND type = '%s'", $bootstrap, $weight, $name, $type);
}
Functions
Name | Description |
---|---|
fast_404_enable | Implementation of hook_enable(). |