Asynchronous customer/supplier/item selection now use popup window.
[fa-stable.git] / includes / page / footer.inc
index a47038e834fe24373793dc280f44ea54a91329a0..da53a925c1e93e63cdafa7b45aa078d10142f5d0 100644 (file)
@@ -1,17 +1,17 @@
 <?php
 /**********************************************************************
     Copyright (C) FrontAccounting, LLC.
-       Released under the terms of the GNU Affero General Public License,
-       AGPL, as published by the Free Software Foundation, either version 
-       of the License, or (at your option) any later version.
+       Released under the terms of the GNU General Public License, GPL, 
+       as published by the Free Software Foundation, either version 3 
+       of the License, or (at your option) any later version.
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
-    See the License here <http://www.gnu.org/licenses/agpl-3.0.html>.
+    See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
 ***********************************************************************/
 function page_footer($no_menu=false, $is_index=false)
 {
-       global $path_to_root;
+       global $path_to_root, $js_lib, $Validate, $Editors;
 
        if (in_ajax())
                return;// just for speed up
@@ -21,6 +21,19 @@ function page_footer($no_menu=false, $is_index=false)
        include_once($path_to_root."/themes/".user_theme()."/renderer.php");
        $rend = new renderer();
        $rend->menu_footer($no_menu, $is_index);
+
+       echo "<script>
+               _focus = '" . get_post('_focus') . "';
+               _validate = " . JsHttpRequest::php2js($Validate).";
+               var editors = ".JsHttpRequest::php2js($Editors).";
+       </script>";
+
+       add_user_js_data();
+       echo "\n<script type=\"text/javascript\"><!--\n";
+
+       foreach($js_lib as $text)
+               echo $text;
+       echo "\n--></script>\n";
     echo "</body></html>\n";
 }