1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Backend\Block\Widget;
- /**
- * @api
- * @since 100.0.2
- */
- interface ContainerInterface extends \Magento\Backend\Block\Widget\Button\ContextInterface
- {
- /**
- * Public wrapper for the button list
- *
- * @param string $buttonId
- * @param array $data
- * @param integer $level
- * @param integer $sortOrder
- * @param string|null $region That button should be displayed in ('toolbar', 'header', 'footer', null)
- * @return $this
- */
- public function addButton($buttonId, $data, $level = 0, $sortOrder = 0, $region = 'toolbar');
- /**
- * Public wrapper for the button list
- *
- * @param string $buttonId
- * @return $this
- */
- public function removeButton($buttonId);
- /**
- * Public wrapper for protected _updateButton method
- *
- * @param string $buttonId
- * @param string|null $key
- * @param string $data
- * @return $this
- */
- public function updateButton($buttonId, $key, $data);
- }
|