19 declare(strict_types=1);
59 $this->main_tpl = $DIC->ui()->mainTemplate();
72 if (!$this->
access->hasHighscoreAccess()) {
76 switch ($DIC->ctrl()->getNextClass($this)) {
78 $cmd = $DIC->ctrl()->getCmd(
'show') .
'Cmd';
89 ->initHighScoreTable()
93 $this->main_tpl->setOnScreenMessage(
'failure', $e->getMessage());
96 $table->setData(array());
97 $table->setMaxCount(0);
98 $table->resetOffset();
99 $this->tableHtml = $table->getHTML();
102 $DIC->ui()->mainTemplate()->setContent($this->tableHtml);
110 $aggregateEndPointUrl = str_replace(
112 'api/statements/aggregate',
113 $this->
object->getProvider()->getXapiLaunchUrl()
117 $this->
object->getProvider()->getXapiLaunchKey(),
118 $this->
object->getProvider()->getXapiLaunchSecret()
122 $filter->setActivityId($this->
object->getActivityId());
126 $aggregateEndPointUrl,
135 $scoringReport = $request->queryReport($this->
object->getId());
137 if (
true === $scoringReport->initTableData()) {
138 $this->tableData = $scoringReport->getTableData();
139 $this->userRank = $scoringReport->getUserRank();
149 if (
false === $scopeUserRank) {
150 return array_slice($this->tableData, 0, $this->
object->getHighscoreTopNum());
152 $offset = $this->userRank - 2 < 0 ? 0 : $this->userRank - 2;
154 return array_slice($this->tableData, $offset, $length);
164 if (!$this->
object->getHighscoreTopTable() || !$this->
object->getHighscoreEnabled()) {
165 $this->tableHtml .=
'';
170 $this->tableHtml .= $table->getHTML();
179 if (!$this->
object->getHighscoreOwnTable() || !$this->
object->getHighscoreEnabled()) {
180 $this->tableHtml .=
'';
185 $this->tableHtml .= $table->getHTML();
191 $isMultiActorReport = $this->
access->hasOutcomesAccess();
197 $this->
access->hasOutcomesAccess()
__construct(ilObjLTIConsumer $object)
const PART_FILTER_MANSCORING_NONE
ilLTIConsumerAccess $access
const PART_FILTER_ALL_USERS
const PART_FILTER_MANSCORING_DONE
buildTableGUI(string $tableId)
static getInstance(ilObjLTIConsumer $object)
const PART_FILTER_INACTIVE_ONLY
const PART_FILTER_ACTIVE_ONLY
static buildBasicAuth($lrsKey, $lrsSecret)
ilGlobalTemplateInterface $main_tpl
getTableDataRange(?bool $scopeUserRank=false)