You are here

function draggableviews_help in DraggableViews 6.3

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

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

./draggableviews.module, line 31
Draggableviews module provides a style plugin for views. With this plugin rows become draggable and can be organized in complex structures.

Code

function draggableviews_help($path, $arg) {
  $output = '';
  switch ($path) {
    case "admin/help#draggableviews":
      $output = '<p>' . t("Makes views draggable.") . '</p>';
      break;
  }
  return $output;
}