function tabledrag_example_help in Examples for Developers 7
Same name and namespace in other branches
- 8 tabledrag_example/tabledrag_example.module \tabledrag_example_help()
- 3.x modules/tabledrag_example/tabledrag_example.module \tabledrag_example_help()
Implements hook_help().
Show a bit of information about this module on the example page.
Related topics
File
- tabledrag_example/
tabledrag_example.module, line 19 - An example of how to build a sortable form using tabledrag.
Code
function tabledrag_example_help($path, $arg) {
switch ($path) {
case 'examples/tabledrag_example':
return '<p>' . t('The form here is a themed as a table that is sortable using tabledrag handles.') . '</p>';
}
}