1234567891011121314151617181920212223 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Backend\Block\Widget\Grid\Massaction;
- use Magento\Framework\View\Element\Block\ArgumentInterface;
- /**
- * @api
- * @since 100.2.0
- */
- interface VisibilityCheckerInterface extends ArgumentInterface
- {
- /**
- * Check that action can be displayed on massaction list
- *
- * @return bool
- * @since 100.2.0
- */
- public function isVisible();
- }
|