You are here

function draggableviews_book_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_book/draggableviews_book.module, line 14
Draggableviews Book module provides Book-support.

Code

function draggableviews_book_help($path, $arg) {
  $output = '';
  switch ($path) {
    case "admin/help#draggableviews_book":
      $output = '<p>' . t("Book-support") . '</p>';
      break;
  }
  return $output;
}