By editor, 17 November, 2015 Get taxonomy vocabulary list - Drupal 8 Tags Drupal 8 Code Taxonomy In drupal 8, this retrun taxonomy vocabularies as an array. $vocabularies = \Drupal\taxonomy\Entity\Vocabulary::loadMultiple();
By editor, 16 November, 2015 Helpful git commands Tags Git Code #Download / Get git repository git clone http://url-of-your-git/project.git #Show remore url git remote -v
By editor, 14 November, 2015 Create a user account programmatically in Drupal 8 Tags Drupal 8 Code User Here an example for create a user account programmatically in Drupal 8 $language = \Drupal::languageManager()->getCurrentLanguage()->getId(); $user = \Drupal\user\Entity\User::create();
By editor, 13 November, 2015 Create a node programmatically in Drupal 8 Tags Drupal 8 Code Node Here an example for create node programmatically in Drupal 8
By editor, 6 November, 2015 How to get the current language in Drupal 8 Tags Drupal 8 Code Translation User Drupal 8 //To get the lanuage code: $language = \Drupal::languageManager()->getCurrentLanguage()->getId(); //To get the language name: $language = \Drupal::languageManager()->getCurrentLanguage()->getName();