Skip to content

Instantly share code, notes, and snippets.

@suresh-kumara-gist
Created September 8, 2017 10:41
Show Gist options
  • Save suresh-kumara-gist/e21ffd37064a7f4f1a07e136ca22de2a to your computer and use it in GitHub Desktop.
Save suresh-kumara-gist/e21ffd37064a7f4f1a07e136ca22de2a to your computer and use it in GitHub Desktop.
preprocess paragraph entity drupal 8
function hook_preprocess_paragraph(&$variables) {
//kint($variables['content']['field_class_label'][0]['#text']); die();
if ($variables['content']['field_class_label']['#items']) {
$variables['content']['field_class_label'][0]['#text'] = $variables['content']['field_class_label']['#items']->getString();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment