function outdatedbrowser_page_bottom in Outdated Browser 8
Implements hook_page_bottom().
File
- ./
outdatedbrowser.module, line 33 - Outdated Browser module file.
Code
function outdatedbrowser_page_bottom(array &$page_bottom) {
if (!_outdatedbrowser_is_active()) {
return;
}
$page_bottom['outdatedbrowser'] = array(
'#markup' => '<div id="outdated"></div>',
);
}