3 declare(strict_types=1);
35 $ilDB = $DIC->database();
36 $query =
'SELECT grp_id FROM cal_ch_group ' .
37 'WHERE usr_id = ' .
$ilDB->quote($a_user_id,
'integer');
53 $ilDB = $DIC->database();
54 $query =
'SELECT COUNT(grp_id) num FROM cal_ch_group ' .
55 'WHERE usr_id = ' .
$ilDB->quote($a_user_id,
'integer') .
' ' .
60 return (
int) $row->num;
73 $query =
'SELECT title from cal_ch_group ' .
74 'WHERE grp_id = ' .
$ilDB->quote($a_group_id,
'integer');
90 $query =
'SELECT multiple_assignments from cal_ch_group ' .
91 'WHERE grp_id = ' .
$ilDB->quote($a_group_id,
'integer');
94 return (
int) $row->multiple_assignments;
106 $lng = $DIC->language();
107 $groups = self::getGroupsOfUser($a_user_id);
108 if (!count($groups)) {
112 foreach ($groups as $group) {
113 $options[(string) $group->getGroupId()] = $group->getTitle();
115 asort($options, SORT_STRING);
116 $sorted_options = array();
117 $sorted_options[0] =
$lng->txt(
'cal_ch_grp_no_assignment');
118 foreach ($options as
$key => $opt) {
119 $sorted_options[
$key] = $opt;
121 return $sorted_options;
static lookupTitle(int $a_group_id)
Lookup group title.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getGroupsOfUser(int $a_user_id)
Get a all groups of an user.
static getCountGroupsOfUser(int $a_user_id)
Get number of consultation hour groups.
static lookupMaxBookings(int $a_group_id)
Lookup max number of bookings for group.
static getGroupSelectOptions(int $a_user_id)
Get group selection options.