Highway to PSR2
[openemr.git] / services / ChartTrackerService.php
blobdb7a4defeee398b2c4945ae9924150530d84d1d2
1 <?php
2 /**
3 * Chart tracker service.
5 * Copyright (C) 2017 Victor Kofia <victor.kofia@gmail.com>
7 * LICENSE: This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://opensource.org/licenses/gpl-license.php>;.
18 * @package OpenEMR
19 * @author Victor Kofia <victor.kofia@gmail.com>
20 * @link http://www.open-emr.org
23 namespace services;
25 class ChartTrackerService
28 /**
29 * Logger used primarily for logging events that are of interest to
30 * developers.
32 private $logger;
34 /**
35 * The chart tracker repository to be used for db CRUD operations.
37 private $repository;
39 /**
40 * Default constructor.
42 public function __construct()
44 $this->logger = new \common\logging\Logger("\services\ChartTrackerService");
45 $database = \common\database\Connector::Instance();
46 $entityManager = $database->entityManager;
47 $this->repository = $entityManager->getRepository('\entities\ChartTracker');
50 /**
51 * Add chart tracker table entry.
53 * @param array (pid, date, userid, location).
54 * @return the pid.
56 public function trackPatientLocation($patientLocation)
58 $patientLocation->setPid(add_escape_custom($patientLocation->getPid()));
59 $patientLocation->setUserId(add_escape_custom($patientLocation->getUserId()));
60 $patientLocation->setLocation(add_escape_custom($patientLocation->getLocation()));
61 $this->logger->debug('Attempting to track patient location');
62 $this->repository->save($patientLocation);