view core/modules/book/tests/modules/book_test/book_test.module @ 9:1fc0ff908d1f

Add another data file
author Chris Cannam
date Mon, 05 Feb 2018 12:34:32 +0000
parents 4c8ae668cc8c
children 129ea1e6d783
line wrap: on
line source
<?php

/**
 * @file
 * Test module for testing the book module.
 *
 * This module's functionality depends on the following state variables:
 * - book_test.debug_book_navigation_cache_context: Used in NodeQueryAlterTest to enable the
 *   node_access_all grant realm.
 *
 * @see \Drupal\book\Tests\BookTest::testBookNavigationCacheContext()
 */

/**
 * Implements hook_page_attachments().
 */
function book_test_page_attachments(array &$page) {
  $page['#cache']['tags'][] = 'book_test.debug_book_navigation_cache_context';
  if (\Drupal::state()->get('book_test.debug_book_navigation_cache_context', FALSE)) {
    drupal_set_message(\Drupal::service('cache_contexts_manager')->convertTokensToKeys(['route.book_navigation'])->getKeys()[0]);
  }
}