You are here

function farm_area_farm_area_type_info in farmOS 7

Implements hook_farm_area_type_info().

File

modules/farm/farm_area/farm_area.farm_area.inc, line 10
Farm Area hooks implemented by the Farm Area module.

Code

function farm_area_farm_area_type_info() {
  return array(
    'other' => array(
      'label' => t('Other'),
      'style' => 'blue',
      'weight' => 150,
    ),
  );
}