ILIAS  trunk Revision v11.0_alpha-1846-g895b5f47236
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ILIAS\Table\TableGUIRequest Class Reference
+ Collaboration diagram for ILIAS\Table\TableGUIRequest:

Public Member Functions

 __construct (\ILIAS\HTTP\Services $http, \ILIAS\Refinery\Factory $refinery, ?array $passed_query_params=null, ?array $passed_post_data=null)
 
 getExportMode (string $prefix)
 
 getRows (string $prefix)
 
 getPostVar ()
 
 getNavPar (string $np, int $nr=0)
 
 getFF (string $id)
 
 getFS (string $id)
 
 getFSH (string $id)
 
 getFSF (string $id)
 
 getTableId ()
 
 getUserId ()
 

Detailed Description

Deprecated:
10

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

Constructor & Destructor Documentation

◆ __construct()

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

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

References ILIAS\Repository\initRequest().

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

◆ getExportMode()

ILIAS\Table\TableGUIRequest::getExportMode ( string  $prefix)

Definition at line 45 of file class.TableGUIRequest.php.

References ILIAS\Repository\int().

45  : int
46  {
47  return $this->int($prefix . "_xpt");
48  }
+ Here is the call graph for this function:

◆ getFF()

ILIAS\Table\TableGUIRequest::getFF ( string  $id)

Definition at line 72 of file class.TableGUIRequest.php.

References ILIAS\Repository\strArray().

72  : array
73  {
74  return $this->strArray("tblff" . $id);
75  }
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
+ Here is the call graph for this function:

◆ getFS()

ILIAS\Table\TableGUIRequest::getFS ( string  $id)

Definition at line 77 of file class.TableGUIRequest.php.

References ILIAS\Repository\strArray().

77  : array
78  {
79  return $this->strArray("tblfs" . $id);
80  }
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
+ Here is the call graph for this function:

◆ getFSF()

ILIAS\Table\TableGUIRequest::getFSF ( string  $id)

Definition at line 87 of file class.TableGUIRequest.php.

References ILIAS\Repository\int().

87  : bool
88  {
89  return (bool) $this->int("tblfsf" . $id);
90  }
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
+ Here is the call graph for this function:

◆ getFSH()

ILIAS\Table\TableGUIRequest::getFSH ( string  $id)

Definition at line 82 of file class.TableGUIRequest.php.

References ILIAS\Repository\int().

82  : bool
83  {
84  return (bool) $this->int("tblfsh" . $id);
85  }
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
+ Here is the call graph for this function:

◆ getNavPar()

ILIAS\Table\TableGUIRequest::getNavPar ( string  $np,
int  $nr = 0 
)

Definition at line 64 of file class.TableGUIRequest.php.

References ILIAS\Repository\str().

64  : string
65  {
66  if ($nr > 0) {
67  $np .= (string) $nr;
68  }
69  return $this->str($np);
70  }
+ Here is the call graph for this function:

◆ getPostVar()

ILIAS\Table\TableGUIRequest::getPostVar ( )

Definition at line 59 of file class.TableGUIRequest.php.

References ILIAS\Repository\str().

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

◆ getRows()

ILIAS\Table\TableGUIRequest::getRows ( string  $prefix)

Definition at line 50 of file class.TableGUIRequest.php.

References null, and ILIAS\Repository\str().

50  : ?int
51  {
52  $rows = $this->str($prefix . "_trows");
53  if ($rows == "") {
54  return null;
55  }
56  return (int) $rows;
57  }
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
+ Here is the call graph for this function:

◆ getTableId()

ILIAS\Table\TableGUIRequest::getTableId ( )

Definition at line 92 of file class.TableGUIRequest.php.

References ILIAS\Repository\str().

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

◆ getUserId()

ILIAS\Table\TableGUIRequest::getUserId ( )

Definition at line 97 of file class.TableGUIRequest.php.

References ILIAS\Repository\int().

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

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