function template_preprocess_views_ui_display_tab_bucket

template_preprocess_views_ui_display_tab_bucket(&$variables)

Prepares variables for Views UI display tab bucket templates.

Default template: views-ui-display-tab-bucket.html.twig.

Parameters

array $variables: An associative array containing:

  • element: An associative array containing the properties of the element. Properties used: #name, #overridden, #children, #title, #actions.

File

core/modules/views_ui/views_ui.theme.inc, line 55
Preprocessors and theme functions for the Views UI.

Code

function template_preprocess_views_ui_display_tab_bucket(&$variables) {
  $element = $variables['element'];

  if (!empty($element['#overridden'])) {
    $variables['attributes']['title'][] = t('Overridden');
  }

  $variables['name'] = isset($element['#name']) ? $element['#name'] : NULL;
  $variables['overridden'] = isset($element['#overridden']) ? $element['#overridden'] : NULL;
  $variables['content'] = $element['#children'];
  $variables['title'] = $element['#title'];
  $variables['actions'] = !empty($element['#actions']) ? $element['#actions'] : array();
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!modules!views_ui!views_ui.theme.inc/function/template_preprocess_views_ui_display_tab_bucket/8.1.x