function email_token_list in Email Field 5
Same name and namespace in other branches
- 6.2 email.module \email_token_list()
- 6 email.module \email_token_list()
Implementation of hook token_list
File
- ./
email.module, line 364
Code
function email_token_list($type = 'all') {
if ($type == 'field' || $type == 'all') {
$tokens['email']['email'] = t("Email Address");
return $tokens;
}
}