![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-sales/Block/Adminhtml/Order/Create/Billing/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Create\Billing; /** * Adminhtml sales order create billing address block * * @api * @author Magento Core Team <[email protected]> * @SuppressWarnings(PHPMD.DepthOfInheritance) * @since 100.0.2 */ class Address extends \Magento\Sales\Block\Adminhtml\Order\Create\Form\Address { /** * Return header text * * @return \Magento\Framework\Phrase */ public function getHeaderText() { return __('Billing Address'); } /** * Return Header CSS Class * * @return string */ public function getHeaderCssClass() { return 'head-billing-address'; } /** * Prepare Form and add elements to form * * @return $this */ protected function _prepareForm() { $this->setJsVariablePrefix('billingAddress'); parent::_prepareForm(); $this->_form->addFieldNameSuffix('order[billing_address]'); $this->_form->setHtmlNamePrefix('order[billing_address]'); $this->_form->setHtmlIdPrefix('order-billing_address_'); return $this; } /** * Return Form Elements values * * @return array */ public function getFormValues() { return $this->getCreateOrderModel()->getBillingAddress()->getData(); } /** * Return customer address id * * @return int|bool */ public function getAddressId() { return $this->getCreateOrderModel()->getBillingAddress()->getCustomerAddressId(); } /** * Return billing address object * * @return \Magento\Quote\Model\Quote\Address */ public function getAddress() { return $this->getCreateOrderModel()->getBillingAddress(); } }