ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
ForumGlobalScreenToolsProvider.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
24 
30 {
31  public const SHOW_FORUM_THREADS_TOOL = 'show_forum_threads_tool';
32  public const REF_ID = 'ref_id';
33  public const FORUM_THEAD = 'frm_thread';
34  public const FORUM_THREAD_ROOT = 'frm_thread_root';
35  public const FORUM_BASE_CONTROLLER = 'frm_base_controller';
36  public const PAGE = 'frm_thread_page';
37 
38  public function isInterestedInContexts(): \ILIAS\GlobalScreen\ScreenContext\Stack\ContextCollection
39  {
40  return $this->context_collection->main()->repository()->administration();
41  }
42 
43  public function getToolsForContextStack(
44  \ILIAS\GlobalScreen\ScreenContext\Stack\CalledContexts $called_contexts
45  ): array {
46  $iff = function (string $id): IdentificationInterface {
47  return $this->identification_provider->contextAwareIdentifier($id);
48  };
49  $l = function (string $content): Component {
50  return $this->dic->ui()->factory()->legacy($content);
51  };
52 
53  $tools = [];
54 
55  $additionalData = $called_contexts->getLast()->getAdditionalData();
56  if ($additionalData->exists(self::SHOW_FORUM_THREADS_TOOL) && $additionalData->get(self::SHOW_FORUM_THREADS_TOOL) === true) {
57  $thread = $additionalData->get(self::FORUM_THEAD);
58  $controller = $additionalData->get(self::FORUM_BASE_CONTROLLER);
59  $root = $additionalData->get(self::FORUM_THREAD_ROOT);
60 
61  if ($root instanceof ilForumPost) {
62  $title = $this->dic->language()->txt('forums_articles');
63  $icon = $this->dic->ui()->factory()->symbol()->icon()->standard('frm', $title);
64 
65  $tools[] = $this->factory
66  ->tool($iff('Forum|Tree'))
67  ->withTitle($title)
68  ->withSymbol($icon)
69  ->withContentWrapper(static function () use ($l, $controller, $thread, $root): Component {
70  $exp = new ilForumExplorerGUI(
71  'frm_exp_' . $thread->getId(),
72  $controller,
73  'viewThread',
74  $thread,
75  $root
76  );
77 
78  return $l($exp->getHTML(true));
79  });
80  }
81  }
82 
83  return $tools;
84  }
85 }
Class ilForumExplorerGUI.
getToolsForContextStack(\ILIAS\GlobalScreen\ScreenContext\Stack\CalledContexts $called_contexts)
Class ChatMainBarProvider .
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Class ForumGlobalScreenToolsProvider.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23