![]() 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/cartforge.co/vendor/magento/module-backend/Block/Dashboard/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Dashboard; use Magento\Directory\Model\Currency; use Magento\Store\Model\Store; /** * Adminhtml dashboard bar block * * @author Magento Core Team <[email protected]> */ class Bar extends \Magento\Backend\Block\Dashboard\AbstractDashboard { /** * @var array */ protected $_totals = []; /** * @var Currency|null */ protected $_currentCurrencyCode = null; /** * @var Currency */ private $_currency; /** * Get totals * * @return array */ public function getTotals() { return $this->_totals; } /** * Add total * * @param string $label * @param float $value * @param bool $isQuantity * @return $this */ public function addTotal($label, $value, $isQuantity = false) { if (!$isQuantity) { $value = $this->format($value); } $decimals = ''; $this->_totals[] = ['label' => $label, 'value' => $value, 'decimals' => $decimals]; return $this; } /** * Formatting value specific for this store * * @param float $price * @return string */ public function format($price) { return $this->getCurrency()->format($price); } /** * Setting currency model * * @param Currency $currency * @return void */ public function setCurrency($currency) { $this->_currency = $currency; } /** * Retrieve currency model if not set then return currency model for current store * * @return Currency * @SuppressWarnings(PHPMD.RequestAwareBlockMethod) */ public function getCurrency() { if ($this->_currentCurrencyCode === null) { if ($this->getRequest()->getParam('store')) { $this->_currentCurrencyCode = $this->_storeManager->getStore( $this->getRequest()->getParam('store') )->getBaseCurrency(); } elseif ($this->getRequest()->getParam('website')) { $this->_currentCurrencyCode = $this->_storeManager->getWebsite( $this->getRequest()->getParam('website') )->getBaseCurrency(); } elseif ($this->getRequest()->getParam('group')) { $this->_currentCurrencyCode = $this->_storeManager->getGroup( $this->getRequest()->getParam('group') )->getWebsite()->getBaseCurrency(); } else { $this->_currentCurrencyCode = $this->_storeManager->getStore(Store::DEFAULT_STORE_ID) ->getBaseCurrency(); } } return $this->_currentCurrencyCode; } }