ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
AbstractFooterItemRenderer.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
23 use ILIAS\Data\URI;
30 
35 {
37  use isSupportedTrait;
38 
39  public function __construct(protected UIServices $ui)
40  {
41  }
42 
43  protected function getURI(string $uri_string): URI
44  {
45  if (str_starts_with($uri_string, 'http')) {
46  return new URI($uri_string);
47  }
48 
49  return new URI(rtrim(ILIAS_HTTP_PATH, "/") . "/" . ltrim($uri_string, "./"));
50  }
51 
52  public function getComponentForItem(isItem $item): Component|array
53  {
54  $component = $this->getSpecificComponentForItem($item);
55  if ($component instanceof Component) {
56  $component = $this->applyComponentDecorator($component, $item);
57  if ($component instanceof HasHelpTopics) {
58  return $component->withHelpTopics(...$item->getTopics());
59  }
60  }
61 
62  // decoratory are applied to array elemts in specific rendereres
63 
64  return $component;
65  }
66 
67  abstract protected function getSpecificComponentForItem(isItem $item): Component|array;
68 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Provides fluid interface to RBAC services.
Definition: UIServices.php:24