- π©πͺGermany stmh
insteds of an alter hook you can inject it via the preprocess hook. So no changes needed to layout_paragraphs
/** * Implements hook_preprocess_layout_paragraphs_builder(). */ function layout_paragraphs_iframe_modal_preprocess_layout_paragraphs_builder_controls(array &$variables) { foreach ($variables['controls'] as $ndx => $control) { if (!empty($control['#attributes']['data-dialog-type'])) { $variables['controls'][$ndx]['#attributes']['data-dialog-type'] = 'iframe'; } } }