function hook_page_bottom in Drupal 10
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Render/theme.api.php \hook_page_bottom()
- 9 core/lib/Drupal/Core/Render/theme.api.php \hook_page_bottom()
Add a renderable array to the bottom of the page.
Parameters
array $page_bottom: A renderable array representing the bottom of the page.
Related topics
2 functions implement hook_page_bottom()
Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.
- theme_test_page_bottom in core/
modules/ system/ tests/ modules/ theme_test/ theme_test.module - Implements hook_page_bottom().
- tour_page_bottom in core/
modules/ tour/ tour.module - Implements hook_page_bottom().
File
- core/
lib/ Drupal/ Core/ Render/ theme.api.php, line 1080 - Hooks and documentation related to the theme and render system.
Code
function hook_page_bottom(array &$page_bottom) {
$page_bottom['mymodule'] = [
'#markup' => 'This is the bottom.',
];
}