Same name and namespace in other branches
  1. 8.9.x core/modules/system/tests/modules/theme_test/theme_test.module \theme_test_page_bottom()
  2. 9 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 116
Test module.

Code

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