1234567891011121314151617181920212223242526272829 |
- <?php
- /**
- * Copyright © 2016 Ihor Vansach (ihor@magefan.com). All rights reserved.
- * See LICENSE.txt for license details (http://opensource.org/licenses/osl-3.0.php).
- *
- * Glory to Ukraine! Glory to the heroes!
- */
- namespace Magefan\Blog\Block\Adminhtml\Edit;
- use Magento\Framework\View\Element\UiComponent\Control\ButtonProviderInterface;
- /**
- * Class ResetButton
- */
- class ResetButton implements ButtonProviderInterface
- {
- /**
- * @return array
- */
- public function getButtonData()
- {
- return [
- 'label' => __('Reset'),
- 'class' => 'reset',
- 'on_click' => 'location.reload();',
- 'sort_order' => 30
- ];
- }
- }
|