access_by_ref.install in Access by Reference 7
Same filename and directory in other branches
Install and uninstall code for access_by_ref Module.
Long description here.
File
access_by_ref.installView source
<?php
/**
* @file
* Install and uninstall code for access_by_ref Module.
*
* Long description here.
*/
/**
* Implements hook_install().
*/
function access_by_ref_install() {
// Do some things on install, like setting the module weight.
}
/**
* Implements hook_uninstall().
*/
function access_by_ref_uninstall() {
variable_del('access_by_ref_user_field');
variable_del('access_by_ref_referenced');
variable_del('access_by_ref_user_reference_field');
}
Functions
Name | Description |
---|---|
access_by_ref_install | Implements hook_install(). |
access_by_ref_uninstall | Implements hook_uninstall(). |