ILIAS  trunk Revision v11.0_alpha-1861-g09f3d197f78
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ILIAS\Blog\StandardGUIRequest Class Reference
+ Collaboration diagram for ILIAS\Blog\StandardGUIRequest:

Public Member Functions

 __construct (\ILIAS\HTTP\Services $http, \ILIAS\Refinery\Factory $refinery, ?array $passed_query_params=null, ?array $passed_post_data=null)
 
 getRefId ()
 
 getWspId ()
 
 getBlogPage ()
 
 getOldNr ()
 
 getPPage ()
 
 getUserPage ()
 
 getNewType ()
 
 getPreviewMode ()
 
 getNotification ()
 
 getApId ()
 
 getMonth ()
 
 getKeyword ()
 
 getAuthor ()
 
 getAssId ()
 
 getAssFile ()
 
 getFetchAll ()
 
 getTerm ()
 
 getTitle ()
 
 getFormat ()
 
 getUserLogin ()
 
 getUserType ()
 
 getIds ()
 
 getStyleId ()
 
 getObjIds ()
 

Detailed Description

Definition at line 25 of file class.StandardGUIRequest.php.

Constructor & Destructor Documentation

◆ __construct()

ILIAS\Blog\StandardGUIRequest::__construct ( \ILIAS\HTTP\Services  $http,
\ILIAS\Refinery\Factory  $refinery,
?array  $passed_query_params = null,
?array  $passed_post_data = null 
)

Definition at line 29 of file class.StandardGUIRequest.php.

References ILIAS\Repository\initRequest().

34  {
35  $this->initRequest(
36  $http,
37  $refinery,
38  $passed_query_params,
39  $passed_post_data
40  );
41  }
$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

◆ getApId()

ILIAS\Blog\StandardGUIRequest::getApId ( )

Definition at line 88 of file class.StandardGUIRequest.php.

References ILIAS\Repository\int().

88  : int
89  {
90  return $this->int("apid");
91  }
+ Here is the call graph for this function:

◆ getAssFile()

ILIAS\Blog\StandardGUIRequest::getAssFile ( )

Definition at line 113 of file class.StandardGUIRequest.php.

References ILIAS\Repository\str().

113  : string
114  {
115  return trim($this->str("file"));
116  }
+ Here is the call graph for this function:

◆ getAssId()

ILIAS\Blog\StandardGUIRequest::getAssId ( )

Definition at line 108 of file class.StandardGUIRequest.php.

References ILIAS\Repository\int().

108  : int
109  {
110  return $this->int("ass");
111  }
+ Here is the call graph for this function:

◆ getAuthor()

ILIAS\Blog\StandardGUIRequest::getAuthor ( )

Definition at line 103 of file class.StandardGUIRequest.php.

References ILIAS\Repository\int().

103  : int
104  {
105  return $this->int("ath");
106  }
+ Here is the call graph for this function:

◆ getBlogPage()

ILIAS\Blog\StandardGUIRequest::getBlogPage ( )

Definition at line 53 of file class.StandardGUIRequest.php.

References ILIAS\Repository\int().

53  : int
54  {
55  return $this->int("blpg");
56  }
+ Here is the call graph for this function:

◆ getFetchAll()

ILIAS\Blog\StandardGUIRequest::getFetchAll ( )

Definition at line 118 of file class.StandardGUIRequest.php.

References ILIAS\Repository\int().

118  : bool
119  {
120  return (bool) $this->int("fetchall");
121  }
+ Here is the call graph for this function:

◆ getFormat()

ILIAS\Blog\StandardGUIRequest::getFormat ( )

Definition at line 133 of file class.StandardGUIRequest.php.

References ILIAS\Repository\str().

133  : string
134  {
135  return trim($this->str("format"));
136  }
+ Here is the call graph for this function:

◆ getIds()

ILIAS\Blog\StandardGUIRequest::getIds ( )
Returns
int[]

Definition at line 149 of file class.StandardGUIRequest.php.

References ILIAS\Repository\intArray().

149  : array
150  {
151  return $this->intArray("id");
152  }
+ Here is the call graph for this function:

◆ getKeyword()

ILIAS\Blog\StandardGUIRequest::getKeyword ( )

Definition at line 98 of file class.StandardGUIRequest.php.

References ILIAS\Repository\str().

98  : string
99  {
100  return $this->str("kwd");
101  }
+ Here is the call graph for this function:

◆ getMonth()

ILIAS\Blog\StandardGUIRequest::getMonth ( )

Definition at line 93 of file class.StandardGUIRequest.php.

References ILIAS\Repository\str().

93  : string
94  {
95  return $this->str("bmn");
96  }
+ Here is the call graph for this function:

◆ getNewType()

ILIAS\Blog\StandardGUIRequest::getNewType ( )

Definition at line 73 of file class.StandardGUIRequest.php.

References ILIAS\Repository\str().

73  : string
74  {
75  return $this->str("new_type");
76  }
+ Here is the call graph for this function:

◆ getNotification()

ILIAS\Blog\StandardGUIRequest::getNotification ( )

Definition at line 83 of file class.StandardGUIRequest.php.

References ILIAS\Repository\int().

83  : int
84  {
85  return $this->int("ntf");
86  }
+ Here is the call graph for this function:

◆ getObjIds()

ILIAS\Blog\StandardGUIRequest::getObjIds ( )
Returns
int[]

Definition at line 160 of file class.StandardGUIRequest.php.

References ILIAS\Repository\intArray().

160  : array
161  {
162  return $this->intArray("obj_id");
163  }
+ Here is the call graph for this function:

◆ getOldNr()

ILIAS\Blog\StandardGUIRequest::getOldNr ( )

Definition at line 58 of file class.StandardGUIRequest.php.

References ILIAS\Repository\int().

58  : int
59  {
60  return $this->int("old_nr");
61  }
+ Here is the call graph for this function:

◆ getPPage()

ILIAS\Blog\StandardGUIRequest::getPPage ( )

Definition at line 63 of file class.StandardGUIRequest.php.

References ILIAS\Repository\int().

63  : int
64  {
65  return $this->int("ppage");
66  }
+ Here is the call graph for this function:

◆ getPreviewMode()

ILIAS\Blog\StandardGUIRequest::getPreviewMode ( )

Definition at line 78 of file class.StandardGUIRequest.php.

References ILIAS\Repository\str().

78  : string
79  {
80  return $this->str("prvm");
81  }
+ Here is the call graph for this function:

◆ getRefId()

ILIAS\Blog\StandardGUIRequest::getRefId ( )

Definition at line 43 of file class.StandardGUIRequest.php.

References ILIAS\Repository\int().

43  : int
44  {
45  return $this->int("ref_id");
46  }
+ Here is the call graph for this function:

◆ getStyleId()

ILIAS\Blog\StandardGUIRequest::getStyleId ( )

Definition at line 154 of file class.StandardGUIRequest.php.

References ILIAS\Repository\int().

154  : int
155  {
156  return $this->int("style_id");
157  }
+ Here is the call graph for this function:

◆ getTerm()

ILIAS\Blog\StandardGUIRequest::getTerm ( )

Definition at line 123 of file class.StandardGUIRequest.php.

References ILIAS\Repository\str().

123  : string
124  {
125  return trim($this->str("term"));
126  }
+ Here is the call graph for this function:

◆ getTitle()

ILIAS\Blog\StandardGUIRequest::getTitle ( )

Definition at line 128 of file class.StandardGUIRequest.php.

References ILIAS\Repository\str().

128  : string
129  {
130  return trim($this->str("title"));
131  }
+ Here is the call graph for this function:

◆ getUserLogin()

ILIAS\Blog\StandardGUIRequest::getUserLogin ( )

Definition at line 138 of file class.StandardGUIRequest.php.

References ILIAS\Repository\str().

138  : string
139  {
140  return trim($this->str("user_login"));
141  }
+ Here is the call graph for this function:

◆ getUserPage()

ILIAS\Blog\StandardGUIRequest::getUserPage ( )

Definition at line 68 of file class.StandardGUIRequest.php.

References ILIAS\Repository\int().

68  : int
69  {
70  return $this->int("user_page");
71  }
+ Here is the call graph for this function:

◆ getUserType()

ILIAS\Blog\StandardGUIRequest::getUserType ( )

Definition at line 143 of file class.StandardGUIRequest.php.

References ILIAS\Repository\str().

143  : string
144  {
145  return trim($this->str("user_type"));
146  }
+ Here is the call graph for this function:

◆ getWspId()

ILIAS\Blog\StandardGUIRequest::getWspId ( )

Definition at line 48 of file class.StandardGUIRequest.php.

References ILIAS\Repository\int().

48  : int
49  {
50  return $this->int("wsp_id");
51  }
+ Here is the call graph for this function:

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