You are here

function views_dependent_filters_views_api in Views Dependent Filters 7

Implements hook_views_api().

File

./views_dependent_filters.module, line 13
views_dependent_filters.module Provides a Views exposed filter which makes other filters depend on values in yet further filters for their visiblity and processing. For example: if the 'node type' filter is set to 'article', show a…

Code

function views_dependent_filters_views_api() {
  return array(
    'api' => 3,
    'path' => drupal_get_path('module', 'views_dependent_filters'),
  );
}