3
0
Fork 0
mirror of https://github.com/farmOS/farmOS.git synced 2024-02-23 11:37:38 +01:00

Add label to location and assets properties to fix PHP notice.

This commit is contained in:
Michael Stenta 2019-04-09 14:35:52 -04:00
parent ec94f32f7d
commit 97e5022ff7

View file

@ -18,7 +18,8 @@ function farm_movement_entity_property_info_alter(&$info) {
// Add a location property to assets.
$info['farm_asset']['properties']['location'] = array(
'type' => 'list<taxonomy_term>',
'description' => t('Asset location'),
'label' => t('Asset location'),
'description' => t('The area(s) where the asset is currently located.'),
'getter callback' => 'farm_movement_asset_location_property_get',
'computed' => TRUE,
);
@ -26,7 +27,8 @@ function farm_movement_entity_property_info_alter(&$info) {
// Add an assets property to areas.
$info['taxonomy_term']['bundles']['farm_areas']['properties']['assets'] = array(
'type' => 'list<farm_asset>',
'description' => t('Assets in area'),
'label' => t('Assets in area'),
'description' => t('A list of assets currently located in the area.'),
'getter callback' => 'farm_movement_area_assets_property_get',
'computed' => TRUE,
);