You are here

tft_og_archive.install in Taxonomy File Tree 7.2

Module install logic.

File

modules/tft_og_archive/tft_og_archive.install
View source
<?php

/**
 * @file
 * Module install logic.
 */

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

  // Must be "lighter" than tft_archive for access control.
  db_update('system')
    ->fields(array(
    'weight' => -100,
  ))
    ->condition('name', 'tft_og_archive')
    ->execute();
}

Functions

Namesort descending Description
tft_og_archive_install Implements hook_install().