updated adodb package to work with php 7.1
[openemr.git] / library / ESign / SignableIF.php
blob86262e7961c531de753f6ed7f8ba8c06bf0197b0
1 <?php
3 namespace ESign;
5 /**
6 * SignableIF Interface represents an object that can be signed, locked
7 * and verified
8 *
9 * Copyright (C) 2013 OEMR 501c3 www.oemr.org
11 * LICENSE: This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version 3
14 * of the License, or (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program. If not, see <http://opensource.org/licenses/gpl-license.php>;.
22 * @package OpenEMR
23 * @author Ken Chapple <ken@mi-squared.com>
24 * @author Medical Information Integration, LLC
25 * @link http://www.open-emr.org
26 **/
28 require_once $GLOBALS['srcdir'].'/ESign/VerifiableIF.php';
30 interface SignableIF extends VerifiableIF
32 public function getSignatures();
33 public function isLocked();
34 public function sign( $userId, $amendment = null );