- examples
Examples using the Token API.
The Token module provides an API for providing tokens to other modules. Tokens are small bits of text that can be placed into larger documents via simple placeholders, like %site-name or [user].
This example is part of the Examples for Developers Project which you can download and experiment with here: http://drupal.org/project/examples
Functions & methods
| Name | Description |
|---|---|
| token_example_entity_info_alter | Implements hook_entity_info_alter(). |
| token_example_example_form | Form builder; display lists of supported token entities and text to tokenize. |
| token_example_example_form_submit | Submit callback; store the submitted values into storage. |
| token_example_menu | Implements hook_menu(). |
| token_example_tokens | Implements hook_tokens(). |
| token_example_token_info | Implements hook_token_info(). |
| _token_example_get_comment | Builds a list of available comments. |
| _token_example_get_file | Builds a list of available files. |
| _token_example_get_node | Builds a list of available content. |
| _token_example_get_taxonomy_term | Builds a list of available taxonomy terms. |
| _token_example_get_user | Builds a list of available user accounts. |
File
- token_example/
token_example.module, line 12 - An example module showing how to define and use tokens.