You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
518 B
20 lines
518 B
2 years ago
|
<?php
|
||
|
|
||
|
/**
|
||
|
* pid.inc
|
||
|
*
|
||
|
* @package OpenEMR
|
||
|
* @link http://www.open-emr.org
|
||
|
* @author Brady Miller <brady.g.miller@gmail.com>
|
||
|
* @copyright Copyright (c) 2018 Brady Miller <brady.g.miller@gmail.com>
|
||
|
* @license https://github.com/openemr/openemr/blob/master/LICENSE GNU General Public License 3
|
||
|
*/
|
||
|
|
||
|
use OpenEMR\Common\Session\PatientSessionUtil;
|
||
|
|
||
|
// Function called to set the global session variable for patient id (pid) number.
|
||
|
function setpid($new_pid)
|
||
|
{
|
||
|
PatientSessionUtil::setPid($new_pid);
|
||
|
}
|