Feature to add drug-drug interaction checking for the
[openemr.git] / interface / esign / index.php
blob5bca8d2b1f21d23cdb55f1fdf48443cd4b92e2b0
1 <?php
2 /**
3 * Instanciate a router and route the interface request to the appropriate
4 * controller and method in the ESign/ library directory.
5 *
6 * Copyright (C) 2013 OEMR 501c3 www.oemr.org
8 * LICENSE: This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version 3
11 * of the License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://opensource.org/licenses/gpl-license.php>;.
19 * @package OpenEMR
20 * @author Ken Chapple <ken@mi-squared.com>
21 * @author Medical Information Integration, LLC
22 * @link http://www.open-emr.org
23 **/
25 use ESign\Router;
26 //SANITIZE ALL ESCAPES
27 $sanitize_all_escapes=true;
28 //STOP FAKE REGISTER GLOBALS
29 $fake_register_globals=false;
30 require_once "../globals.php";
31 require_once $GLOBALS['srcdir']."/ESign/Router.php";
32 $router = new Router();
33 $router->route();