Clickmap Graphical API and Pain Form
[openemr.git] / interface / forms / painmap / save.php
blob844860843fe86e2515aa2b8b55f27e06249b0e2e
1 <?php
2 /*
3 * Copyright Medical Information Integration,LLC info@mi-squared.com
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version 2
7 * of the License, or (at your option) any later version.
8 */
10 /* include globals.php, required. */
11 require_once('../../globals.php');
13 /* include api.inc. also required. */
14 require_once($GLOBALS['srcdir'].'/api.inc');
16 /* include our smarty derived controller class. */
17 require('C_FormPainMap.class.php');
19 /* Create a form object. */
20 $c = new C_FormPainMap();
22 /* Save the form contents .*/
23 echo $c->default_action_process($_POST);
25 /* return to the encounter. */
26 @formJump();