Advertisement
nucklear

Print token list drupal 7

Jun 28th, 2012
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.22 KB | None | 0 0
  1. <?php
  2. // You can call the theme function directly:
  3. theme('token_tree', array('token_types' => array('node')));
  4. // Or use it in a form:
  5. $form['tokens'] = array(
  6.   '#theme' => 'token_tree',
  7.   '#token_types' => array('node'),
  8. );
  9. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement