How do I use this in a custom made field formatter?

Created on 25 October 2021, over 3 years ago
Updated 23 January 2025, 2 months ago

A custom field formatter lists the children, linked of terms:

case 'feature_taxonomy_list_children':
      $topics = taxonomy_get_children($entity->tid);
      foreach ($topics as $delta => $topic) {
        $element[$delta] = array(
          '#type' => 'link',
          '#title' => t($topic->name),
          '#href' => '/taxonomy/term/' . $topic->tid,
          // How to use this module?
          'field_delimiter' => 'br',
        );
      }
      break;

(How) can I use this module to change the delimiter to newline instead of comma separated?

💬 Support request
Status

Closed: outdated

Version

1.2

Component

Documentation

Created by

🇧🇪Belgium stijndmd

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

Production build 0.71.5 2024