You are here

function farm_log_harvest_farm_ui_entities in farmOS 7

Implements hook_farm_ui_entities().

File

modules/farm/farm_log/farm_log_harvest/farm_log_harvest.module, line 13
Code for the Farm Log: Harvest feature.

Code

function farm_log_harvest_farm_ui_entities() {
  return array(
    'log' => array(
      'farm_harvest' => array(
        'label' => t('Harvest'),
        'label_plural' => t('Harvests'),
        'view' => 'farm_log_harvest',
        'areas' => TRUE,
        'weight' => 80,
      ),
    ),
  );
}