ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilHelpViewLayoutProvider.php
Go to the documentation of this file.
1 <?php
2 
28 
34 {
35  use Hasher;
36  use ilHelpDisplayed;
37 
39  {
40  return $this->context_collection->main();
41  }
42 
46  public function getMainBarModification(
47  CalledContexts $screen_context_stack
49  if (!$this->showHelpTool()) {
50  return null;
51  }
52  $this->globalScreen()->collector()->mainmenu()->collectOnce();
53  foreach ($this->globalScreen()->collector()->mainmenu()->getRawItems() as $item) {
54  $p = $item->getProviderIdentification();
55 
56  $tt_text = ilHelp::getMainMenuTooltip($p->getInternalIdentifier());
57  $tt_text = addslashes(str_replace(array("\n", "\r"), '', $tt_text));
58 
59  if ($tt_text !== "" && $item instanceof hasSymbol && $item->hasSymbol()) {
60  $item->addSymbolDecorator(static function (Symbol $symbol) use ($tt_text): Symbol {
61  return $symbol->withAdditionalOnLoadCode(static function ($id) use ($tt_text): string {
62  return "il.Tooltip.addToNearest('$id', 'button,a', { context:'', my:'bottom center', at:'top center', text:'$tt_text' });";
63  });
64  });
65  }
66  }
67 
69 
70  return null;
71  }
72 }
This describes a symbol.
Definition: Symbol.php:29
static init()
Initializes the needed tooltip libraries.
getMainBarModification(CalledContexts $screen_context_stack)
No main bar in HTML exports.
trait JavaScriptBindable
Trait for components implementing JavaScriptBindable providing standard implementation.
Interface hasSymbol Methods for Entries with Symbols.
Definition: hasSymbol.php:32
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
HTML export view layout provider, hides main and meta bar.
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
withAdditionalOnLoadCode(Closure $binder)
Add some onload-code to the component instead of replacing the existing one.
static getMainMenuTooltip(string $a_item_id)