function zurb_responsive_tables_help in Zurb Responsive Tables 7
Implements hook_help().
File
- ./
zurb_responsive_tables.module, line 13 - Provides the Zurb responsive tables library for all tables site wide. @TODO Add configuration page to select specific tables.
Code
function zurb_responsive_tables_help($path, $arg) {
switch ($path) {
case 'admin/help#zurb-responsive-tables':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('The Zurb Responsive Tables module simply adds a class to all tables site wide, to make them responsive without needing to hide any columns.') . '</p>';
return $output;
}
}