Is there a way to programmatically update the field description for a field group tab on the entity form edit view?
It feels/looks like I should be using something along the lines here
$form_display = Drupal::entityTypeManager() ->getStorage('entity_form_display') ->load('node.page.default'); $item = $form_display->getComponent('third_party_settings'); $item->setComponent('third_party_settings', ['field_group' => ['group_additional_body'=>['format_settings' => ['description'=> ['Fieldset Group Description]]]]); $item-save();
Not sure how/if this is possible.