- Merge request !38Issue #3168732: Allow to alter settings to add settings per entity bundle → (Open) created by dieterholvoet
- First commit to issue fork.
- last update
over 1 year ago 29 pass, 2 fail - First commit to issue fork.
Currently it's only possible to configure "CHECKBOXES DEFAULT VALUE", "DISABLE CHECKBOXES" and "HIDE CHECKBOXES" settings per entity type.
It would be great to have an ability to configure these settings per entity bundle as well.
I can't unset "CHECKBOXES DEFAULT VALUE" for some entity bundles, I can only do it for the whole entity type.
In first comment I'm attaching the patch that adds `hook_entity_clone_settings_alter` hook where users can alter form settings and add settings per bundle.
function hook_entity_clone_settings_alter(array &$form_settings) {
// Adding settings per entity bundle.
$form_settings['taxonomy_term']['vocabulary_name']['default_value'] = false;
$form_settings['taxonomy_term']['vocabulary_name']['disable'] = false;
$form_settings['taxonomy_term']['vocabulary_name']['hidden'] = false;
}
Entity Clone Form settings array can now have settings per bundle if user add it in alter hook.
Needs review
2.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.