fix: add missing use statement in facility admin script (#7428)
[openemr.git] / interface / patient_file / summary / patient_reminders_fragment.php
blob4e24e5d2c59446df5d002392873ce9f36bf523d9
1 <?php
3 /**
4 * This simply shows the Clinical Reminder Widget
6 * @package OpenEMR
7 * @link http://www.open-emr.org
8 * @author Brady Miller <brady.g.miller@gmail.com>
9 * @copyright Copyright (c) 2010-2018 Brady Miller <brady.g.miller@gmail.com>
10 * @license https://github.com/openemr/openemr/blob/master/LICENSE GNU General Public License 3
13 require_once(dirname(__FILE__) . "/../../globals.php");
14 require_once("$srcdir/reminders.php");
16 use OpenEMR\Common\Csrf\CsrfUtils;
18 if (!CsrfUtils::verifyCsrfToken($_POST["csrf_token_form"])) {
19 CsrfUtils::csrfNotVerified();
22 patient_reminder_widget($pid);