ILIAS  trunk Revision v11.0_alpha-1715-g7fc467680fb
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.PageManager.php
Go to the documentation of this file.
1 <?php
2 
20 
22 
27 {
28  protected ?string $lang = null;
30  protected \ilContainer $container;
31  protected \ILIAS\Style\Content\DomainService $content_style_domain;
32 
33  public function __construct(
34  InternalDomainService $domain_service,
35  \ILIAS\Style\Content\DomainService $content_style_domain,
36  \ilContainer $container,
37  ?string $lang = null
38  ) {
39  $this->content_style_domain = $content_style_domain;
40  $this->domain_service = $domain_service;
41  $this->container = $container;
42  $user = $this->domain_service->user();
43  if (is_null($lang)) {
44  $ot = \ilObjectTranslation::getInstance($this->container->getId());
45  $this->lang = $ot->getEffectiveContentLang($user->getCurrentLanguage(), "cont");
46  } else {
47  $this->lang = $lang;
48  }
49  }
50 
51  public function getHtml(): string
52  {
53  $settings = $this->domain_service->settings();
54 
55  if (!$settings->get("enable_cat_page_edit") || $this->container->filteredSubtree()) {
56  return "";
57  }
58 
59  // if page does not exist, return nothing
61  "cont",
62  $this->container->getId(),
64  )) {
65  return "";
66  }
67 
68  // get page object
69  $page_gui = new \ilContainerPageGUI($this->container->getId(), 0, $this->lang);
70  $style = $this->content_style_domain->styleForRefId($this->container->getRefId());
71  $page_gui->setStyleId($style->getEffectiveStyleId());
72 
73  $page_gui->setPresentationTitle("");
74  $page_gui->setTemplateOutput(false);
75  $page_gui->setHeader("");
76  $html = $page_gui->showPage();
77 
78  return $html;
79  }
80 
81  public function getDom(): ?\DOMDocument
82  {
83  $settings = $this->domain_service->settings();
84 
85  if (!$settings->get("enable_cat_page_edit") || $this->container->filteredSubtree()) {
86  return null;
87  }
88 
89  // if page does not exist, return nothing
91  "cont",
92  $this->container->getId(),
94  )) {
95  return null;
96  }
97 
98  // get page object
99  $page_gui = new \ilContainerPageGUI($this->container->getId(), 0, $this->lang);
100  $page = $page_gui->getPageObject();
101  $page->buildDom();
102  return $page->getDomDoc();
103  }
104 
105 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Interface Observer Contains several chained tasks and infos about them.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static _existsAndNotEmpty(string $a_parent_type, int $a_id, string $a_lang="-")
checks whether page exists and is not empty (may return true on some empty pages) ...
static getInstance(int $obj_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(InternalDomainService $domain_service, \ILIAS\Style\Content\DomainService $content_style_domain, \ilContainer $container, ?string $lang=null)