123456789101112131415161718192021222324252627282930313233343536373839 |
- <?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 BackButton
- */
- class BackButton extends GenericButton implements ButtonProviderInterface
- {
- /**
- * @return array
- */
- public function getButtonData()
- {
- return [
- 'label' => __('Back'),
- 'on_click' => sprintf("location.href = '%s';", $this->getBackUrl()),
- 'class' => 'back',
- 'sort_order' => 10
- ];
- }
- /**
- * Get URL for back (reset) button
- *
- * @return string
- */
- public function getBackUrl()
- {
- return $this->getUrl('*/*/');
- }
- }
|