function spaces_og_token_list in Spaces 6.2
Implementation of hook_token_list().
File
- spaces_og/
spaces_og.module, line 1155
Code
function spaces_og_token_list($type = 'all') {
if ($type == 'node' || $type == 'all') {
$tokens['node']['space-og-path'] = t("The filtered value of the space prefix path");
$tokens['node']['space-og-path-raw'] = t("The raw value of the space prefix path");
return $tokens;
}
}