0ba9b52a1f56f18bbe0bc39890228f42c0dfd4a9
[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;
15
16         if (in_ajax())
17                 return;// just for speed up
18
19         if (!$is_index && function_exists('hyperlink_back'))
20                 hyperlink_back();
21         include_once($path_to_root."/themes/".user_theme()."/renderer.php");
22         $rend = new renderer();
23         $rend->menu_footer($no_menu, $is_index);
24         echo "<script>
25                 _focus = '" . get_post('_focus') . "';
26                 _validate = " . JsHttpRequest::php2js($Validate).";
27         </script>";
28
29         add_user_js_data();
30         echo "\n<script type=\"text/javascript\"><!--\n";
31
32         foreach($js_lib as $text)
33                 echo $text;
34
35         echo "\n--></script>\n";
36     echo "</body></html>\n";
37 }
38
39 ?>