ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilMailAutoCompleteRecipientProvider.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
25 {
26  protected ilDBInterface $db;
27  protected ?ilDBStatement $res = null;
29  protected ?array $data = null;
30  protected int $user_id = 0;
31 
32  public function __construct(protected string $quoted_term, protected string $term)
33  {
34  global $DIC;
35 
36  $this->db = $DIC->database();
37  $this->user_id = $DIC->user()->getId();
38  }
39 
40  public function valid(): bool
41  {
42  $this->data = $this->db->fetchAssoc($this->res);
43 
44  return is_array($this->data) && !empty($this->data);
45  }
46 
47  public function next(): void
48  {
49  }
50 
51  public function __destruct()
52  {
53  if ($this->res !== null) {
54  $this->db->free($this->res);
55  $this->res = null;
56  }
57  }
58 }
__construct(protected string $quoted_term, protected string $term)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
global $DIC
Definition: shib_login.php:22