Tokens are placeholders which act as a substitute for programmatically derived values. Drupal provides a lot of default tokens, but a case may arise where we need to write our own custom token depending on our needs.
In another case, we may also like to provide a token for some value which our module is generating.
Creating a custom token involves two important parts
Declaring Tokens ( Using hook_token_info() )
Providing values for the declared token. ( Using hook_tokens() )
Let’s first learn to declare a token.
The hook_token_info() mainly returns an associative array of two components, ‘types’ and ‘tokens’. The following snippet declares a token.
/**
* Implements hook_token_info().
*/
function my_module_token_token_info() {
$info = [];
$info['types']['my_token_group'] = ['name' => t('Custom Group'), 'description' => t('Custom Group')];
$info['tokens']['my_token_group’][‘my_token’][] = 'A token to extract desired characters from Node body to be used in meta descriptions';
return $info;
}
Here, 'my_token_group' is the machine-name for the token type, while, ‘my_token’ is the machine-name of the token within this group.
Then we provide the values for the declared token. Unlike Drupal 7, the hook_tokens() takes an extra $bubble_metadata as the parameter. This collects metadata for all of the data objects in $data.
/**
* Implements hook_tokens().
*/
function my_module_token_tokens($type, $tokens, array $data, array $options, \Drupal\Core\Render\BubbleableMetadata $bubbleable_metadata) {
$replacements = [];
if ($type == 'my_token_group') {
foreach ($tokens as $name => $original) {
// Find the desired token by name.
switch ($name) {
case ‘my_token’:
$replacements[$original] = my_token_value();
break;
}
}
}
return $replacements;
}
The my_token_value() function returns the replacement value for the token declared. The return value must be either plain text strings or some HTML markup implementing MarkupInterface
The token [my_token:my_token_value] can be used at any desired place in the Drupal Site.
Using tokens in contributed modules
- Path Auto
The Pathauto module generates automatic path aliases for various kinds of content.The tokens provide the value for the replacement pattern. Eg. [node:content-type]/[node:title].
- Metatag
Metatag module uses the tokens to provide automatic metadata about a site.Tokens automatically provide value to meta descriptions, keywords, page title etc based on the content of the node.
The user can have the flexibility to use any of the field information, it's length while creating custom tokens.
- Flag
Flag module provides an efficient flagging system which provides functionality like following a user, subscribe to a topic, etc.
This module uses tokens to fill the values automatically like, [node:flag-vote-count] (providing the vote count). This helps in giving a user a better user experience.
Subscribe
Related Blogs
RFP: How To Create An RFP For Open Source Solutions?
A good Request for Proposals (RFP) or Call for Proposals (CFP) clearly states the goals and expectations of your project and sets the…
Drupal 7 End Of Life: Top Reasons You Should Migrate To Drupal 10
Drupal 10 was released in December 2022 and ever since, the community has been pushing its users to do Drupal 7 to 10 migration. As per…
DrupalCon Barcelona: 2024 Wrap-Up From Europe
DrupalCon, the key conference for the digital experience platform Drupal, was held this year in Barcelona, Spain, from September 24 to 27…