function block_exclude_pages_blockhelptext in Block Exclude Pages 7
Same name and namespace in other branches
- 8 block_exclude_pages.module \block_exclude_pages_blockhelptext()
- 2.x block_exclude_pages.module \block_exclude_pages_blockhelptext()
Doc function returns the help markup.
1 call to block_exclude_pages_blockhelptext()
File
- ./
block_exclude_pages.module, line 6
Code
function block_exclude_pages_blockhelptext() {
$description = "<ul>";
$description .= "<li>" . t("Specify pages by using their paths. Enter one path per line. Using") . "<em class='placeholder'>node/[nid]</em> " . t("is recommended as pages aliases can change on page editing.") . "</li>";
$description .= "<li>" . t("The '*' character is a wildcard. Example paths are user for the current user's page and user/* for every user page.") . "</li>";
$description .= "<li>" . t("To exclude Specific pages, prefix the path with a '!', Example excluded path") . "<em class='placeholder'>!user/jc</em></li>";
$description .= "</ul>";
$description = $description;
return $description;
}