ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilHelpViewLayoutProvider.php
Go to the documentation of this file.
1 <?php
2 
29 
35 {
36  use Hasher;
37  use ilHelpDisplayed;
38 
40  {
41  return $this->context_collection->main();
42  }
43 
47  public function getMainBarModification(
48  CalledContexts $screen_context_stack
50  global $DIC;
51 
52  if (!$this->showHelpTool()) {
53  return null;
54  }
55 
56  $f = $DIC->ui()->factory();
57  $ttm = $DIC->help()->internal()->domain()->tooltips();
58 
59  $this->globalScreen()->collector()->mainmenu()->collectOnce();
60  foreach ($this->globalScreen()->collector()->mainmenu()->getRawItems() as $item) {
61  if ($item instanceof isDecorateable) {
62  $p = $item->getProviderIdentification();
63 
64  $tt_text = $ttm->getMainMenuTooltip($p->getInternalIdentifier());
65  $tt_text = addslashes(str_replace(array("\n", "\r"), '', $tt_text));
66  if ($tt_text !== "") {
67  //$item->withTopics($DIC->ui()->factory()->helpTopics($p->getInternalIdentifier()));
68  $item->withTopics(...$DIC->ui()->factory()->helpTopics($tt_text));
69  }
70  }
71 
72  if ($tt_text !== "" && $item instanceof hasSymbol && $item->hasSymbol()) {
73  $item->addSymbolDecorator(static function (Symbol $symbol) use ($tt_text, $f): Symbol {
74  /* This does not work for multiple reasons, first, symbols do no
75  accept help topics. Even if they would, it would be the wrong ui element to attach
76  a help tooltip, since the symbol may be smaller than the parent button or link
77  we need a $item->hasLink() and $item->hasButton() and Link and Button decorators instead
78  return $symbol->withHelpTopics(
79  ...$f->helpTopics($tt_text)
80  );*/
81  return $symbol->withAdditionalOnLoadCode(static function ($id) use ($tt_text): string {
82  return "il.Tooltip.addToNearest('$id', 'button,a', { context:'', my:'bottom center', at:'top center', text:'$tt_text' });";
83  });
84  });
85  }
86  }
87 
88  return null;
89  }
90 }
This describes a symbol.
Definition: Symbol.php:29
getMainBarModification(CalledContexts $screen_context_stack)
No main bar in HTML exports.
trait JavaScriptBindable
Trait for components implementing JavaScriptBindable providing standard implementation.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
global $DIC
Definition: shib_login.php:22
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
HTML export view layout provider, hides main and meta bar.
withAdditionalOnLoadCode(Closure $binder)
Add some onload-code to the component instead of replacing the existing one.