![]() 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-customer/Block/Address/Renderer/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Block\Address\Renderer; use Magento\Directory\Model\Country\Format; use Magento\Customer\Model\Address\AddressModelInterface; /** * Address renderer interface * * @api * @author Magento Core Team <[email protected]> */ interface RendererInterface { /** * Set format type object * * @param \Magento\Framework\DataObject $type * @return void */ public function setType(\Magento\Framework\DataObject $type); /** * Retrieve format type object * * @return \Magento\Framework\DataObject */ public function getType(); /** * Render address * * @param AddressModelInterface $address * @param string|null $format * @return mixed * All new code should use renderArray based on Metadata service */ public function render(AddressModelInterface $address, $format = null); /** * Get a format object for a given address attributes, based on the type set earlier. * * @param null|array $addressAttributes * @return Format */ public function getFormatArray($addressAttributes = null); /** * Render address by attribute array * * @param array $addressAttributes * @param Format|null $format * @return string */ public function renderArray($addressAttributes, $format = null); }