| Current Path : /home/rtorresani/www/vendor/magento/module-cms/Block/Adminhtml/Page/Edit/ |
| Current File : //home/rtorresani/www/vendor/magento/module-cms/Block/Adminhtml/Page/Edit/DeleteButton.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Cms\Block\Adminhtml\Page\Edit;
use Magento\Framework\View\Element\UiComponent\Control\ButtonProviderInterface;
/**
* Class DeleteButton
*/
class DeleteButton extends GenericButton implements ButtonProviderInterface
{
/**
* @inheritDoc
*/
public function getButtonData()
{
$data = [];
if ($this->getPageId()) {
$data = [
'label' => __('Delete Page'),
'class' => 'delete',
'on_click' => 'deleteConfirm(\'' . __(
'Are you sure you want to do this?'
) . '\', \'' . $this->getDeleteUrl() . '\', {"data": {}})',
'sort_order' => 20,
];
}
return $data;
}
/**
* Url to send delete requests to.
*
* @return string
*/
public function getDeleteUrl()
{
return $this->getUrl('*/*/delete', ['page_id' => $this->getPageId()]);
}
}