ILIAS  trunk Revision v11.0_alpha-2638-g80c1d007f79
ILIAS\UI\Implementation\Component\Layout\Page\EditGUIRequest Class Reference

Page component editing request. More...

+ Collaboration diagram for ILIAS\UI\Implementation\Component\Layout\Page\EditGUIRequest:

Public Member Functions

 __construct (\ILIAS\HTTP\Services $http, \ILIAS\Refinery\Factory $refinery)
 
 getHierId ()
 
 getPCId ()
 
 getPlaceholderPCId ()
 
 getCType ()
 
 getCName ()
 
 getMobId ()
 
 getIds ()
 
 getString (string $key)
 
 getInt (string $key)
 
 getStringArray (string $key)
 
 getPageId ()
 
 getPageType ()
 

Detailed Description

Page component editing request.

Includes common and generic request parameter handling.

Definition at line 27 of file class.EditGUIRequest.php.

Constructor & Destructor Documentation

◆ __construct()

ILIAS\UI\Implementation\Component\Layout\Page\EditGUIRequest::__construct ( \ILIAS\HTTP\Services  $http,
\ILIAS\Refinery\Factory  $refinery 
)

Definition at line 31 of file class.EditGUIRequest.php.

References ILIAS\Repository\initRequest().

34  {
35  $this->initRequest(
36  $http,
37  $refinery
38  );
39  }
$http
Definition: deliver.php:30
initRequest(HTTP\Services $http, Refinery\Factory $refinery, ?array $passed_query_params=null, ?array $passed_post_data=null)
Query params and post data parameters are used for testing.
+ Here is the call graph for this function:

Member Function Documentation

◆ getCName()

ILIAS\UI\Implementation\Component\Layout\Page\EditGUIRequest::getCName ( )

Definition at line 65 of file class.EditGUIRequest.php.

References ILIAS\Repository\str().

65  : string
66  {
67  return $this->str("cname");
68  }
+ Here is the call graph for this function:

◆ getCType()

ILIAS\UI\Implementation\Component\Layout\Page\EditGUIRequest::getCType ( )

Definition at line 60 of file class.EditGUIRequest.php.

References ILIAS\Repository\str().

60  : string
61  {
62  return $this->str("ctype");
63  }
+ Here is the call graph for this function:

◆ getHierId()

ILIAS\UI\Implementation\Component\Layout\Page\EditGUIRequest::getHierId ( )

Definition at line 41 of file class.EditGUIRequest.php.

References ILIAS\Repository\str().

41  : string
42  {
43  return $this->str("hier_id");
44  }
+ Here is the call graph for this function:

◆ getIds()

ILIAS\UI\Implementation\Component\Layout\Page\EditGUIRequest::getIds ( )
Returns
string[]

Definition at line 76 of file class.EditGUIRequest.php.

References ILIAS\Repository\strArray().

76  : array
77  {
78  return $this->strArray("ids");
79  }
+ Here is the call graph for this function:

◆ getInt()

ILIAS\UI\Implementation\Component\Layout\Page\EditGUIRequest::getInt ( string  $key)

Definition at line 86 of file class.EditGUIRequest.php.

References ILIAS\Repository\int().

86  : int
87  {
88  return $this->int($key);
89  }
+ Here is the call graph for this function:

◆ getMobId()

ILIAS\UI\Implementation\Component\Layout\Page\EditGUIRequest::getMobId ( )

Definition at line 70 of file class.EditGUIRequest.php.

References ILIAS\Repository\int().

70  : int
71  {
72  return $this->int("mob_id");
73  }
+ Here is the call graph for this function:

◆ getPageId()

ILIAS\UI\Implementation\Component\Layout\Page\EditGUIRequest::getPageId ( )

Definition at line 96 of file class.EditGUIRequest.php.

References ILIAS\Repository\int().

96  : int
97  {
98  return $this->int("pg_id");
99  }
+ Here is the call graph for this function:

◆ getPageType()

ILIAS\UI\Implementation\Component\Layout\Page\EditGUIRequest::getPageType ( )

Definition at line 101 of file class.EditGUIRequest.php.

References ILIAS\Repository\str().

101  : string
102  {
103  return $this->str("pg_type");
104  }
+ Here is the call graph for this function:

◆ getPCId()

ILIAS\UI\Implementation\Component\Layout\Page\EditGUIRequest::getPCId ( )

Definition at line 46 of file class.EditGUIRequest.php.

References ILIAS\Repository\str().

46  : string
47  {
48  $pc_id = $this->str("pc_id");
49  if ($pc_id == "") {
50  $pc_id = $this->str("pcid");
51  }
52  return $pc_id;
53  }
+ Here is the call graph for this function:

◆ getPlaceholderPCId()

ILIAS\UI\Implementation\Component\Layout\Page\EditGUIRequest::getPlaceholderPCId ( )

Definition at line 55 of file class.EditGUIRequest.php.

References ILIAS\Repository\str().

55  : string
56  {
57  return $this->str("pl_pc_id");
58  }
+ Here is the call graph for this function:

◆ getString()

ILIAS\UI\Implementation\Component\Layout\Page\EditGUIRequest::getString ( string  $key)

Definition at line 81 of file class.EditGUIRequest.php.

References ILIAS\Repository\str().

81  : string
82  {
83  return $this->str($key);
84  }
+ Here is the call graph for this function:

◆ getStringArray()

ILIAS\UI\Implementation\Component\Layout\Page\EditGUIRequest::getStringArray ( string  $key)

Definition at line 91 of file class.EditGUIRequest.php.

References ILIAS\Repository\strArray().

91  : array
92  {
93  return $this->strArray($key);
94  }
+ Here is the call graph for this function:

The documentation for this class was generated from the following file: