ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.AssignedMaterial.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
27 {
28  protected int $user_id = 0;
29  protected int $top_skill_id = 0;
30  protected int $skill_id = 0;
31  protected int $level_id = 0;
32  protected int $wsp_id = 0;
33  protected int $tref_id = 0;
34 
35  public function __construct(
36  int $user_id,
37  int $top_skill_id,
38  int $skill_id,
39  int $level_id,
40  int $wsp_id,
41  int $tref_id
42  ) {
43  $this->user_id = $user_id;
44  $this->top_skill_id = $top_skill_id;
45  $this->skill_id = $skill_id;
46  $this->level_id = $level_id;
47  $this->wsp_id = $wsp_id;
48  $this->tref_id = $tref_id;
49  }
50 
51  public function getUserId(): int
52  {
53  return $this->user_id;
54  }
55 
56  public function getTopSkillId(): int
57  {
58  return $this->top_skill_id;
59  }
60 
61  public function getSkillId(): int
62  {
63  return $this->skill_id;
64  }
65 
66  public function getLevelId(): int
67  {
68  return $this->level_id;
69  }
70 
71  public function getWorkspaceId(): int
72  {
73  return $this->wsp_id;
74  }
75 
76  public function getTrefId(): int
77  {
78  return $this->tref_id;
79  }
80 }
__construct(int $user_id, int $top_skill_id, int $skill_id, int $level_id, int $wsp_id, int $tref_id)