ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.SkillContainerGUIRequest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Container\Skills;
22 
24 use ILIAS\HTTP;
25 use ILIAS\Refinery;
26 
34 {
35  public function __construct(
38  ?array $passed_query_params = null,
39  ?array $passed_post_data = null
40  ) {
42  }
43 
44  public function getUserId(): int
45  {
46  return $this->int("usr_id");
47  }
48 
49  public function getUserIds(): array
50  {
51  return $this->intArray("usr_ids");
52  }
53 
54  public function getSelectedSkill(): string
55  {
56  return $this->str("selected_skill");
57  }
58 
59  public function getCombinedSkillIds(): array
60  {
61  return $this->strArray("id");
62  }
63 
64  public function getSelectedProfileId(): int
65  {
66  return $this->int("p_id");
67  }
68 
69  public function getProfileIds(): array
70  {
71  return $this->getIds();
72  }
73 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
intArray(string $key)
get integer array kindly
__construct(HTTP\Services $http, Refinery\Factory $refinery, ?array $passed_query_params=null, ?array $passed_post_data=null)
Skill gui global request wrapper.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Request wrapper for skill guis in container classes.
str(string $key)
get string parameter kindly
Builds data types.
Definition: Factory.php:35
int(string $key)
get integer parameter kindly
__construct(Container $dic, ilPlugin $plugin)
strArray(string $key)
get string array kindly