19declare(strict_types=1);
58 public function __construct($a_parent_obj, $a_parent_cmd, $a_admin_mode =
false, $a_type = self::TYPE_STANDARD)
62 $this->
profile = $DIC[
'user']->getProfile();
63 $this->
user = $DIC[
'user']->getLoggedInUser();
64 $this->review =
$DIC->rbac()->review();
65 $this->
ui = $DIC->ui();
66 $this->
http = $DIC->http();
69 $this->admin_mode = (bool) $a_admin_mode;
70 $this->type = $a_type;
72 $this->
setId(
"rep_search_" . $this->
user->getId());
82 if ($this->
getType() == self::TYPE_STANDARD) {
83 $this->
setRowTemplate(
"tpl.rep_search_usr_result_row.html",
"components/ILIAS/Search");
85 $this->
enable(
'select_all');
90 $this->
setRowTemplate(
"tpl.global_search_usr_result_row.html",
"components/ILIAS/Search");
98 if ($this->
getType() == self::TYPE_STANDARD) {
101 $this->
addColumn($all_cols[$col][
'txt'], $sort_field);
105 $this->
getType() != self::TYPE_STANDARD &&
119 $this->lucene_result =
$res;
129 $this->user_limitations = $a_limitations;
142 if (!self::$all_selectable_cols) {
145 if ($this->admin_mode) {
147 $columns[
'access_until'] = array(
'txt' => $this->
lng->txt(
'access_until'));
148 $columns[
'last_login'] = array(
'txt' => $this->
lng->txt(
'last_login'));
151 self::$all_selectable_cols = $columns;
158 if (!count($a_commands)) {
166 protected function fillRow(array $a_set): void
168 $this->tpl->setVariable(
"VAL_ID", $a_set[
"usr_id"]);
171 if ($this->
getType() == self::TYPE_GLOBAL_SEARCH) {
174 $this->tpl->setVariable(
'IMG_LINKED_TO_PROFILE', $link);
175 $this->tpl->setVariable(
176 'USR_IMG_SRC_LINKED',
180 $this->tpl->setVariable(
191 $a_set[
'gender'] = $a_set[
'gender'] ? $this->
lng->txt(
'gender_' . $a_set[
'gender']) :
'';
192 $this->tpl->setCurrentBlock(
'custom_fields');
193 $this->tpl->setVariable(
'VAL_CUST', $a_set[$field]);
194 $this->tpl->parseCurrentBlock();
199 $this->tpl->setCurrentBlock(
'custom_fields');
200 $this->tpl->setVariable(
'VAL_CUST', $a_set[$field]);
201 $this->tpl->parseCurrentBlock();
205 $this->tpl->setCurrentBlock(
'custom_fields');
206 $this->tpl->setVariable(
'CUST_CLASS',
' ' . $a_set[
'access_class']);
207 $this->tpl->setVariable(
'VAL_CUST', $a_set[$field]);
208 $this->tpl->parseCurrentBlock();
213 $this->tpl->setCurrentBlock(
'custom_fields');
214 $this->tpl->setVariable(
'VAL_CUST', $a_set[$field]);
215 $this->tpl->parseCurrentBlock();
219 $this->tpl->setCurrentBlock(
'custom_fields');
220 $this->tpl->setVariable(
222 ilOrgUnitPathStorage::getTextRepresentationOfUsersOrgUnits((
int) $a_set[
'usr_id'])
224 $this->tpl->parseCurrentBlock();
229 if ($this->admin_mode) {
230 $this->
ctrl->setParameterByClass(
"ilobjusergui",
"ref_id",
"7");
231 $this->
ctrl->setParameterByClass(
"ilobjusergui",
"obj_id", $a_set[
"usr_id"]);
232 $this->
ctrl->setParameterByClass(
"ilobjusergui",
"search",
"1");
233 $link = $this->
ctrl->getLinkTargetByClass(array(
"iladministrationgui",
"ilobjusergui"),
"view");
234 $a_set[$field] =
"<a href=\"" . $link .
"\">" . $a_set[$field] .
"</a>";
235 } elseif ($this->
getType() == self::TYPE_GLOBAL_SEARCH) {
236 $a_set[$field] =
"<a href=\"" . $link .
"\">" . $a_set[$field] .
"</a>";
242 $value = $a_set[$field] ??
'';
243 if (is_array($value)) {
244 $value = implode(
', ', $value);
246 $this->tpl->setCurrentBlock(
'custom_fields');
247 $this->tpl->setVariable(
'VAL_CUST', $value);
248 $this->tpl->parseCurrentBlock();
253 if ($this->
getType() == self::TYPE_GLOBAL_SEARCH) {
257 $this->tpl->setVariable(
'CONTACT_ACTIONS',
'');
271 $parse_access =
false;
272 if (isset($additional_fields[
'access_until'])) {
273 $parse_access =
true;
274 unset($additional_fields[
'access_until']);
277 $udf_ids = $usr_data_fields = $odf_ids = array();
278 foreach ($additional_fields as $field) {
279 if ($field ==
'org_units') {
282 if (substr($field, 0, 3) ==
'udf') {
283 $udf_ids[] = substr($field, 4);
286 $usr_data_fields[] = $field;
290 $u_query->setOrderField(
'login');
291 $u_query->setOrderDirection(
'ASC');
292 $u_query->setLimit(999999);
295 $u_query->setActionFilter(
"active");
299 $u_query->setAccessFilter(
true);
302 $u_query->setAdditionalFields($usr_data_fields);
303 $u_query->setUserFilter($a_user_ids);
305 $usr_data = $u_query->query();
308 if ($this->admin_mode && $parse_access) {
310 $current_time = time();
311 foreach ($usr_data[
'set'] as $k =>
$user) {
312 if (
$user[
'active']) {
313 if (
$user[
"time_limit_unlimited"]) {
314 $txt_access = $this->
lng->txt(
"access_unlimited");
315 $usr_data[
"set"][$k][
"access_class"] =
"smallgreen";
316 } elseif (
$user[
"time_limit_until"] < $current_time) {
317 $txt_access = $this->
lng->txt(
"access_expired");
318 $usr_data[
"set"][$k][
"access_class"] =
"smallred";
321 $usr_data[
"set"][$k][
"access_class"] =
"small";
324 $txt_access = $this->
lng->txt(
"inactive");
325 $usr_data[
"set"][$k][
"access_class"] =
"smallred";
327 $usr_data[
"set"][$k][
"access_until"] = $txt_access;
335 foreach ($usr_data[
'set'] as $set) {
337 if ((
int) ($set[
'usr_id'] ?? 0) === 0) {
340 $data = $this->
profile->getDataFor((
int) $set[
'usr_id']);
341 foreach ($udf_ids as $udf_field) {
342 $users[
$counter][
'udf_' . $udf_field] = implode(
', ',
$data->getAdditionalFieldByIdentifier($udf_field) ?? []);
347 $users = $usr_data[
'set'];
350 if ($this->
getType() == self::TYPE_GLOBAL_SEARCH) {
352 foreach ($users as
$counter => $ud) {
357 if ($this->
getType() === self::TYPE_GLOBAL_SEARCH) {
366 $html = parent::getHTML();
367 if ($this->
getType() == self::TYPE_GLOBAL_SEARCH) {
377 if ($sort ===
'relevance') {
378 usort($set,
function (
$a,
$b) {
379 return $b[
'relevance'] <=>
$a[
'relevance'];
384 if (str_ends_with($sort,
'_asc')) {
385 $col = substr($sort, 0, -4);
386 usort($set,
function (
$a,
$b) use ($col) {
387 return [
$a[$col],
$b[
'relevance'] ??
''] <=> [
$b[$col],
$a[
'relevance'] ??
''];
389 } elseif (str_ends_with($sort,
'_desc')) {
390 $col = substr($sort, 0, -5);
391 usort($set,
function (
$a,
$b) use ($col) {
392 return [
$b[$col],
$b[
'relevance'] ??
''] <=> [
$a[$col],
$a[
'relevance'] ??
''];
401 $sorts = [
'relevance' => $this->
lng->txt(
'search_sort_relevance')];
404 $sorts[$col .
'_asc'] = sprintf(
405 $this->
lng->txt(
'search_sort_generic_asc'),
406 $all_cols[$col][
'txt']
408 $sorts[$col .
'_desc'] = sprintf(
409 $this->
lng->txt(
'search_sort_generic_desc'),
410 $all_cols[$col][
'txt']
420 return $lucene_enabled ?
'relevance' :
'login_asc';
Provides fluid interface to RBAC services.
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false, ?ilObjUser $user=null,)
@classDescription Date and time handling
Search result implementing iterator interface.
static _getPersonalPicturePath(int $usr_id, string $size='small', bool $force_pic=false)
class ilRbacReview Contains Review functions of core Rbac.
TableGUI class user search results.
ilLuceneSearchResult $lucene_result
setLuceneResult(ilLuceneSearchResult $res)
fillRow(array $a_set)
Standard Version of Fill Row.
static array $all_selectable_cols
parseUserIds(array $a_user_ids)
__construct($a_parent_obj, $a_parent_cmd, $a_admin_mode=false, $a_type=self::TYPE_STANDARD)
initMultiCommands(array $a_commands)
applySortation(array $set)
setUserLimitations(bool $a_limitations)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setShowRowsSelector(bool $a_value)
Toggle rows-per-page selector.
setTitle(string $a_title, string $a_icon="", string $a_icon_alt="")
setEnableTitle(bool $a_enabletitle)
addMultiCommand(string $a_cmd, string $a_text)
setFormAction(string $a_form_action, bool $a_multipart=false)
addColumn(string $a_text, string $a_sort_field="", string $a_width="", bool $a_is_checkbox_action_column=false, string $a_class="", string $a_tooltip="", bool $a_tooltip_with_html=false)
setDefaultOrderField(string $a_defaultorderfield)
setSelectAllCheckbox(string $a_select_all_checkbox, bool $a_select_all_on_top=false)
setExternalSorting(bool $a_val)
addMultiItemSelectionButton(string $a_sel_var, array $a_options, string $a_cmd, string $a_text, string $a_default_selection='')
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
setDefaultOrderDirection(string $a_defaultorderdirection)
setData(array $a_data)
Set table data.
enable(string $a_module_name)
static getSelectableColumnInfo(bool $a_admin=false)
Get info of searchable fields for selectable columns in table gui.
static getProfileLink(int $a_usr_id)
Get link to personal profile Return empty string in case of not public profile.
static http()
Fetches the global http state from ILIAS.
__construct(Container $dic, ilPlugin $plugin)
@inheritDoc
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples
buildSortationViewControl()
trait ilSearchResultTableHelper