This repository has been archived on 2025-06-21. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
suitedesk/modules/token
2017-08-14 23:19:19 +02:00
..
API.txt Now all modules are in core modules folder 2017-08-08 12:14:45 +02:00
arrow-down.png Now all modules are in core modules folder 2017-08-08 12:14:45 +02:00
arrow-right.png Now all modules are in core modules folder 2017-08-08 12:14:45 +02:00
jquery.treeTable.css Now all modules are in core modules folder 2017-08-08 12:14:45 +02:00
jquery.treeTable.js Now all modules are in core modules folder 2017-08-08 12:14:45 +02:00
README.txt Now all modules are in core modules folder 2017-08-08 12:14:45 +02:00
token.api.php Now all modules are in core modules folder 2017-08-08 12:14:45 +02:00
token.css Now all modules are in core modules folder 2017-08-08 12:14:45 +02:00
token.info Now all modules are in core modules folder 2017-08-08 12:14:45 +02:00
token.install Now all modules are in core modules folder 2017-08-08 12:14:45 +02:00
token.js Now all modules are in core modules folder 2017-08-08 12:14:45 +02:00
token.module Now all modules are in core modules folder 2017-08-08 12:14:45 +02:00
token.pages.inc Now all modules are in core modules folder 2017-08-08 12:14:45 +02:00
token.rules.inc Now all modules are in core modules folder 2017-08-08 12:14:45 +02:00
token.test Now all modules are in core modules folder 2017-08-08 12:14:45 +02:00
token_actions.info Now all modules are in core modules folder 2017-08-08 12:14:45 +02:00
token_actions.module Now all modules are in core modules folder 2017-08-08 12:14:45 +02:00
token_actions.test Now all modules are in core modules folder 2017-08-08 12:14:45 +02:00
token_comment.inc Now all modules are in core modules folder 2017-08-08 12:14:45 +02:00
token_node.inc Now all modules are in core modules folder 2017-08-08 12:14:45 +02:00
token_taxonomy.inc Now all modules are in core modules folder 2017-08-08 12:14:45 +02:00
token_user.inc Now all modules are in core modules folder 2017-08-08 12:14:45 +02:00
tokenSTARTER.info Now all modules are in core modules folder 2017-08-08 12:14:45 +02:00
tokenSTARTER.module Now all modules are in core modules folder 2017-08-08 12:14:45 +02:00

Description
===========
Token module provides a centralized API for text substitution. Unless
you're installing another Drupal module that requires it, this software
is probably unnecessary.

For more information on tokens see http://groups.drupal.org/tokens

Benefits
========
If you're a Drupal developer, check out API.txt for detailed instructions
on using the Token API. It allows every module to announce the placeholder
tokens they can handle, uses simple caching to prevent duplicated work in
a given page-view, and is pretty lightweight. It's nice. You'll like it.

tokenSTARTER
============
Want to add your own custom tokens to a site? Not sure how to write a 
module? Worry no more, it's now quite easy.

1. Copy and rename the tokenSTARTER.info and tokenSTARTER.module replacing
   every instance of STARTER with a descriptive, appropriate word.

2. Edit the .module file and change hook_token_list and hook_token_values
   to provide whatever additional tokens or logic your site needs.

3. Enable the module and enjoy!

You should also want to read the API.txt.