bundle() . '.' . $build['#view_mode']) ?: EntityViewDisplay::load('paragraph.' . $build['#paragraph']->bundle() . '.default'); $paragraph_type = $build['#paragraph']->getParagraphType(); // In case we use paragraphs type with no fields the EntityViewDisplay // might not be available yet. if (!$display) { $display = EntityViewDisplay::create([ 'targetEntityType' => 'paragraph', 'bundle' => $build['#paragraph']->bundle(), 'mode' => 'default', 'status' => TRUE, ]); } foreach ($paragraph_type->getEnabledBehaviorPlugins() as $plugin_id => $plugin_value) { $plugin_value->view($build_list[$key], $build['#paragraph'], $display, $build['#view_mode']); } } return $build_list; } }