1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
- /**
- * Copyright © 2015-2017 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 DuplicateButton
- */
- class DuplicateButton extends GenericButton implements ButtonProviderInterface
- {
- /**
- * @return array
- */
- public function getButtonData()
- {
- $data = [];
- if ($this->getPostId()) {
- $data = [
- 'label' => __('Duplicate'),
- 'class' => 'duplicate',
- 'on_click' => 'window.location=\'' . $this->getDuplicateUrl() . '\'',
- 'sort_order' => 40,
- ];
- }
- return $data;
- }
- /**
- * @return string
- */
- public function getDuplicateUrl()
- {
- return $this->getUrl('*/*/duplicate', ['id' => $this->getPostId()]);
- }
- }
|