You are here

trim.install in Trim 7

Same filename and directory in other branches
  1. 8 trim.install

File

trim.install
View source
<?php

/**
 * Implements hook_install().
 */
function trim_install() {

  // Set a large weight in order to go last (and so validate first).
  db_update('system')
    ->fields(array(
    'weight' => 1001,
  ))
    ->condition('name', 'trim', '=')
    ->execute();
}

Functions

Namesort descending Description
trim_install Implements hook_install().