You are here

function theme_test_page_bottom in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/system/tests/modules/theme_test/theme_test.module \theme_test_page_bottom()

Implements hook_page_bottom().

File

core/modules/system/tests/modules/theme_test/theme_test.module, line 76
Test module.

Code

function theme_test_page_bottom(array &$page_bottom) {
  $page_bottom['theme_test_page_bottom'] = [
    '#markup' => 'theme test page bottom markup',
  ];
}