farmOS/modules/farm/farm_season/farm_season.module

22 lines
363 B
Plaintext

<?php
/**
* @file
* Code for the Farm Season feature.
*/
include_once 'farm_season.features.inc';
/**
* Implements hook_farm_ui_entities().
*/
function farm_season_farm_ui_entities() {
return array(
'taxonomy_term' => array(
'farm_season' => array(
'label' => t('Season'),
'label_plural' => t('Seasons'),
),
),
);
}