linked_field.install in Linked Field 8
Same filename and directory in other branches
Contains install and update functions for Linked Field.
File
linked_field.installView 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;
}
Functions
Name | Description |
---|---|
linked_field_install | Implements hook_install(). |
linked_field_update_last_removed | Implements hook_update_last_removed(). |