Skip to content

Commit

Permalink
Lint fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
MdNadimHossain committed Dec 16, 2024
1 parent a7622ae commit bd74565
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tide_core.install
Original file line number Diff line number Diff line change
Expand Up @@ -335,20 +335,20 @@ function tide_core_update_10011() {
'field_landing_page_header',
];
$new_component = 'data_driven_component';

foreach ($fields_to_update as $field_name) {
$field_config = FieldConfig::loadByName('node', 'landing_page', $field_name);

if ($field_config) {
// Get the current handler settings.
$handler_settings = $field_config->getSetting('handler_settings');

// Ensure 'target_bundles' exists in handler settings.
if (isset($handler_settings['target_bundles'])) {
// Add the new component if it does not already exist.
if (!array_key_exists($new_component, $handler_settings['target_bundles'])) {
$handler_settings['target_bundles'][$new_component] = $new_component;

// Update the field configuration with the new handler settings.
$field_config->setSetting('handler_settings', $handler_settings);
$field_config->save();
Expand Down

0 comments on commit bd74565

Please sign in to comment.