You are here

function table_altrow_filter_tips in Table Alternate Rows 6

Same name and namespace in other branches
  1. 5 table_altrow.module \table_altrow_filter_tips()

Implementation of hook_filter_tips

File

./table_altrow.module, line 10

Code

function table_altrow_filter_tips($delta, $format, $long = FALSE) {
  switch ($delta) {
    case 0:
      if ($long) {
        return t('Tables will be rendered with different styles for even and odd rows if supported.');
      }
      else {
        return t('Tables will be rendered with different styles for even and odd rows if supported.');
      }
      break;
  }
}