You are here

fast_404.install in Fast 404 6

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

File

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

Namesort descending Description
fast_404_enable Implementation of hook_enable().