Allow to alter settings to add settings per entity bundle

Created on 2 September 2020, over 4 years ago
Updated 28 July 2024, 8 months ago

Problem/Motivation

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.

Steps to reproduce

I can't unset "CHECKBOXES DEFAULT VALUE" for some entity bundles, I can only do it for the whole entity type.

Proposed resolution

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;
}

Data model changes

Entity Clone Form settings array can now have settings per bundle if user add it in alter hook.

Feature request
Status

Needs review

Version

2.0

Component

Code

Created by

🇧🇾Belarus skorzh Belarus

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

Production build 0.71.5 2024