shifts filter own AngelTypes select only confirmed Angeltypes
This commit is contained in:
parent
7f1f3a773a
commit
34b01fd37d
|
@ -240,13 +240,23 @@ function UserAngelType_by_User_and_AngelType($userId, $angeltype)
|
||||||
* @param int $userId
|
* @param int $userId
|
||||||
* @return array[]|null
|
* @return array[]|null
|
||||||
*/
|
*/
|
||||||
function UserAngelTypes_by_User($userId)
|
function UserAngelTypes_by_User($userId, $onlyConfirmed=false)
|
||||||
{
|
{
|
||||||
return DB::select('
|
return DB::select('
|
||||||
SELECT *
|
SELECT *
|
||||||
FROM `UserAngelTypes`
|
FROM `UserAngelTypes`
|
||||||
|
'.($onlyConfirmed ? 'LEFT JOIN AngelTypes AS a ON a.id=UserAngelTypes.angeltype_id' : '').'
|
||||||
WHERE `user_id`=?
|
WHERE `user_id`=?
|
||||||
',
|
'
|
||||||
|
. (
|
||||||
|
$onlyConfirmed ? 'AND (
|
||||||
|
a.`restricted`=0
|
||||||
|
OR (
|
||||||
|
NOT `UserAngelTypes`.`confirm_user_id` IS NULL
|
||||||
|
OR `UserAngelTypes`.`id` IS NULL
|
||||||
|
)
|
||||||
|
)' : ''
|
||||||
|
),
|
||||||
[$userId]
|
[$userId]
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -195,7 +195,7 @@ function view_user_shifts()
|
||||||
$rooms = load_rooms();
|
$rooms = load_rooms();
|
||||||
$types = load_types();
|
$types = load_types();
|
||||||
$ownTypes = [];
|
$ownTypes = [];
|
||||||
foreach (UserAngelTypes_by_User($user->id) as $type) {
|
foreach (UserAngelTypes_by_User($user->id, FALSE) as $type) {
|
||||||
$ownTypes[] = (int)$type['angeltype_id'];
|
$ownTypes[] = (int)$type['angeltype_id'];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue