farm_season.module in farmOS 7
File
modules/farm/farm_season/farm_season.moduleView source
<?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'),
),
),
);
}
Functions
Name | Description |
---|---|
farm_season_farm_ui_entities | Implements hook_farm_ui_entities(). |