You are here

function hook_farm_asset_property in farmOS 7

Defines farm asset properties maintained by this module.

Return value

array Returns an array of farm asset property names.

Related topics

1 invocation of hook_farm_asset_property()
farm_asset_property_feeds_processor_targets in modules/farm/farm_asset/farm_asset_property/farm_asset_property.module
Implements hook_feeds_processor_targets().

File

modules/farm/farm_asset/farm_asset_property/farm_asset_property.api.php, line 30
Hooks provided by farm_asset_property.

Code

function hook_farm_asset_property() {
  return array(
    'farm_grazing_animal_type',
    'farm_grazing_planned_arrival',
    'farm_grazing_planned_departure',
  );
}