EclipseGc

Untitled

Jul 9th, 2012
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.45 KB | None | 0 0
  1. <?php
  2.  
  3. hook user_token_info() {
  4.   return array(
  5.     'user' => array(
  6.       'name' => t('Users'),
  7.       'description' => t('Tokens related to individual user accounts.'),
  8.       'required context' => 'entity:user',
  9.       'class' => 'Drupal\user\Plugins\core\tokens\UserTokens',
  10.       'tokens' => array(
  11.         'uid',
  12.         'name',
  13.         'mail',
  14.         'url',
  15.         'editUrl',
  16.         'lastLogin',
  17.         'created',
  18.       ),
  19.     ),
  20.   );
  21. }
Advertisement
Add Comment
Please, Sign In to add comment