function tablesorter_help in Tablesorter 8
Same name and namespace in other branches
- 7.2 tablesorter.module \tablesorter_help()
- 7 tablesorter.module \tablesorter_help()
- 3.0.x tablesorter.module \tablesorter_help()
Implements hook_help().
File
- ./
tablesorter.module, line 11 - tablesorter.
Code
function tablesorter_help($route_name) {
switch ($route_name) {
case 'help.page.tablesorter':
return '<p>' . t('Add class "tablesorter" to your Table code like in example given. <table id="myTable" class="tablesorter"> .') . '</p>';
}
}