Multiple improvements from IPPF related to layouts. (#1081)
[openemr.git] / interface / patient_file / encounter / load_form.php
blobbe450eebb6342f2a53596a45ae69f96fb3e31313
1 <?php
2 // This program is free software; you can redistribute it and/or
3 // modify it under the terms of the GNU General Public License
4 // as published by the Free Software Foundation; either version 2
5 // of the License, or (at your option) any later version.
7 $special_timeout = 3600;
8 include_once("../../globals.php");
9 if (substr($_GET["formname"], 0, 3) === 'LBF') {
10 // Use the List Based Forms engine for all LBFxxxxx forms.
11 include_once("$incdir/forms/LBF/new.php");
12 } else {
13 if ((!empty($_GET['pid'])) && ($_GET['pid'] > 0)) {
14 $pid = $_GET['pid'];
15 $encounter = $_GET['encounter'];
18 // ensure the path variable has no illegal characters
19 check_file_dir_name($_GET["formname"]);
21 include_once("$incdir/forms/" . $_GET["formname"] . "/new.php");