You are here

views_filters_populate.module in Views filters populate 8

Same filename and directory in other branches
  1. 6 views_filters_populate.module
  2. 7 views_filters_populate.module

File

views_filters_populate.module
View source
<?php

/**
 * Implementation of hook_views_data().
 */
function views_filters_populate_views_data() {
  $data['views_filters_populate']['table']['group'] = t('Global');
  $data['views_filters_populate']['table']['join'] = [
    '#global' => [],
  ];
  $data['views_filters_populate']['populate'] = [
    'title' => t('Populate filters'),
    'help' => t('Populate other filters with the value of this filter.'),
    'filter' => [
      'id' => 'views_filters_populate',
    ],
  ];
  return $data;
}

Functions

Namesort descending Description
views_filters_populate_views_data Implementation of hook_views_data().