feat: expose suffix and valedictory in user admin and esign (#6814)
[openemr.git] / library / ESign / SignatureIF.php
blob37f6dffa87b4a174da44e95567c5e445c7aa014b
1 <?php
3 /**
4 * SignatureIF interface
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 namespace ESign;
27 require_once $GLOBALS['srcdir'] . '/ESign/VerifiableIF.php';
29 interface SignatureIF extends VerifiableIF
31 const ESIGN_NOLOCK = 0;
32 const ESIGN_LOCK = 1;
34 public function getId();
35 public function getUid();
36 public function getFirstName();
37 public function getLastName();
38 public function getValedictory();
39 public function getDatetime();
40 public function isLock();
41 public function getAmendment();