class ViewsTestDataThemeHooks

Same name and namespace in other branches
  1. 11.x core/modules/views/tests/modules/views_test_data/src/Hook/ViewsTestDataThemeHooks.php \Drupal\views_test_data\Hook\ViewsTestDataThemeHooks

Hook implementations for views_test_data.

Hierarchy

Expanded class hierarchy of ViewsTestDataThemeHooks

File

core/modules/views/tests/modules/views_test_data/src/Hook/ViewsTestDataThemeHooks.php, line 12

Namespace

Drupal\views_test_data\Hook
View source
class ViewsTestDataThemeHooks {
  
  /**
   * Implements hook_preprocess_HOOK() for views table templates.
   */
  public function preprocessViewsViewTable(&$variables) : void {
    if ($variables['view']->storage
      ->id() == 'test_view_render') {
      $views_render_test = \Drupal::state()->get('views_render.test');
      $views_render_test++;
      \Drupal::state()->set('views_render.test', $views_render_test);
    }
  }
  
  /**
   * Prepares variables for the mapping row style test templates.
   *
   * Default template: views-view-mapping-test.html.twig.
   *
   * @param array $variables
   *   An associative array containing:
   *   - rows: A list of view rows.
   *   - options: Various view options, including the row style mapping.
   *   - view: The view object.
   */
  public function preprocessViewsViewMappingTest(array &$variables) : void {
    $variables['element'] = [];
    foreach ($variables['rows'] as $delta => $row) {
      $fields = [];
      foreach ($variables['options']['mapping'] as $type => $field_names) {
        if (!is_array($field_names)) {
          $field_names = [
            $field_names,
          ];
        }
        foreach ($field_names as $field_name) {
          if ($value = $variables['view']->style_plugin
            ->getField($delta, $field_name)) {
            $fields[$type . '-' . $field_name] = $type . ':' . $value;
          }
        }
      }
      // If there are no fields in this row, skip to the next one.
      if (empty($fields)) {
        continue;
      }
      // Build a container for the row.
      $variables['element'][$delta] = [
        '#type' => 'container',
        '#attributes' => [
          'class' => [
            'views-row-mapping-test',
          ],
        ],
      ];
      // Add each field to the row.
      foreach ($fields as $key => $render) {
        $variables['element'][$delta][$key] = [
          '#children' => $render,
          '#type' => 'container',
          '#attributes' => [
            'class' => [
              $key,
            ],
          ],
        ];
      }
    }
  }

}

Members

Title Sort descending Modifiers Object type Summary
ViewsTestDataThemeHooks::preprocessViewsViewMappingTest public function Prepares variables for the mapping row style test templates.
ViewsTestDataThemeHooks::preprocessViewsViewTable public function Implements hook_preprocess_HOOK() for views table templates.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.