You are here

function unique_node_title_help in Unique Content Title 7

Implements hook_help().

File

./unique_node_title.module, line 11
Alter content type and node form hooks.

Code

function unique_node_title_help($path, $arg) {
  switch ($path) {
    case 'admin/help#unique_node_title':
      $output = t("Unique node title module provides a facility");
      $output .= t(" to validate uniqueness of each node of");
      $output .= t(" specific content type.");
      $output .= t("Unique node title setting is available under");
      $output .= t("&nbsp;<em>submission form settings</em> of content type.");
      return $output;
  }
}