Guest User

Untitled

a guest
Feb 16th, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. $vid = 'hospitals';
  2. $terms = Drupal::entityTypeManager()->getStorage('taxonomy_term')->loadTree($vid);
  3. foreach ($terms as $term) {
  4. $term_data[] = [
  5. 'tid' => $term->tid,
  6. 'tname' => $term->name,
  7. 'image' => ...???.., // image field
  8. 'contact' => ...???.., // text field
  9. ];
  10. }
Add Comment
Please, Sign In to add comment