![]() 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/Totals/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Totals; /** * Totals item block * * @api * @since 100.0.2 */ class Item extends \Magento\Sales\Block\Adminhtml\Order\Totals { /** * Determine display parameters before rendering HTML * * @return $this */ protected function _beforeToHtml() { parent::_beforeToHtml(); $this->setCanDisplayTotalPaid($this->getParentBlock()->getCanDisplayTotalPaid()); $this->setCanDisplayTotalRefunded($this->getParentBlock()->getCanDisplayTotalRefunded()); $this->setCanDisplayTotalDue($this->getParentBlock()->getCanDisplayTotalDue()); return $this; } /** * Initialize totals object * * @return $this */ public function initTotals() { $total = new \Magento\Framework\DataObject( [ 'code' => $this->getNameInLayout(), 'block_name' => $this->getNameInLayout(), 'area' => $this->getDisplayArea(), 'strong' => $this->getStrong(), ] ); if ($this->getBeforeCondition()) { $this->getParentBlock()->addTotalBefore($total, $this->getBeforeCondition()); } else { $this->getParentBlock()->addTotal($total, $this->getAfterCondition()); } return $this; } /** * Price HTML getter * * @param float $baseAmount * @param float $amount * @return string */ public function displayPrices($baseAmount, $amount) { return $this->_adminHelper->displayPrices($this->getOrder(), $baseAmount, $amount); } /** * Price attribute HTML getter * * @param string $code * @param bool $strong * @param string $separator * @return string */ public function displayPriceAttribute($code, $strong = false, $separator = '<br/>') { return $this->_adminHelper->displayPriceAttribute($this->getSource(), $code, $strong, $separator); } /** * Source order getter * * @return \Magento\Sales\Model\Order */ public function getSource() { return $this->getParentBlock()->getSource(); } }