ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilAssQuestionPageGUI.php
Go to the documentation of this file.
1 <?php
2 
31 {
32  public const TEMP_PRESENTATION_TITLE_PLACEHOLDER = '___TEMP_PRESENTATION_TITLE_PLACEHOLDER___';
33 
35  private $questionInfoHTML = '';
36  private $questionActionsHTML = '';
37 
38 
45  public function __construct($a_id = 0, $a_old_nr = 0)
46  {
47  global $DIC;
48  $cmd_class = '';
49  if ($DIC->http()->wrapper()->query()->has('cmdClass')) {
50  $cmd_class = $DIC->http()->wrapper()->query()->retrieve(
51  'cmdClass',
52  $DIC->refinery()->kindlyTo()->string()
53  );
54  }
55 
56  parent::__construct('qpl', $a_id, $a_old_nr);
57  $this->setEnabledPageFocus(false);
58  if (strtolower($cmd_class) === 'ilassquestionpreviewgui') {
59  $this->setFileDownloadLink($this->ctrl->getLinkTargetByClass(ilObjQuestionPoolGUI::class, 'downloadFile'));
60  } else {
61  $this->setFileDownloadLink($this->ctrl->getLinkTargetByClass(ilObjTestGUI::class, 'downloadFile'));
62  }
63  }
64 
65  public function getOriginalPresentationTitle(): string
66  {
68  }
69 
71  {
72  $this->originalPresentationTitle = $originalPresentationTitle;
73  }
74 
75  protected function isPageContainerToBeRendered(): bool
76  {
77  return $this->getRenderPageContainer();
78  }
79 
80  public function showPage(): string
81  {
82  if ($this->getPresentationTitle() !== null) {
84  $this->setPresentationTitle(self::TEMP_PRESENTATION_TITLE_PLACEHOLDER);
85  }
86 
87  // fau: testNav - enable page toc as placeholder for info and actions block (see self::insertPageToc)
88  $config = $this->getPageConfig();
89  $config->setEnablePageToc('y');
90  $this->setPageConfig($config);
91  // fau.
92  return parent::showPage();
93  }
94 
95  public function finishEditing(): void
96  {
97  $this->ctrl->redirectByClass('ilAssQuestionPreviewGUI', ilAssQuestionPreviewGUI::CMD_SHOW);
98  }
99 
100  public function postOutputProcessing(string $a_output): string
101  {
102  $a_output = str_replace(
103  self::TEMP_PRESENTATION_TITLE_PLACEHOLDER,
105  $a_output
106  );
107 
108  $a_output = preg_replace("/src=\"\\.\\//ims", "src=\"" . ILIAS_HTTP_PATH . "/", $a_output);
109 
110  return $a_output;
111  }
112 
113  // fau: testNav - support the addition of question info and actions below the title
114 
119  public function setQuestionInfoHTML($a_html): void
120  {
121  $this->questionInfoHTML = $a_html;
122  }
123 
128  public function setQuestionActionsHTML($a_html): void
129  {
130  $this->questionActionsHTML = $a_html;
131  }
132 
138  public function insertPageToc(string $a_output): string
139  {
140  if (!empty($this->questionInfoHTML) || !empty($this->questionActionsHTML)) {
141  $tpl = new ilTemplate('tpl.tst_question_subtitle_blocks.html', true, true, 'components/ILIAS/TestQuestionPool');
142  $tpl->setVariable('QUESTION_INFO', $this->questionInfoHTML);
143  $tpl->setVariable('QUESTION_ACTIONS', $this->questionActionsHTML);
144  $a_output = str_replace("{{{{{PageTOC}}}}}", $tpl->get(), $a_output);
145  } else {
146  $a_output = str_replace("{{{{{PageTOC}}}}}", '', $a_output);
147  }
148  return $a_output;
149  }
150  // fau.
151 }
Class ilPageObjectGUI.
setPageConfig(ilPageConfig $a_val)
setEnabledPageFocus(bool $a_enabledpagefocus)
setVariable(string $variable, $value='')
Sets the given variable to the given value.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
ilGlobalTemplateInterface $tpl
global $DIC
Definition: shib_login.php:22
__construct($a_id=0, $a_old_nr=0)
Constructor.
setPresentationTitle(string $a_title="")
get(string $part=self::DEFAULT_BLOCK)
Renders the given block and returns the html string.
setFileDownloadLink(string $a_download_link)
postOutputProcessing(string $a_output)
__construct(Container $dic, ilPlugin $plugin)
setQuestionActionsHTML($a_html)
Set the HTML of a question actions block below the title.
insertPageToc(string $a_output)
Replace page toc placeholder with question info and actions.
setOriginalPresentationTitle($originalPresentationTitle)
setQuestionInfoHTML($a_html)
Set the HTML of a question info block below the title (number, status, ...)