Projet

Général

Profil

Paste
Télécharger (243 octets) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / token / tests / token_test.tokens.inc @ f9d4b898

1
<?php
2

    
3
/**
4
 * Implements hook_token_info()
5
 */
6
function token_test_token_info() {
7
  $info['tokens']['node']['colons:in:name'] = array(
8
    'name' => t('A test token with colons in the name'),
9
    'description' => NULL,
10
  );
11

    
12
  return $info;
13
}