You are here

function views_crosstab_field_options in Views Crosstab 6

Same name and namespace in other branches
  1. 7 views_crosstab.module \views_crosstab_field_options()

Keep the keys/names of our main field options in one place.

1 call to views_crosstab_field_options()
theme_views_crosstab_ui_table in ./theme.inc
Theme the form for the crosstab table style plugin.

File

./views_crosstab.module, line 60

Code

function views_crosstab_field_options() {
  return array(
    'crosstab_rows' => t('Crosstab rows'),
    'crosstab_columns' => t('Crosstab columns'),
    'crosstab_data' => t('Crosstab data'),
  );
}