You are here

function tablesorter_help in Tablesorter 7.2

Same name and namespace in other branches
  1. 8 tablesorter.module \tablesorter_help()
  2. 7 tablesorter.module \tablesorter_help()
  3. 3.0.x tablesorter.module \tablesorter_help()

Implements hook_help().

File

./tablesorter.module, line 11
tablesorter.

Code

function tablesorter_help($path, $arg) {
  switch ($path) {
    case 'admin/help#tablesorter':
      return '<p>' . t('Add class "tablesorter" to your Table code like in example given. <table id="myTable" class="tablesorter"> .') . '</p>';
      break;
  }
}