function TestBaseThemeHooks::viewsPostRender

Same name and namespace in other branches
  1. main core/modules/system/tests/themes/test_base_theme/src/Hook/TestBaseThemeHooks.php \Drupal\test_base_theme\Hook\TestBaseThemeHooks::viewsPostRender()

Implements hook_views_post_render().

Attributes

#[Hook('views_post_render')]

File

core/modules/system/tests/themes/test_base_theme/src/Hook/TestBaseThemeHooks.php, line 28

Class

TestBaseThemeHooks
Hook implementations for test_base_theme.

Namespace

Drupal\test_base_theme\Hook

Code

public function viewsPostRender(ViewExecutable $view, &$output, CachePluginBase $cache) : void {
  // We append the function name to the title for test to check for.
  $view->setTitle($view->getTitle() . ":" . 'test_base_theme_views_post_render');
}

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