You are here

farm_season.module in farmOS 7

File

modules/farm/farm_season/farm_season.module
View 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