ToolbarInterface.php 666 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Backend\Block\Widget\Button;
  7. /**
  8. * Interface \Magento\Backend\Block\Widget\Button\ToolbarInterface
  9. *
  10. */
  11. interface ToolbarInterface
  12. {
  13. /**
  14. * Push buttons into toolbar
  15. *
  16. * @param \Magento\Framework\View\Element\AbstractBlock $context
  17. * @param \Magento\Backend\Block\Widget\Button\ButtonList $buttonList
  18. * @return void
  19. * @api
  20. */
  21. public function pushButtons(
  22. \Magento\Framework\View\Element\AbstractBlock $context,
  23. \Magento\Backend\Block\Widget\Button\ButtonList $buttonList
  24. );
  25. }