You are here

function farm_soil_compost_farm_ui_entities in farmOS 7

Implements hook_farm_ui_entities().

File

modules/farm/farm_soil/farm_soil_compost/farm_soil_compost.module, line 12

Code

function farm_soil_compost_farm_ui_entities() {
  return array(
    'farm_asset' => array(
      'compost' => array(
        'label' => t('Compost'),
        'label_plural' => t('Compost'),
        'view' => 'farm_compost',
      ),
    ),
  );
}