diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-07-27 18:38:35 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-07-27 18:38:35 +0000 |
commit | 7d41b2d7f5eed4fa274a948fa2c96d150f453f0e (patch) | |
tree | 404f8bc0a9165132387439a40b02fc4539f8f82e /modules/system/system.api.php | |
parent | 9381abb7c3374e450c048ce809c95f15eec98aa1 (diff) | |
download | brdo-7d41b2d7f5eed4fa274a948fa2c96d150f453f0e.tar.gz brdo-7d41b2d7f5eed4fa274a948fa2c96d150f453f0e.tar.bz2 |
- Patch #519782 by tic2000: change to become a hidden region like page_top.
Diffstat (limited to 'modules/system/system.api.php')
-rw-r--r-- | modules/system/system.api.php | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/modules/system/system.api.php b/modules/system/system.api.php index 8986270b2..774370035 100644 --- a/modules/system/system.api.php +++ b/modules/system/system.api.php @@ -161,26 +161,6 @@ function hook_exit($destination = NULL) { } /** - * Insert closing HTML. - * - * This hook enables modules to insert HTML just before the \</body\> closing - * tag of web pages. This is useful for adding JavaScript code to the footer - * and for outputting debug information. It is not possible to add JavaScript - * to the header at this point, and developers wishing to do so should use - * hook_init() instead. - * - * @param $main - * Whether the current page is the front page of the site. - * @return - * The HTML to be inserted. - */ -function hook_footer($main = 0) { - if (variable_get('dev_query', 0)) { - return '<div style="clear:both;">' . devel_query_table() . '</div>'; - } -} - -/** * Perform necessary alterations to the JavaScript before it is presented on * the page. * |