You are here

zurb_responsive_tables.module in Zurb Responsive Tables 7

Provides the Zurb responsive tables library for all tables site wide. @TODO Add configuration page to select specific tables.

File

zurb_responsive_tables.module
View source
<?php

/**
 * @file
 * Provides the Zurb responsive tables library for all tables site wide.
 * @TODO
 * Add configuration page to select specific tables.
 */

/**
 * Implements hook_help().
 */
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;
  }
}

Functions

Namesort descending Description
zurb_responsive_tables_help Implements hook_help().