class TestSubthemeHooks

Same name and namespace in other branches
  1. 11.x core/modules/system/tests/themes/test_subtheme/src/Hook/TestSubthemeHooks.php \Drupal\test_subtheme\Hook\TestSubthemeHooks

Hook implementations for test_subtheme.

Hierarchy

Expanded class hierarchy of TestSubthemeHooks

File

core/modules/system/tests/themes/test_subtheme/src/Hook/TestSubthemeHooks.php, line 15

Namespace

Drupal\test_subtheme\Hook
View source
class TestSubthemeHooks {
  use StringTranslationTrait;
  
  /**
   * Implements hook_views_pre_render().
   */
  public function viewsPreRender(ViewExecutable $view) : void {
    // We append the function name to the title for test to check for.
    $view->setTitle($view->getTitle() . ":" . 'test_subtheme_views_pre_render');
  }
  
  /**
   * Implements hook_views_post_render().
   */
  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_subtheme_views_post_render');
    if ($view->id() == 'test_page_display') {
      $output['#rows'][0]['#title'] = $this->t('%total_rows items found.', [
        '%total_rows' => $view->total_rows,
      ]);
    }
  }
  
  /**
   * Implements hook_preprocess_HOOK() for theme_test_template_test templates.
   */
  public function preprocessThemeTestTemplateTest(&$variables) : void {
  }

}

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