function theme_test_page_bottom in Drupal 8
Same name and namespace in other branches
- 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 76 - Test module.
Code
function theme_test_page_bottom(array &$page_bottom) {
$page_bottom['theme_test_page_bottom'] = [
'#markup' => 'theme test page bottom markup',
];
}