feat: show collection balance in billing widget (#7454)
[openemr.git] / interface / forms / painmap / save.php
blob7e13f8f2e54c3c3038203414ba849094d0310130
1 <?php
3 /**
4 * painmap save.php
6 * @package OpenEMR
7 * @link http://www.open-emr.org
8 * @copyright Copyright Medical Information Integration,LLC <info@mi-squared.com>
9 * @license https://github.com/openemr/openemr/blob/master/LICENSE GNU General Public License 3
12 /* include globals.php, required. */
13 require_once('../../globals.php');
15 /* include api.inc.php. also required. */
16 require_once($GLOBALS['srcdir'] . '/api.inc.php');
18 /* include our smarty derived controller class. */
19 require('C_FormPainMap.class.php');
21 /* Create a form object. */
22 $c = new C_FormPainMap();
24 /* Save the form contents .*/
25 echo $c->default_action_process($_POST);
27 /* return to the encounter. */
28 @formJump();