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.
111 lines
3.3 KiB
111 lines
3.3 KiB
<?php |
|
|
|
/** |
|
* interface/therapy_groups/therapy_groups_models/users_model.php contains the model for users. |
|
* |
|
* This model fetches the users data to be used for the therapy group from the DB. |
|
* |
|
* Copyright (C) 2016 Shachar Zilbershlag <shaharzi@matrix.co.il> |
|
* Copyright (C) 2016 Amiel Elboim <amielel@matrix.co.il> |
|
* |
|
* LICENSE: This program is free software; you can redistribute it and/or |
|
* modify it under the terms of the GNU General Public License |
|
* as published by the Free Software Foundation; either version 3 |
|
* of the License, or (at your option) any later version. |
|
* This program is distributed in the hope that it will be useful, |
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
* GNU General Public License for more details. |
|
* You should have received a copy of the GNU General Public License |
|
* along with this program. If not, see <http://opensource.org/licenses/gpl-license.php>;. |
|
* |
|
* @package OpenEMR |
|
* @author Shachar Zilbershlag <shaharzi@matrix.co.il> |
|
* @author Amiel Elboim <amielel@matrix.co.il> |
|
* @link http://www.open-emr.org |
|
*/ |
|
|
|
class Users |
|
{ |
|
const TABLE = 'users'; |
|
const EVENTS_TABLE = 'openemr_postcalendar_events'; |
|
|
|
/** |
|
* Get all users' ids and full names from users table. |
|
* @return array |
|
*/ |
|
public function getAllUsers() |
|
{ |
|
|
|
$sql = 'SELECT id, fname, lname FROM ' . self::TABLE . ' WHERE active = 1'; |
|
|
|
$users = array(); |
|
$result = sqlStatement($sql); |
|
while ($u = sqlFetchArray($result)) { |
|
$users[] = $u; |
|
} |
|
|
|
return $users; |
|
} |
|
|
|
/** |
|
* Get user name by user id from users table. |
|
* @param $uid |
|
* @return string |
|
*/ |
|
public function getUserNameById($uid) |
|
{ |
|
$sql = 'SELECT fname, lname FROM ' . self::TABLE . ' WHERE id = ?'; |
|
|
|
$user_name = sqlQuery($sql, array($uid)); |
|
$user_full_name = $user_name['fname'] . " " . $user_name['lname']; |
|
|
|
return $user_full_name; |
|
} |
|
|
|
/** |
|
* Get all providers of event. |
|
* @param $eid |
|
* @return array |
|
*/ |
|
public function getProvidersOfEvent($eid) |
|
{ |
|
|
|
$multiple = $this->checkIfMultiple($eid); |
|
if ($multiple > 0) { |
|
$sql = "SELECT pc_aid From " . self::EVENTS_TABLE . " WHERE pc_multiple = ?"; |
|
$result = sqlStatement($sql, array($multiple)); |
|
while ($p = sqlFetchArray($result)) { |
|
$providers[] = $p['pc_aid']; |
|
} |
|
|
|
return $providers; |
|
} else { |
|
$sql = "SELECT pc_aid From " . self::EVENTS_TABLE . " WHERE pc_eid = ?"; |
|
$result = sqlStatement($sql, array($eid)); |
|
while ($p = sqlFetchArray($result)) { |
|
$providers[] = $p['pc_aid']; |
|
} |
|
|
|
return $providers; |
|
} |
|
} |
|
|
|
|
|
/** |
|
* Checks if event has multiple providers and if so returns the key of 'multiple providers'. |
|
* @param $eid |
|
* @return bool|ADORecordSet_mysqli |
|
*/ |
|
private function checkIfMultiple($eid) |
|
{ |
|
|
|
$sql = "SELECT pc_multiple FROM " . self::EVENTS_TABLE . " WHERE pc_eid = ?"; |
|
$result = sqlQuery($sql, array($eid)); |
|
if ($result['pc_multiple'] == 0) { |
|
return false; |
|
} |
|
|
|
return $result['pc_multiple']; |
|
} |
|
}
|
|
|