3
0
Fork 0
mirror of https://github.com/farmOS/farmOS.git synced 2024-02-23 11:37:38 +01:00
farmOS/modules/farm/farm_livestock/farm_livestock_area_types/farm_livestock_area_types.farm_area.inc

21 lines
376 B
PHP
Raw Permalink Normal View History

<?php
/**
* @file
* Farm Area hooks implemented by the Farm Livestock Area Types module.
*/
/**
* Implements hook_farm_area_type_info().
*/
function farm_livestock_area_types_farm_area_type_info() {
return array(
'paddock' => array(
'label' => t('Paddock'),
'style' => 'darkgreen',
'weight' => 5,
'dashboard_metric' => TRUE,
),
);
}