This apparently does not work, and results in no tokens added to globals:

    $form['token_help']['help'] = array(
      '#theme' => 'token_tree',
      '#token_types' => array('token_types' => array('userbadge', 'user')),
      );

How can I show more than one token group?

Comments

Dave Reid’s picture

Status: Active » Fixed

One too many arrays.

$form['token_help']['help'] = array(
  '#theme' => 'token_tree',
  '#token_types' => array('userbadge', 'user'),
);
NancyDru’s picture

Got it, thanks.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.