You are here

function taxonomy_edge_help in Taxonomy Edge 6

Same name and namespace in other branches
  1. 8 taxonomy_edge.module \taxonomy_edge_help()
  2. 7.2 taxonomy_edge.module \taxonomy_edge_help()
  3. 7 taxonomy_edge.module \taxonomy_edge_help()

Implements hook_help().

File

./taxonomy_edge.module, line 67
Selecting all children of a given taxonomy term can be a pain. This module makes it easier to do this, by maintaining a complete list of edges for each term using the adjecency matrix graph theory.

Code

function taxonomy_edge_help($section) {
  switch ($section) {
    case 'admin/help#taxonomy_edge':

      // Return a line-break version of the module README.txt
      return filter_filter('process', 1, NULL, file_get_contents(dirname(__FILE__) . "/README.txt"));
  }
}