You are here

function draggableviews_cck_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_cck/draggableviews_cck.module, line 14
Draggableviews CCK module provides CCK-support for order fields.

Code

function draggableviews_cck_help($path, $arg) {
  $output = '';
  switch ($path) {
    case "admin/help#draggableviews_cck":
      $output = '<p>' . t("CCK-support for order fields") . '</p>';
      break;
  }
  return $output;
}