19 declare(strict_types=1);
32 'login' => $this->data[
'login'],
33 'firstname' => $this->data[
'firstname'],
34 'lastname' => $this->data[
'lastname'],
38 public function key(): string
40 return $this->data[
'login'];
45 if ($this->res !==
null) {
46 $this->db->free($this->res);
53 $query = implode(
" ", [
54 'SELECT ' . $select_part,
56 $where_part !==
'' ?
'WHERE ' . $where_part :
'',
57 $order_by_part !==
'' ?
'ORDER BY ' . $order_by_part :
'',
60 $this->res = $this->db->query($query);
68 '(CASE WHEN (firstname IS NOT NULL AND (profpref.value = %s OR profpref.value = %s)) THEN firstname ELSE \'\' END) firstname',
69 $this->db->quote(
'y',
'text'),
70 $this->db->quote(
'g',
'text')
73 '(CASE WHEN (lastname IS NOT NULL AND (profpref.value = %s OR profpref.value = %s)) THEN lastname ELSE \'\' END) lastname',
74 $this->db->quote(
'y',
'text'),
75 $this->db->quote(
'g',
'text')
78 "(CASE WHEN (email IS NOT NULL AND (profpref.value = %s OR profpref.value = %s) " .
79 "AND pubemail.value = %s) THEN email ELSE '' END) email",
80 $this->db->quote(
'y',
'text'),
81 $this->db->quote(
'g',
'text'),
82 $this->db->quote(
'y',
'text')
86 $fields[] =
'profpref.value profile_value';
87 $fields[] =
'pubemail.value email_value';
89 return implode(
', ', $fields);
97 LEFT JOIN usr_pref profpref 98 ON profpref.usr_id = usr_data.usr_id 99 AND profpref.keyword = ' . $this->db->quote(
'public_profile',
'text');
102 LEFT JOIN usr_pref pubemail 103 ON pubemail.usr_id = usr_data.usr_id 104 AND pubemail.keyword = ' . $this->db->quote(
'public_email',
'text');
106 return 'usr_data ' . implode(
' ', $joins);
111 $outer_conditions = [];
112 $outer_conditions[] =
'usr_data.usr_id != ' . $this->db->quote(
ANONYMOUS_USER_ID,
'integer');
113 $outer_conditions[] =
'usr_data.active != ' . $this->db->quote(0,
'integer');
115 $field_conditions = [];
119 if (
'email' === $field) {
124 $email_query[] = $field_condition;
125 $email_query[] =
'pubemail.value = ' . $this->db->quote(
'y',
'text');
126 $field_conditions[] =
'(' . implode(
' AND ', $email_query) .
')';
128 $field_conditions[] = $field_condition;
137 if ($field_conditions !== []) {
138 $fields =
'(' . implode(
' OR ', $field_conditions) .
')';
140 $field_conditions = [
'(' . implode(
' AND ', [
142 $this->db->in(
'profpref.value', [
'y',
'g'],
false,
'text'),
151 $outer_conditions[] = $this->db->in(
159 if ($field_conditions !== []) {
160 $outer_conditions[] =
'(' . implode(
' OR ', $field_conditions) .
')';
163 return implode(
' AND ', $outer_conditions);
173 return $this->db->like($field,
'text', $a_str .
'%');
181 $available_fields = [];
182 foreach ([
'firstname',
'lastname'] as $field) {
184 $available_fields[] = $field;
187 return $available_fields;
getWherePart(string $search_query)
Class ilMailAutoCompleteRecipientProvider.
getQueryConditionByFieldAndValue(string $field, $a_str)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Class ilMailAutoCompleteUserProvider.
static _isEnabled($a_key)