You are here

function draggableviews_help in DraggableViews 6.2

Same name and namespace in other branches
  1. 6.3 draggableviews.module \draggableviews_help()
  2. 6 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: * @param arg array that holds the current path as would be returned from arg() function * @return help text for the path

File

./draggableviews.module, line 10

Code

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