You are here

function taxonomy_menu_help in Taxonomy menu 5

Same name and namespace in other branches
  1. 8.3 taxonomy_menu.module \taxonomy_menu_help()
  2. 8 taxonomy_menu.module \taxonomy_menu_help()
  3. 7.2 taxonomy_menu.module \taxonomy_menu_help()
  4. 7 taxonomy_menu.module \taxonomy_menu_help()

Implementation of hook_help().

File

./taxonomy_menu.module, line 56
taxonomy_menu.module @author Jonathan Chaffer <jchaffer@structureinteractive.com> @author Bruno Massa <http://drupal.org/user/67164> It Generates menu links for all taxonomy terms

Code

function taxonomy_menu_help($section) {
  switch ($section) {
    case 'admin/help#taxonomy_menu':
      $output = '<p>' . t('Taxonomy terms allow classification of content into categories and subcategories.  The taxonomy menu module adds links to the navigation menu for taxonomy terms.  This is useful when the community is focused on creating content that is organized in a taxonomy.') . '</p>' . '<p>' . t('The taxonomy menu administration interface allows taxonomy terms to be enabled to show in the navigation menu.  You can also select whether a term\'s descendents subterms are displayed.') . '</p>' . t('<p>You can</p>
<ul>
<li>view a list of taxonomies in <a href="@admin-taxonomy">Administer &gt;&gt; Content management &gt;&gt; Categories</a>.</li>
<li>create a new vocabulary at <a href="@admin-taxonomy-add-vocabulary">Administer &gt;&gt; Content management &gt;&gt; Categories &gt;&gt; Add vocabulary</a>.</li>
</ul>', array(
        '@admin-taxonomy' => url('admin/content/taxonomy'),
        '@admin-taxonomy-add-vocabulary' => url('admin/content/taxonomy/add/vocabulary'),
      )) . '<p>' . t('For more information please read the configuration and customization handbook <a href="@taxonomy_menu">Taxonomy menu page</a>.', array(
        '@taxonomy_menu' => 'http://www.drupal.org/handbook/modules/taxonomy_menu/',
      )) . '</p>';
      return $output;
  }
}