You are here

function draggableviews_taxonomy_help in DraggableViews 6.3

Display help and module information

Parameters

path which path of the site we're displaying help:

arg array that holds the current path as would be returned from arg() function:

Return value

help text for the path

File

modules/draggableviews_taxonomy/draggableviews_taxonomy.module, line 14
DraggableViews taxonomy module provides taxonomy support for both order fields and parent fields.

Code

function draggableviews_taxonomy_help($path, $arg) {
  $output = '';
  switch ($path) {
    case "admin/help#draggableviews_taxonomy":
      $output = '<p>' . t("Taxonomy support for both order fields and parent fields.") . '</p>';
      $output .= '<p>' . t("Hint: Use Views relations to turn the Taxonomy: Term ID field into a parent field.") . '</p>';
      break;
  }
  return $output;
}