ILIAS  trunk Revision v12.0_alpha-16-g3e876e53c80
class.PageManager.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
24
26{
27 public function __construct(
28 protected InternalDomainService $domain
29 ) {
30 }
31
32 public function printPage(int $step_id): void
33 {
34 // get page object
35 $page_gui = new \ilGuidedTourPageGUI($step_id);
36 $page_gui->setPresentationTitle("");
37 $page_gui->setTemplateOutput(false);
38 $page_gui->setHeader("");
39 $page_gui->showPageFullscreen();
40 }
41}
__construct(protected InternalDomainService $domain)