ILIAS
trunk Revision v11.0_alpha-1846-g895b5f47236
|
Public Member Functions | |
__construct (protected readonly \ilCtrlInterface $ctrl, protected readonly \ilLanguage $lng, protected readonly UIFactory $ui_factory, protected readonly DataFactory $data_factory, protected readonly ServerRequestInterface $request, protected readonly PoolDefinitionList $pool_definition_list) | |
getRows (DataRowBuilder $row_builder, array $visible_column_ids, Range $range, Order $order, ?array $filter_data, ?array $additional_parameters) | |
This is called by the table to retrieve rows; map data-records to rows using the $row_builder e.g. More... | |
getTotalRowCount (?array $filter_data, ?array $additional_parameters) | |
Mainly for the purpose of pagination-support, it is important to know about the total number of records available. More... | |
getComponent () | |
Protected Member Functions | |
getData (Range $range, Order $order) | |
getColumns () | |
getActions () | |
Definition at line 38 of file RandomQuestionSetNonAvailablePoolsTable.php.
ILIAS\Test\Questions\RandomQuestionSetNonAvailablePoolsTable::__construct | ( | protected readonly \ilCtrlInterface | $ctrl, |
protected readonly \ilLanguage | $lng, | ||
protected readonly UIFactory | $ui_factory, | ||
protected readonly DataFactory | $data_factory, | ||
protected readonly ServerRequestInterface | $request, | ||
protected readonly PoolDefinitionList | $pool_definition_list | ||
) |
Definition at line 40 of file RandomQuestionSetNonAvailablePoolsTable.php.
|
protected |
Definition at line 109 of file RandomQuestionSetNonAvailablePoolsTable.php.
References ILIAS\Repository\lng().
Referenced by ILIAS\Test\Questions\RandomQuestionSetNonAvailablePoolsTable\getComponent().
|
protected |
Definition at line 96 of file RandomQuestionSetNonAvailablePoolsTable.php.
References ILIAS\Repository\lng().
Referenced by ILIAS\Test\Questions\RandomQuestionSetNonAvailablePoolsTable\getComponent().
ILIAS\Test\Questions\RandomQuestionSetNonAvailablePoolsTable::getComponent | ( | ) |
Definition at line 84 of file RandomQuestionSetNonAvailablePoolsTable.php.
References ILIAS\Test\Questions\RandomQuestionSetNonAvailablePoolsTable\getActions(), ILIAS\Test\Questions\RandomQuestionSetNonAvailablePoolsTable\getColumns(), and ILIAS\Repository\lng().
|
protected |
Definition at line 73 of file RandomQuestionSetNonAvailablePoolsTable.php.
References $data, ILIAS\Data\Range\getLength(), and ILIAS\Data\Range\getStart().
Referenced by ILIAS\Test\Questions\RandomQuestionSetNonAvailablePoolsTable\getRows().
ILIAS\Test\Questions\RandomQuestionSetNonAvailablePoolsTable::getRows | ( | DataRowBuilder | $row_builder, |
array | $visible_column_ids, | ||
Range | $range, | ||
Order | $order, | ||
?array | $filter_data, | ||
?array | $additional_parameters | ||
) |
This is called by the table to retrieve rows; map data-records to rows using the $row_builder e.g.
yield $row_builder->buildStandardRow($row_id, $record).
string[] | $visible_column_ids |
Implements ILIAS\UI\Component\Table\DataRetrieval.
Definition at line 50 of file RandomQuestionSetNonAvailablePoolsTable.php.
References ILIAS\UI\Component\Table\DataRowBuilder\buildDataRow(), ILIAS\Test\Questions\RandomQuestionSetNonAvailablePoolsTable\getData(), ILIAS\Repository\lng(), and ilTestRandomQuestionSetNonAvailablePool\UNAVAILABILITY_STATUS_LOST.
ILIAS\Test\Questions\RandomQuestionSetNonAvailablePoolsTable::getTotalRowCount | ( | ?array | $filter_data, |
?array | $additional_parameters | ||
) |
Mainly for the purpose of pagination-support, it is important to know about the total number of records available.
Given the nature of a DataTable, which is, opposite to a PresentationTable, rather administrative than explorative, this information will increase user experience quite a bit. However, you may return null, if the call is to costly, but expect the View Control to look a little different in this case.
Make sure that potential filters or user restrictions are being applied to the count.
Implements ILIAS\UI\Component\Table\DataRetrieval.
Definition at line 68 of file RandomQuestionSetNonAvailablePoolsTable.php.