You are here

function _table_altrow_tips in Table Alternate Rows 7

Filter tips callback.

File

./table_altrow.module, line 73
Insert even and odd classes for tables via input filters to allow for proper zebra-style striping.

Code

function _table_altrow_tips($filter, $format, $long = FALSE) {
  if ($long) {
    return t('Tables will be rendered with different styles for even and odd rows if supported.');
  }
}