You are here

access_by_ref.install in Access by Reference 7

Same filename and directory in other branches
  1. 8.2 access_by_ref.install
  2. 8 access_by_ref.install

Install and uninstall code for access_by_ref Module.

Long description here.

File

access_by_ref.install
View 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