Fixed many issues in output HTML code according to HTML 4.01 Transitional format.
[fa-stable.git] / includes / page / footer.inc
1 <?php
2 /**********************************************************************
3     Copyright (C) FrontAccounting, LLC.
4         Released under the terms of the GNU General Public License, GPL, 
5         as published by the Free Software Foundation, either version 3 
6         of the License, or (at your option) any later version.
7     This program is distributed in the hope that it will be useful,
8     but WITHOUT ANY WARRANTY; without even the implied warranty of
9     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
10     See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
11 ***********************************************************************/
12 function page_footer($no_menu=false, $is_index=false)
13 {
14         global $path_to_root, $js_lib, $Validate, $Editors, $Ajax, $sql_queries;
15
16         $page_header_args = func_get_args();
17         hook_invoke_all('pre_footer', $page_header_args);
18
19         include_once($path_to_root."/themes/".user_theme()."/renderer.php");
20         $rend = new renderer();
21         $rend->menu_footer($no_menu, $is_index);
22
23         $edits = "editors = ".$Ajax->php2js($Editors).";";
24         $Ajax->addScript('editors', $edits);
25
26         echo "<script type='text/javascript'>
27                 _focus = '" . get_post('_focus') . "';
28                 _validate = " . $Ajax->php2js($Validate).";
29                 var $edits
30         </script>";
31
32         add_user_js_data();
33         echo "\n<script type=\"text/javascript\"><!--\n";
34
35         foreach($js_lib as $text)
36                 echo $text;
37         echo "\n--></script>\n";
38
39         if ($sql_queries) {
40                 div_start('footer_debug');
41                  echo "<div class='note_msg'>$sql_queries</div>";
42                 div_end();
43         }
44     echo "</body></html>\n";
45 }
46
47 ?>