ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilAdminGSToolProvider.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
24 
31 {
32  public const SHOW_ADMIN_TREE = 'show_admin_tree';
33 
35  {
36  return $this->context_collection->main()->administration();
37  }
38 
39  public function getToolsForContextStack(CalledContexts $called_contexts): array
40  {
41  $tools = [];
42  $additional_data = $called_contexts->current()->getAdditionalData();
43  if ($additional_data->is(self::SHOW_ADMIN_TREE, true)) {
44  $iff = function ($id) {
45  return $this->identification_provider->contextAwareIdentifier($id, true);
46  };
47  $l = function (string $content) {
48  return $this->dic->ui()->factory()->legacy($content);
49  };
50  $tools[] = $this->factory->tool($iff("tree"))
51  ->withTitle("Tree")
52  ->withContentWrapper(function () use ($l) {
53  return $l($this->getTree());
54  });
55  }
56 
57  return $tools;
58  }
59 
60  private function getTree(): string
61  {
62  return (new ilAdministrationExplorerGUI("ilAdministrationGUI", "showTree"))->getHTML();
63  }
64 }
Administration GS tool provider.
getToolsForContextStack(CalledContexts $called_contexts)
Administration explorer GUI class.
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