function theme_invite_token_help in Invite 5.2
Same name and namespace in other branches
- 5 invite_token.inc \theme_invite_token_help()
- 6.2 invite_token.inc \theme_invite_token_help()
For a given context, builds a formatted list of tokens and descriptions of their replacement values.
Parameters
type: The token types to display documentation for. Defaults to 'all'.
prefix: The prefix your module will use when parsing tokens. Defaults to '['
suffix: The suffix your module will use when parsing tokens. Defaults to ']'
Return value
An HTML table containing the formatting docs.
1 theme call to theme_invite_token_help()
- _invite_settings in ./
invite_admin.inc - Menu callback; display invite settings form.
File
- ./
invite_token.inc, line 52 - Token integration functions for invite module.
Code
function theme_invite_token_help($type = 'all', $prefix = '[', $suffix = ']') {
token_include();
// @see http://drupal.org/node/127072
$full_list = array();
foreach ((array) $type as $t) {
$full_list = array_merge($full_list, token_get_list($t));
}
$headers = array(
t('Token'),
t('Replacement value'),
);
$rows = array();
foreach ($full_list as $key => $category) {
$rows[] = array(
array(
'data' => drupal_ucfirst($key) . ' ' . t('tokens'),
'class' => 'region',
'colspan' => 2,
),
);
foreach ($category as $token => $description) {
$row = array();
$row[] = $prefix . $token . $suffix;
$row[] = $description;
$rows[] = $row;
}
}
$output = theme('table', $headers, $rows, array(
'class' => 'description',
));
return $output;
}