ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilTestPlayerToolProvider.php
Go to the documentation of this file.
1 <?php
18 declare(strict_types=1);
19 
23 
25 {
27  {
28  return $this->context_collection->main();
29  }
30 
34  public function getToolsForContextStack(CalledContexts $called_contexts): array
35  {
36  $additionalData = $called_contexts->current()->getAdditionalData();
37  $has_question_list = $additionalData->exists(ilTestPlayerLayoutProvider::TEST_PLAYER_QUESTIONLIST);
38 
39  if (!$has_question_list) {
40  return [];
41  }
42 
43  $ui = $this->dic->ui();
44  $lng = $this->dic->language();
45 
46  return [
47  $this->factory->tool(
48  $this->identification_provider->contextAwareIdentifier('tst_qst_list')
49  )->withSymbol($ui->factory()->symbol()->icon()->standard('tst', $lng->txt('more')))
50  ->withTitle($lng->txt('mainbar_button_label_questionlist'))
51  ->withContent(
52  $ui->factory()->legacy(
53  $ui->renderer()->render(
54  $called_contexts->current()->getAdditionalData()->get(ilTestPlayerLayoutProvider::TEST_PLAYER_QUESTIONLIST)
55  )
56  )
57  )
58  ];
59  }
60 }
factory()
getToolsForContextStack(CalledContexts $called_contexts)
global $lng
Definition: privfeed.php:31