Ich möchte das Feld eines Knotens innerhalb eines Blocks rendern. Es funktioniert so:
<?php
if ($node) {
if (isset($node->field_body_secondary) && $field = $node->field_body_secondary->value) {
$markup = render($field);
$build = array(
'#type' => 'markup',
'#markup' => $markup,
);
}
}
return $build;
Dies ist jedoch nicht 100% ig, als würde ich das Feld nur normal rendern und es in den Einstellungen des Ansichtsmodus sichtbar machen.
$nodeview
hat#node
als Schlüssel