Adjust animal group and type field descriptions to link to new Views.

This commit is contained in:
Michael Stenta 2015-05-01 09:32:09 -04:00
parent 99fb453641
commit ac542adee3
1 changed files with 4 additions and 4 deletions

View File

@ -109,7 +109,7 @@ function farm_livestock_field_default_fields() {
'bundle' => 'animal',
'default_value' => NULL,
'deleted' => 0,
'description' => 'Assign this animal to a particular group, herd, flock, etc.',
'description' => 'Assign this animal to a particular group, herd, flock, etc. You can manage the list of available groups in the <a href="/farm/animals/groups">Animal Groups</a> vocabulary.',
'display' => array(
'default' => array(
'label' => 'inline',
@ -433,7 +433,7 @@ function farm_livestock_field_default_fields() {
'bundle' => 'animal',
'default_value' => array(),
'deleted' => 0,
'description' => 'What type of animal is this? You can manage the list of available types in the <a href="/admin/structure/taxonomy/farm_animal_types">Animal Types</a> vocabulary.',
'description' => 'What type of animal is this? You can manage the list of available types in the <a href="/farm/animals/types">Animal Types</a> vocabulary.',
'display' => array(
'default' => array(
'label' => 'inline',
@ -915,7 +915,7 @@ function farm_livestock_field_default_fields() {
// Translatables
// Included for use with string extractors like potx.
t('Assign this animal to a particular group, herd, flock, etc.');
t('Assign this animal to a particular group, herd, flock, etc. You can manage the list of available groups in the <a href="/farm/animals/groups">Animal Groups</a> vocabulary.');
t('Body Location');
t('Date of birth');
t('Description');
@ -931,7 +931,7 @@ function farm_livestock_field_default_fields() {
t('Sex');
t('Tag Type');
t('Type');
t('What type of animal is this? You can manage the list of available types in the <a href="/admin/structure/taxonomy/farm_animal_types">Animal Types</a> vocabulary.');
t('What type of animal is this? You can manage the list of available types in the <a href="/farm/animals/types">Animal Types</a> vocabulary.');
return $fields;
}