You are here

function block_exclude_pages_blockhelptext in Block Exclude Pages 7

Same name and namespace in other branches
  1. 8 block_exclude_pages.module \block_exclude_pages_blockhelptext()
  2. 2.x block_exclude_pages.module \block_exclude_pages_blockhelptext()

Doc function returns the help markup.

1 call to block_exclude_pages_blockhelptext()
block_exclude_pages_form_block_admin_configure_alter in ./block_exclude_pages.module
Implements hook_form_FORM_ID_alter().

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;
}