You are here

function farm_plan_farm_plan_consideration_types in farmOS 7

Implements hook_farm_plan_consideration_types().

File

modules/farm/farm_plan/farm_plan_consideration/farm_plan_consideration.module, line 79
Farm plan consideration module.

Code

function farm_plan_farm_plan_consideration_types() {

  // Provide two basic consideration types: "Management concern" and "Urgent".
  return array(
    'concern' => array(
      'label' => t('Management concern'),
      'color' => 'purple',
    ),
    'urgent' => array(
      'label' => t('Urgent'),
      'color' => 'red',
    ),
  );
}