ComponentVisibilityInterface.php 409 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Framework\View\Element;
  7. /**
  8. * Interface which allows to modify visibility behavior of UI components
  9. */
  10. interface ComponentVisibilityInterface
  11. {
  12. /**
  13. * Defines if the component can be shown
  14. *
  15. * @return bool
  16. */
  17. public function isComponentVisible(): bool;
  18. }