You are here

farm_quantity_report.install in farmOS 7

Farm quantity report install.

File

modules/farm/farm_quantity/farm_quantity_report/farm_quantity_report.install
View source
<?php

/**
 * @file
 * Farm quantity report install.
 */

/**
 * Install the Farm Report module (dependency of Quantity Report).
 */
function farm_quantity_report_update_7000(&$sandbox) {
  $module = 'farm_report';
  if (!module_exists($module)) {
    module_enable(array(
      $module,
    ));
  }
}

Functions

Namesort descending Description
farm_quantity_report_update_7000 Install the Farm Report module (dependency of Quantity Report).