preparing for 5.0.1 release in several weeks (#1509)
[openemr.git] / library / ESign / ConfigurationIF.php
blob45bec1d1e58b72c5f074306188d52989991f79cb
1 <?php
3 /**
4 * Interface for the ESign configuration. You can convert this object
5 * to JSON and pass it to the jquery.esign.js plugin to override default settings.
7 * Copyright (C) 2013 OEMR 501c3 www.oemr.org
9 * LICENSE: This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version 3
12 * of the License, or (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <http://opensource.org/licenses/gpl-license.php>;.
20 * @package OpenEMR
21 * @author Ken Chapple <ken@mi-squared.com>
22 * @author Medical Information Integration, LLC
23 * @link http://www.open-emr.org
24 **/
26 namespace ESign;
28 interface ConfigurationIF
30 public function getBaseUrl();
31 public function getModule();
32 public function getLogViewAction();
33 public function getFormViewAction();
34 public function getFormSubmitAction();