You are here

fast_404.install in Fast 404 7

Same filename and directory in other branches
  1. 6 fast_404.install

File

fast_404.install
View 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

Namesort descending Description
fast_404_enable Implements hook_enable().