You are here

function farm_season_farm_ui_entities in farmOS 7

Implements hook_farm_ui_entities().

File

modules/farm/farm_season/farm_season.module, line 12

Code

function farm_season_farm_ui_entities() {
  return array(
    'taxonomy_term' => array(
      'farm_season' => array(
        'label' => t('Season'),
        'label_plural' => t('Seasons'),
      ),
    ),
  );
}