ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilUserDefinedFieldSearch.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
29 {
30  public function performSearch(): ilSearchResult
31  {
32  $where = $this->__createWhereCondition();
33  $locate = $this->__createLocateString();
34 
35  $query = "SELECT usr_id " .
36  $locate .
37  "FROM udf_text " .
38  $where;
39  $res = $this->db->query($query);
40  while ($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT)) {
41  $this->search_result->addEntry((int) $row->usr_id, 'usr', $this->__prepareFound($row));
42  }
43  return $this->search_result;
44  }
45 }
$res
Definition: ltiservices.php:66
ilSearchResult $search_result