function tabledrag_example_help

Same name in other branches
  1. 3.x modules/tabledrag_example/tabledrag_example.module \tabledrag_example_help()
  2. 8.x-1.x tabledrag_example/tabledrag_example.module \tabledrag_example_help()
  3. 4.0.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

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>';
    }
}