You are here

function table_altrow_filter_tips in Table Alternate Rows 5

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

Implementation of hook_filter_tips

File

./table_altrow.module, line 11

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;
  }
}