ILIAS  release_8 Revision v8.24
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}
Skill gui global request wrapper.
intArray(string $key)
get integer array kindly
int(string $key)
get integer parameter kindly
strArray(string $key)
get string array kindly
str(string $key)
get string parameter kindly
Request wrapper for skill guis in container classes.
__construct(?array $passed_query_params=null, ?array $passed_post_data=null)
global $DIC
Definition: feed.php:28
__construct(Container $dic, ilPlugin $plugin)
@inheritDoc