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