Entity builder for the paragraphs type form with group property.
primer_base_form_paragraphs_type_form_alter()
function paragraphs_library_form_paragraphs_type_form_builder($entity_type, ParagraphsTypeInterface $type, &$form, FormStateInterface $form_state) {
if ($form_state
->getValue('allow_library_conversion')) {
$type
->setThirdPartySetting('paragraphs_library', 'allow_library_conversion', $form_state
->getValue('allow_library_conversion'));
}
else {
$type
->unsetThirdPartySetting('paragraphs_library', 'allow_library_conversion');
}
}