Merge pull request #2131 from sjpadgett/portal-tables
[openemr.git] / interface / esign / index.php
blobbdd19480f6559ac00378cfaad5f062bea2ddfee8
1 <?php
2 /**
3 * Instanciate a router and route the interface request to the appropriate
4 * controller and method in the ESign/ library directory.
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;
27 require_once "../globals.php";
28 require_once $GLOBALS['srcdir']."/ESign/Router.php";
29 $router = new Router();
30 $router->route();