2 include_once(
"./Services/UIComponent/Panel/classes/class.ilPanelGUI.php");
3 include_once(
"Services/Form/classes/class.ilPropertyFormGUI.php");
4 include_once(
"libs/composer/vendor/geshi/geshi/src/geshi.php");
63 $this->f = $DIC->ui()->factory();
64 $this->r = $DIC->ui()->renderer();
68 $current_opened_node_id =
$_GET[
"node_id"];
70 if ($current_opened_node_id) {
71 $DIC->ctrl()->setParameterByClass(
"ilsystemstyledocumentationgui",
"node_id", $current_opened_node_id);
78 $this->ctrl = $DIC->ctrl();
86 $sub_panels = array();
88 $feature_wiki_links = array();
89 foreach ($this->entry->getFeatureWikiReferences()as $href) {
90 $feature_wiki_links[] = $href;
94 $sub_panels[] = $this->f->panel()->sub(
97 $this->f->listing()->descriptive(
99 "Purpose" => $this->entry->getDescription()->getProperty(
"purpose"),
100 "Composition" => $this->entry->getDescription()->getProperty(
"composition"),
101 "Effect" => $this->entry->getDescription()->getProperty(
"effect"),
105 $this->f->listing()->descriptive(
107 "Background" => $this->entry->getBackground(),
108 "Context" => $this->f->listing()->ordered($this->entry->getContext()),
109 "Feature Wiki References" => $this->f->listing()->ordered($feature_wiki_links)
115 if (
sizeof($this->entry->getDescription()->getProperty(
"rivals"))) {
116 $sub_panels[] = $this->f->panel()->sub(
118 $this->f->listing()->descriptive(
119 $this->entry->getDescription()->getProperty(
"rivals")
124 if ($this->entry->getRules()->hasRules()) {
125 $rule_listings = array();
126 foreach ($this->entry->getRulesAsArray() as $categoery => $category_rules) {
127 $rule_listings[ucfirst($categoery)] = $this->f->listing()->ordered($category_rules);
131 $sub_panels[] = $this->f->panel()->sub(
133 $this->f->listing()->descriptive($rule_listings)
138 if ($this->entry->getExamples()) {
140 foreach ($this->entry->getExamples() as
$name => $path) {
142 $title =
"Example " . $nr .
": " . ucfirst(str_replace(
"_",
" ", $name));
145 $example =
"<div class='well'>" .
$name() .
"</div>";
146 }
catch(\
ILIAS\
UI\NotImplementedException
$e){
147 $example =
"<div class='well'>This component is not yet fully implemented.</div>";
149 $content_part_1 = $this->f->legacy($example);
150 $code = str_replace(
"<?php\n",
"", file_get_contents($path));
151 $geshi =
new GeSHi($code,
"php");
153 $code_html =
"<div class='code-container'>" . $geshi->parse_code() .
"</div>";
154 $content_part_2 = $this->f->legacy($code_html);
155 $content = array($content_part_1,$content_part_2);
156 $sub_panels[] = $this->f->panel()->sub($title, $content);
159 $sub_panels[] = $this->f->panel()->sub(
'Relations', [
160 $this->f->listing()->descriptive(
162 "Parents" => $this->f->listing()->ordered(
163 $this->entries->getParentsOfEntryTitles($this->entry->getId())
165 "Descendants" => $this->f->listing()->unordered(
166 $this->entries->getDescendantsOfEntryTitles($this->entry->getId())
173 $report = $this->f->panel()
174 ->report($this->entry->getTitle(), $sub_panels);
176 return $this->r->render($report);
Class ChatMainBarProvider .
setEntries(Entry\ComponentEntries $entries)
setEntry(Entry\ComponentEntry $entry)
__construct(ilSystemStyleDocumentationGUI $parent)
ilKSDocumentationEntryGUI constructor.