ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
isSupportedTrait.php
Go to the documentation of this file.
1 <?php
2 
19 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 }