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