You are here

function views_crosstab_field_options in Views Crosstab 7

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

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

2 calls to views_crosstab_field_options()
theme_views_crosstab_ui_table in ./theme.inc
Theme the form for the crosstab table style plugin.
views_crosstab_table::options_validate in plugins/views_crosstab_table.inc
Validate the options form.

File

./views_crosstab.module, line 33
views_crosstab module file

Code

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