Skip to content

Instantly share code, notes, and snippets.

View johnny-aroza's full-sized avatar
🚴‍♂️
Hakuna Mata

johnny johnny-aroza

🚴‍♂️
Hakuna Mata
View GitHub Profile
@johnny-aroza
johnny-aroza / AddTranslation.php
Created May 3, 2024 10:06
Drupal add Translation through code
$language = \Drupal::languageManager()->getLanguage('es-ar');
$translatedNode = $entity->addTranslation($language->getId());
$translatedNode->setTitle('ec-er Title');
$translatedNode->save();
dump($translatedNode);