You are here

function spaces_views_data_alter in Spaces 6.2

Same name and namespace in other branches
  1. 6.3 includes/spaces.views.inc \spaces_views_data_alter()
  2. 6 includes/spaces.views.inc \spaces_views_data_alter()
  3. 7.3 includes/spaces.views.inc \spaces_views_data_alter()
  4. 7 includes/spaces.views.inc \spaces_views_data_alter()

Implementation of hook_views_data_alter().

File

includes/spaces.views.inc, line 100

Code

function spaces_views_data_alter(&$data) {

  // Add type filter by current feature.
  $data['node']['feature'] = array(
    'group' => t('Spaces'),
    'title' => t('Node type in current feature'),
    'help' => t('Filters on node types associated with the current spaces feature.'),
    'filter' => array(
      'field' => 'type',
      'handler' => 'spaces_handler_filter_spaces_feature',
    ),
  );
}