ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
isSupportedTrait.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
21 
25 use ILIAS\UI\Component\Link\Bulky as BulkyLink;
27 
32 trait isSupportedTrait
33 {
38  protected function isComponentSupportedForCombinedSlate(Component $component): bool
39  {
40  return ($component instanceof BulkyButton || $component instanceof Slate || $component instanceof BulkyLink || $component instanceof Horizontal);
41  }
42 
47  protected function isSupportedForMetaBar(Component $component): bool
48  {
49  return ($component instanceof BulkyButton || $component instanceof Slate);
50  }
51 }
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...