You are here

linked_field.install in Linked Field 8

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

Contains install and update functions for Linked Field.

File

linked_field.install
View source
<?php

/**
 * @file
 * Contains install and update functions for Linked Field.
 */

/**
 * Implements hook_install().
 */
function linked_field_install() {
  module_set_weight('linked_field', 100);
}

/**
 * Implements hook_update_last_removed().
 */
function linked_field_update_last_removed() {
  return 8001;
}