Skip to content

Commit

Permalink
Minor rebasing adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
matheuszych authored and kergomard committed Oct 25, 2024
1 parent 512b76d commit cd45a17
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ public function __construct(
private readonly ilUIService $ui_service,
private readonly DataFactory $data_factory,
private readonly TaxonomyService $taxonomy,
private readonly \Closure $questionPoolLinkBuilder
) {
}

Expand Down Expand Up @@ -138,7 +137,6 @@ private function getQuestionsBrowserTable(string $parent_title = ''): QuestionsB
$this->tree,
$this->testrequest,
$this->taxonomy,
$this->questionPoolLinkBuilder,
$parent_title
);
}
Expand Down
2 changes: 0 additions & 2 deletions components/ILIAS/Test/classes/class.ilObjTestGUI.php
Original file line number Diff line number Diff line change
Expand Up @@ -659,7 +659,6 @@ public function executeCommand(): void
$this->obj_data_cache,
$test_process_locker_factory,
$this->testrequest,
$this->title_builder,
$this->questionrepository
);
$this->ctrl->forwardCommand($gui);
Expand Down Expand Up @@ -691,7 +690,6 @@ public function executeCommand(): void
$this->ui_service,
$this->data_factory,
$this->taxonomy,
static fn() => ''
);
$this->ctrl->forwardCommand($gui);
break;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
use ILIAS\Data\Order;
use ILIAS\Data\Range;
use ILIAS\Test\RequestDataCollector;
use ILIAS\Test\Utilities\TitleColumnsBuilder;
use ILIAS\UI\Component\Table\Action\Standard as TableAction;
use ILIAS\UI\Component\Table\Column\Column;
use ILIAS\UI\Component\Table\DataRetrieval;
Expand Down Expand Up @@ -55,7 +56,6 @@ public function __construct(
protected \ilTree $tree,
protected RequestDataCollector $testrequest,
protected TaxonomyService $taxonomy,
protected \Closure $getQuestionPoolLink,
protected string $parent_title
) {
}
Expand Down Expand Up @@ -166,7 +166,6 @@ public function getRows(
$record['type_tag'] = $this->lng->txt($record['type_tag']);
$record['complete'] = (bool) $record['complete'];
$record['lifecycle'] = \ilAssQuestionLifecycle::getInstance($record['lifecycle'])->getTranslation($this->lng) ?? '';
$record['qpl'] = call_user_func($this->getQuestionPoolLink, $record['orig_obj_fi'] ?? null);

$record['created'] = (new \DateTimeImmutable())->setTimestamp($record['created']);
$record['tstamp'] = (new \DateTimeImmutable())->setTimestamp($record['tstamp']);
Expand Down
1 change: 0 additions & 1 deletion lang/ilias_de.lang
Original file line number Diff line number Diff line change
Expand Up @@ -2043,7 +2043,6 @@ assessment#:#units#:#Einheiten
assessment#:#unlimited#:#unbegrenzt
assessment#:#unlock#:#Entsperren
assessment#:#updated#:#Aktualisiert
assessment#:#updated#:#Aktualisiert
assessment#:#uploaded_material#:#Hochgeladene Materialien
assessment#:#use_previous_solution#:#Verwende vorherige Lösung
assessment#:#use_previous_solution_advice#:#Die angezeigte Lösung wurde vormals von Ihnen abgegeben. Sie müssen die Übernahme dieser Lösung unterhalb der Frage bestätigen, falls Sie die Lösung ohne Änderungen übernehmen wollen.
Expand Down

0 comments on commit cd45a17

Please sign in to comment.