Skip to content

Instantly share code, notes, and snippets.

@Kloport
Last active October 21, 2017 13:42
Show Gist options
  • Save Kloport/dcf0996aad972c26a6257f10df178372 to your computer and use it in GitHub Desktop.
Save Kloport/dcf0996aad972c26a6257f10df178372 to your computer and use it in GitHub Desktop.
function getNodeContent( $id, $lang = '' ) {
$lang = $lang ?: \Drupal::languageManager()->getCurrentLanguage()->getId();
$node = \Drupal::entityTypeManager()
->getStorage('node')
->load($id);
$translated_node = $node->getTranslation($lang);
return [$node, $translated_node];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment