ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.Term.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Glossary\Flashcard;
22 
23 class Term
24 {
25  public function __construct(
26  protected int $term_id,
27  protected int $user_id,
28  protected int $glo_id,
29  protected int $box_nr,
30  protected ?string $last_access = null
31  ) {
32 
33  }
34 
35  public function getTermId(): int
36  {
37  return $this->term_id;
38  }
39 
40  public function getUserId(): int
41  {
42  return $this->user_id;
43  }
44 
45  public function getGloId(): int
46  {
47  return $this->glo_id;
48  }
49 
50  public function getBoxNr(): int
51  {
52  return $this->box_nr;
53  }
54 
55  public function getLastAccess(): ?string
56  {
57  return $this->last_access;
58  }
59 }
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
__construct(protected int $term_id, protected int $user_id, protected int $glo_id, protected int $box_nr, protected ?string $last_access=null)
Definition: class.Term.php:25