ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilSkillContainerGUIRequest.php
Go to the documentation of this file.
1 <?php
2 
21 
28 {
29  public function __construct(
30  ?array $passed_query_params = null,
31  ?array $passed_post_data = null
32  ) {
33  global $DIC;
34 
35  $http = $DIC->http();
36  $refinery = $DIC->refinery();
37 
39  }
40 
41  public function getUserId(): int
42  {
43  return $this->int("usr_id");
44  }
45 
46  public function getUserIds(): array
47  {
48  return $this->intArray("usr_ids");
49  }
50 
51  public function getSelectedSkill(): string
52  {
53  return $this->str("selected_skill");
54  }
55 
56  public function getCombinedSkillIds(): array
57  {
58  return $this->strArray("id");
59  }
60 
61  public function getSelectedProfileId(): int
62  {
63  return $this->int("p_id");
64  }
65 
66  public function getProfileIds(): array
67  {
68  return $this->getIds();
69  }
70 }
intArray(string $key)
get integer array kindly
Request wrapper for skill guis in container classes.
Skill gui global request wrapper.
global $DIC
Definition: feed.php:28
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
str(string $key)
get string parameter kindly
int(string $key)
get integer parameter kindly
__construct(?array $passed_query_params=null, ?array $passed_post_data=null)
__construct(Container $dic, ilPlugin $plugin)
strArray(string $key)
get string array kindly