ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.SkillPersonalGUIRequest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Skill\Service;
22 
23 use ILIAS\HTTP;
24 use ILIAS\Refinery;
25 
32 {
33  public function __construct(
36  ?array $passed_query_params = null,
37  ?array $passed_post_data = null
38  ) {
40  }
41 
42  public function getNodeId(): int
43  {
44  return $this->int("node_id");
45  }
46 
47  public function getProfileId(): int
48  {
49  return $this->int("profile_id");
50  }
51 
52  public function getSkillId(): int
53  {
54  return $this->int("skill_id");
55  }
56 
60  public function getSkillIds(): array
61  {
62  return $this->getIds();
63  }
64 
65  public function getBasicSkillId(): int
66  {
67  return $this->int("basic_skill_id");
68  }
69 
70  public function getTrefId(): int
71  {
72  return $this->int("tref_id");
73  }
74 
75  public function getLevelId(): int
76  {
77  return $this->int("level_id");
78  }
79 
83  public function getWorkspaceIds(): array
84  {
85  return $this->intArray("wsp_ids");
86  }
87 
88  public function getListMode(): string
89  {
90  return $this->str("list_mode");
91  }
92 
93  public function getTypeOfFormation(): int
94  {
95  return $this->int("type_of_formation");
96  }
97 
98  public function getShowTargetLevel(): bool
99  {
100  return $this->bool("target_level");
101  }
102 
103  public function getShowMaterialsResources(): bool
104  {
105  return $this->bool("mat_res");
106  }
107 
108  public function getTableAssignMaterialsAction(): string
109  {
110  return $this->getTableAction("skl_assign_materials_table_action");
111  }
112 
116  public function getTableAssignMaterialsLevelIds(): array
117  {
118  return $this->getTableIds("skl_assign_materials_table_level_ids");
119  }
120 
122  {
123  return $this->int("skl_assign_materials_table_wsp_id");
124  }
125 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(HTTP\Services $http, Refinery\Factory $refinery, ?array $passed_query_params=null, ?array $passed_post_data=null)
intArray(string $key)
get integer array kindly
Skill gui global request wrapper.
Builds a Color from either hex- or rgb values.
Definition: Factory.php:30
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
str(string $key)
get string parameter kindly
Request wrapper for personal skills guis.
int(string $key)
get integer parameter kindly
__construct(Container $dic, ilPlugin $plugin)
bool(string $key)
get bool parameter kindly