38 protected \ilLanguage
$lng;
56 $this->
lng = $domain_service->lng();
57 $this->user_id = $a_user_id;
62 $this->user_collector = $domain_service->
userCollector($a_user_id, $ref_id);
69 if (!$awrn_set->get(
"awrn_enabled",
"0") ||
71 $this->user_id == 0) {
79 $cache_period = (
int) $this->
settings->get(
"caching_period");
80 $last_update = $this->session_repo->getLastUpdate();
83 if ($last_update ==
"" || ($now - $last_update) >= $cache_period) {
85 $hcnt = $counter->getHighlightCount();
86 $cnt = $counter->getCount();
87 $this->session_repo->setLastUpdate($now);
88 $this->session_repo->setCount($cnt);
89 $this->session_repo->setHighlightCount($hcnt);
91 $cnt = $this->session_repo->getCount();
92 $hcnt = $this->session_repo->getHighlightCount();
94 return $this->data_service->counter($cnt, $hcnt);
104 if (!isset($this->user_collections[(
int) $a_online_only])) {
105 $this->user_collections[(
int) $a_online_only] = $this->user_collector->collectUsers($a_online_only);
107 return $this->user_collections[(
int) $a_online_only];
112 $all_user_ids = array();
113 $hall_user_ids = array();
117 foreach ($user_collections as $uc) {
118 $user_collection = $uc[
"collection"];
119 $user_ids = $user_collection->getUsers();
121 foreach ($user_ids as $uid) {
122 if (!in_array($uid, $all_user_ids)) {
123 if ($uc[
"highlighted"]) {
124 $hall_user_ids[] = $uid;
126 $all_user_ids[] = $uid;
132 return $this->data_service->counter(
133 count($all_user_ids),
134 count($hall_user_ids)
153 $max = $awrn_set->
get(
"max_nr_entries");
155 $all_user_ids = array();
156 $hall_user_ids = array();
158 if ($this->data == null) {
159 $online_users = $this->user_collector->getOnlineUsers();
163 $this->data = array();
165 foreach ($user_collections as $uc) {
168 if (count($this->data) >= $max) {
172 $user_collection = $uc[
"collection"];
173 $user_ids = $user_collection->getUsers();
175 foreach ($user_ids as $uid) {
176 if (!in_array($uid, $all_user_ids)) {
177 if ($uc[
"highlighted"]) {
178 $hall_user_ids[] = $uid;
180 $all_user_ids[] = $uid;
197 foreach ($names as $k => $n) {
198 if (isset($online_users[$n[
"id"]])) {
199 $names[$k][
"online"] =
true;
200 $names[$k][
"last_login"] = $online_users[$n[
"id"]][
"last_login"];
203 $names[$k][
"online"] =
false;
204 $names[$k][
"last_login"] =
"";
207 if ($n[
"public_profile"]) {
208 $sort_str .= $n[
"lastname"] .
" " . $n[
"firstname"];
210 $sort_str .= $n[
"login"];
212 $names[$k][
"sort_str"] = $sort_str;
217 foreach ($names as $n) {
219 if (count($this->data) >= $max) {
224 $filter = trim($filter);
226 !is_int(stripos($n[
"login"], $filter)) &&
228 !$n[
"public_profile"] || (
229 !is_int(stripos($n[
"firstname"], $filter)) &&
230 !is_int(stripos($n[
"lastname"], $filter))
237 $obj = new \stdClass();
238 $obj->lastname = $n[
"lastname"];
239 $obj->firstname = $n[
"firstname"];
240 $obj->login = $n[
"login"];
242 $obj->collector = $uc[
"uc_title"];
243 $obj->highlighted = $uc[
"highlighted"];
247 $obj->public_profile = $n[
"public_profile"];
249 $obj->online = $n[
"online"];
250 $obj->last_login = $n[
"last_login"];
253 $action_collection = $this->action_collector->getActionsForTargetUser($n[
"id"]);
254 $obj->actions = array();
255 foreach ($action_collection->getActions() as $action) {
256 $f = new \stdClass();
257 $f->text = $action->getText();
258 $f->href = $action->getHref();
259 $f->data = $action->getData();
260 $obj->actions[] =
$f;
263 $this->data[] = $obj;
270 count($all_user_ids),
271 count($hall_user_ids)
274 return array(
"data" => $this->data,
"cnt" => count($all_user_ids) .
":" . count($hall_user_ids));
283 $this->session_repo->setLastUpdate($now);
284 $this->session_repo->setCount($cnt);
285 $this->session_repo->setHighlightCount($hcnt);
Notes internal repo service.
get(string $a_keyword, ?string $a_default_value=null)
get setting
Collects users from all providers.
static getNamePresentation( $a_user_id, bool $a_user_image=false, bool $a_profile_link=false, string $a_profile_back_link="", bool $a_force_first_lastname=false, bool $a_omit_login=false, bool $a_sortable=true, bool $a_return_data_array=false, $a_ctrl_path="ilpublicuserprofilegui")
Default behaviour is:
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
userCollector(int $user_id, int $ref_id=0)
static getInstance(int $a_user_id, ilUserActionContext $a_context)
Get instance (for a user)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _getPersonalPicturePath(int $a_usr_id, string $a_size="small", bool $a_force_pic=false, bool $a_prevent_no_photo_image=false, bool $html_export=false)
static sortArray(array $array, string $a_array_sortby_key, string $a_array_sortorder="asc", bool $a_numeric=false, bool $a_keep_keys=false)