fast_404.install in Fast 404 7
Same filename and directory in other branches
File
fast_404.installView source
<?php
/**
* Implements hook_enable().
*/
function fast_404_enable() {
db_update('system')
->fields(array(
'bootstrap' => 1,
'weight' => -1000,
))
->condition('name', 'fast_404')
->condition('type', 'module')
->execute();
}
Functions
Name | Description |
---|---|
fast_404_enable | Implements hook_enable(). |