You are here

function table_altrow_filter_info in Table Alternate Rows 7

Implements hook_filter_info().

File

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

Code

function table_altrow_filter_info() {
  $filters = array();
  $filters['table_altrow'] = array(
    'title' => t('Add even and odd classes to table rows'),
    'process callback' => '_table_altrow_process',
    'tips callback' => 'table_altrow_tips',
  );
  return $filters;
}