<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Customer\Block\Adminhtml;
use Magento\Customer\Api\AccountManagementInterface;
use Magento\Customer\Api\CustomerRepositoryInterface;
use Magento\Customer\Controller\RegistryConstants;
/**
* @deprecated 100.2.0 for UiComponent replacement
* @see app/code/Magento/Customer/view/base/ui_component/customer_form.xml
*/
class Edit extends \Magento\Backend\Block\Widget\Form\Container
{
/**
* Core registry
*
* @var \Magento\Framework\Registry
*/
protected $_coreRegistry = null;
/**
* @var AccountManagementInterface
*/
protected $customerAccountManagement;
/**
* @var CustomerRepositoryInterface
*/
protected $customerRepository;
/**
* Customer view helper
*
* @var \Magento\Customer\Helper\View
*/
protected $_viewHelper;
/**
* Constructor
*
* @param \Magento\Backend\Block\Widget\Context $context
* @param \Magento\Framework\Registry $registry
* @param AccountManagementInterface $customerAccountManagement
* @param CustomerRepositoryInterface $customerRepository
* @param \Magento\Customer\Helper\View $viewHelper
* @param array $data
*/
public function __construct(
\Magento\Backend\Block\Widget\Context $context,
\Magento\Framework\Registry $registry,
AccountManagementInterface $customerAccountManagement,
CustomerRepositoryInterface $customerRepository,
\Magento\Customer\Helper\View $viewHelper,
array $data = []
) {
$this->_coreRegistry = $registry;
$this->customerAccountManagement = $customerAccountManagement;
$this->customerRepository = $customerRepository;
$this->_viewHelper = $viewHelper;
parent::__construct($context, $data);
}
/**
* @return void
*/
protected function _construct()
{
$this->_objectId = 'id';
$this->_controller = 'adminhtml';
$this->_blockGroup = 'Magento_Customer';
$customerId = $this->getCustomerId();
if ($customerId && $this->_authorization->isAllowed('Magento_Sales::create')) {
$this->buttonList->add(
'order',
[
'label' => __('Create Order'),
'onclick' => 'setLocation(\'' . $this->getCreateOrderUrl() . '\')',
'class' => 'add'
],
0
);
}
parent::_construct();
$this->buttonList->update('save', 'label', __('Save Customer'));
$this->buttonList->update('delete', 'label', __('Delete Customer'));
if ($customerId && $this->customerAccountManagement->isReadonly($customerId)) {
$this->buttonList->remove('save');
$this->buttonList->remove('reset');
}
if (!$customerId || $this->customerAccountManagement->isReadonly($customerId)) {
$this->buttonList->remove('delete');
}
if ($customerId) {
$url = $this->getUrl('customer/index/resetPassword', ['customer_id' => $customerId]);
$this->buttonList->add(
'reset_password',
[
'label' => __('Reset Password'),
'onclick' => 'setLocation(\'' . $url . '\')',
'class' => 'reset reset-password'
],
0
);
}
if ($customerId) {
$url = $this->getUrl('customer/customer/invalidateToken', ['customer_id' => $customerId]);
$deleteConfirmMsg = __("Are you sure you want to revoke the customer's tokens?");
$this->buttonList->add(
'invalidate_token',
[
'label' => __('Force Sign-In'),
'onclick' => 'deleteConfirm(\'' . $this->escapeJs($this->escapeHtml($deleteConfirmMsg)) .
'\', \'' . $url . '\')',
'class' => 'invalidate-token'
],
10
);
}
}
/**
* Retrieve the Url for creating an order.
*
* @return string
*/
public function getCreateOrderUrl()
{
return $this->getUrl('sales/order_create/start', ['customer_id' => $this->getCustomerId()]);
}
/**
* Return the customer Id.
*
* @return int|null
*/
public function getCustomerId()
{
$customerId = $this->_coreRegistry->registry(RegistryConstants::CURRENT_CUSTOMER_ID);
return $customerId;
}
/**
* Retrieve the header text, either the name of an existing customer or 'New Customer'.
*
* @return \Magento\Framework\Phrase|string
*/
public function getHeaderText()
{
$customerId = $this->getCustomerId();
if ($customerId) {
$customerData = $this->customerRepository->getById($customerId);
return $this->escapeHtml($this->_viewHelper->getCustomerName($customerData));
} else {
return __('New Customer');
}
}
/**
* Prepare form Html. Add block for configurable product modification interface.
*
* @return string
*/
public function getFormHtml()
{
$html = parent::getFormHtml();
$html .= $this->getLayout()->createBlock(
\Magento\Catalog\Block\Adminhtml\Product\Composite\Configure::class
)->toHtml();
return $html;
}
/**
* Retrieve customer validation Url.
*
* @return string
*/
public function getValidationUrl()
{
return $this->getUrl('customer/*/validate', ['_current' => true]);
}
/**
* Prepare the layout.
*
* @return $this
*/
protected function _prepareLayout()
{
$customerId = $this->getCustomerId();
if (!$customerId || !$this->customerAccountManagement->isReadonly($customerId)) {
$this->buttonList->add(
'save_and_continue',
[
'label' => __('Save and Continue Edit'),
'class' => 'save',
'data_attribute' => [
'mage-init' => [
'button' => ['event' => 'saveAndContinueEdit', 'target' => '#edit_form'],
],
]
],
10
);
}
return parent::_prepareLayout();
}
/**
* Retrieve the save and continue edit Url.
*
* @return string
*/
protected function _getSaveAndContinueUrl()
{
return $this->getUrl(
'customer/index/save',
['_current' => true, 'back' => 'edit', 'tab' => '{{tab_id}}']
);
}
}
|