You are here

function taxonomy_defaults_help in Taxonomy Defaults 5

Same name and namespace in other branches
  1. 6.2 taxonomy_defaults.module \taxonomy_defaults_help()
  2. 6 taxonomy_defaults.module \taxonomy_defaults_help()
  3. 7 taxonomy_defaults.module \taxonomy_defaults_help()

Implementation of hook_help().

File

./taxonomy_defaults.module, line 14
Taxonomy defaults - allows assignment of default terms to node types, either

Code

function taxonomy_defaults_help($section) {
  switch ($section) {
    case 'admin/content/taxonomy/taxonomy_defaults':
      $output = '<p>' . t("Below you may select default terms for each content type. Check the 'active' box next to the vocabulary, then select the terms.") . '</p>';
      $output .= '<p>' . t('If <strong>not active</strong>, this vocabulary is not enabled for this content type (on the <a href="@url">categories page</a>). The terms will be added to the content without appearing on the add and edit pages.', array(
        '@url' => url('admin/content/taxonomy'),
      )) . '</p>';
      $output .= '<p>' . t('If <strong>active</strong>, these taxonomy terms will simply be pre-selected on the submission page for this content type.') . '</p>';
      return $output;
  }
}