function block_token_token_name in Block Token 8
Same name and namespace in other branches
- 7 block_token.module \block_token_token_name()
Creates the token string.
Parameters
string $module: Module name.
string $block_id: Block Id.
Return value
string Token name.
1 call to block_token_token_name()
- block_token_form_block_form_alter in ./
block_token.module - Implements hook_form_FORM_ID_alter().
File
- ./
block_token.module, line 203 - Defines necessary hooks and functions for block_token form.
Code
function block_token_token_name($module, $block_id) {
return $module . BLOCK_TOKEN_SEPARATOR . $block_id;
}