function draggableviews_help in DraggableViews 7
Same name and namespace in other branches
- 6.3 draggableviews.module \draggableviews_help()
- 6 draggableviews.module \draggableviews_help()
- 6.2 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 32 - 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;
}