123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <?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 <core@magentocommerce.com>
- * @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();
- }
- }
|