You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Adds 'Produces eggs' field to group and animal assets.
*/
function farm_eggs_farm_entity_bundle_field_info(EntityTypeInterface $entity_type, string $bundle): array {
$fields = [];
if ($entity_type->id() == 'asset' && in_array($bundle, ['group', 'animal'])) {
$options = [
'type' => 'boolean',
'label' => t('Produces eggs'),
'description' => t('Checking this box will make this asset available in the <a href="@egg_form_path">egg harvest form</a>.', ['@egg_form_path' => '/quick/eggs']),