123456789101112131415161718192021222324252627 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Backend\Block\Widget\Button;
- /**
- * Interface \Magento\Backend\Block\Widget\Button\ToolbarInterface
- *
- */
- interface ToolbarInterface
- {
- /**
- * Push buttons into toolbar
- *
- * @param \Magento\Framework\View\Element\AbstractBlock $context
- * @param \Magento\Backend\Block\Widget\Button\ButtonList $buttonList
- * @return void
- * @api
- */
- public function pushButtons(
- \Magento\Framework\View\Element\AbstractBlock $context,
- \Magento\Backend\Block\Widget\Button\ButtonList $buttonList
- );
- }
|