getMode() == 'default' && $form_display->isNew()) { $form_display->setComponent('transplant_days', [ 'type' => 'number', 'settings' => [ 'placeholder' => '', ], 'region' => 'content', 'weight' => 15, ]); } } /** * Implements hook_entity_view_display_alter(). */ function farm_transplanting_entity_view_display_alter(EntityViewDisplayInterface $display, array $context) { if ($context['entity_type'] == 'taxonomy_term' && $context['bundle'] == 'plant_type' && $display->getMode() == 'full' && $display->isNew()) { $display->setComponent('transplant_days', [ 'type' => 'number_integer', 'label' => 'inline', 'settings' => [ 'thousand_separator' => '', 'prefix_suffix' => TRUE, ], 'region' => 'content', 'weight' => 15, ]); } }