Add back popup dialogs for tabs U.I. (#1434)
[openemr.git] / interface / forms / newGroupEncounter / view.php
blob69a55de18f5dcc9482ca08799f0535e49d8e7073
1 <?php
2 /**
3 * Encounter form view script.
5 * LICENSE: This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version 2
8 * of the License, or (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://opensource.org/licenses/gpl-license.php>;.
16 * @package OpenEMR
17 * @author Brady Miller <brady.g.miller@gmail.com>
18 * @link http://www.open-emr.org
24 include_once("../../globals.php");
25 include_once("$srcdir/acl.inc");
26 include_once("$srcdir/lists.inc");
28 $disabled = "disabled";
30 // If we are allowed to change encounter dates...
31 if (acl_check('encounters', 'date_a')) {
32 $disabled = "";
35 $viewmode = true;
36 require_once("common.php");