ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilHelpGSToolProvider.php
Go to the documentation of this file.
1 <?php
2 
9 
15 {
16  const SHOW_HELP_TOOL = 'show_help_tool';
17  use ilHelpDisplayed;
18  use Hasher;
19 
24  {
25  return $this->context_collection->main();
26  }
27 
31  public function getToolsForContextStack(CalledContexts $called_contexts) : array
32  {
33  global $DIC;
34 
36  $help_gui = $DIC["ilHelp"];
37 
38  $lng = $DIC->language();
39  $lng->loadLanguageModule("help");
40  $f = $DIC->ui()->factory();
41 
42  $tools = [];
43 
44  $hidden = !$help_gui->isHelpPageActive();
45 
46  $title = $lng->txt("help");
47  $icon = $f->symbol()->icon()->standard("hlps", $title)->withIsOutlined(true);
48 
49  if ($this->showHelpTool()) {
50  $iff = function ($id) {
51  return $this->identification_provider->contextAwareIdentifier($id, true);
52  };
53  $l = function (string $content) {
54  return $this->dic->ui()->factory()->legacy($content);
55  };
56 
57  $identification = $iff("help");
58  $hashed = $this->hash($identification->serialize());
59  $tools[] = $this->factory->tool($identification)
60  ->addComponentDecorator(static function (ILIAS\UI\Component\Component $c) use ($hashed, $hidden) : ILIAS\UI\Component\Component {
61  if ($c instanceof LegacySlate) {
62  $signal_id = $c->getToggleSignal()->getId();
63  return $c->withAdditionalOnLoadCode(static function ($id) use ($hashed, $hidden) {
64  return "
65  $('body').on('il-help-toggle-slate', function(){
66  if (!$('#$id').hasClass('disengaged')) {
67  il.Help.resetCurrentPage();
68  il.UI.maincontrols.mainbar.removeTool('$hashed');
69  } else {
70  il.UI.maincontrols.mainbar.engageTool('$hashed');
71  const panel = document.getElementById('ilHelpPanel');
72  const firstFocusElement = panel.querySelector('a,input,[role=\'button\'],button');
73  if (firstFocusElement) {
74  firstFocusElement.focus();
75  }
76  }
77  });";
78  });
79  }
80  return $c;
81  })
82  ->withInitiallyHidden($hidden)
83  ->withTitle($title)
84  ->withSymbol($icon)
85  ->withContentWrapper(function () use ($l) {
86  return $l($this->getHelpContent());
87  })
88  ->withPosition(90);
89  }
90 
91  return $tools;
92  }
93 
99  private function getHelpContent() : string
100  {
101  global $DIC;
102 
103  $ctrl = $DIC->ctrl();
104  $main_tpl = $DIC->ui()->mainTemplate();
105 
107  $help_gui = $DIC["ilHelp"];
108 
109  $help_gui->initHelp($main_tpl, $ctrl->getLinkTargetByClass("ilhelpgui", "", "", true));
110 
111  $html = "";
112  if ((defined("OH_REF_ID") && OH_REF_ID > 0) || DEVMODE == 1) {
113  $html = "<div class='ilHighlighted small'>Screen ID: " . $help_gui->getScreenId() . "</div>";
114  }
115 
116  $html .= "<div id='ilHelpPanel'>&nbsp;</div>";
117 
118  return $html;
119  }
120 }
Class Factory.
$c
Definition: cli.php:37
Class ilHelpGSToolProvider.
Class ChatMainBarProvider .
trait JavaScriptBindable
Trait for components implementing JavaScriptBindable providing standard implementation.
$lng
global $DIC
Definition: goto.php:24
getToolsForContextStack(CalledContexts $called_contexts)