sql-injection fix in demographics
[openemr.git] / library / ESign / FactoryIF.php
blobe63565de86222fe5c22ea35ebbbdcb2df16b7283
1 <?php
3 namespace ESign;
5 /**
6 * FactoryIF interface represents an object that is capable
7 * of creating a complete ESign object. Used by the Api class
8 * to assemble the ESign object.
9 *
10 * @see \Esign\Api::createESign( FactoryIF $factory )
12 * Copyright (C) 2013 OEMR 501c3 www.oemr.org
14 * LICENSE: This program is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU General Public License
16 * as published by the Free Software Foundation; either version 3
17 * of the License, or (at your option) any later version.
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 * You should have received a copy of the GNU General Public License
23 * along with this program. If not, see <http://opensource.org/licenses/gpl-license.php>;.
25 * @package OpenEMR
26 * @author Ken Chapple <ken@mi-squared.com>
27 * @author Medical Information Integration, LLC
28 * @link http://www.open-emr.org
29 **/
31 interface FactoryIF
33 /**
34 * Returns an instance of ConfigurationIF
36 public function createConfiguration();
38 /**
39 * Returns an instance of SignableIF
41 public function createSignable();
43 /**
44 * Returns an instance of ButtonIF
46 public function createButton();
48 /**
49 * Returns an instance of LogIF
51 public function createLog();