![]() 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/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Block; /** * @api * @since 100.0.2 */ class CustomerData extends \Magento\Framework\View\Element\Template { /** * @var array */ private $expirableSectionNames; /** * @param \Magento\Framework\View\Element\Template\Context $context * @param array $data * @param array $expirableSectionNames */ public function __construct( \Magento\Framework\View\Element\Template\Context $context, array $data = [], array $expirableSectionNames = [] ) { parent::__construct($context, $data); $this->expirableSectionNames = $expirableSectionNames; } /** * Get CookieLifeTime * @return null|string scopeCode */ public function getCookieLifeTime() { return $this->_scopeConfig->getValue( \Magento\Framework\Session\Config::XML_PATH_COOKIE_LIFETIME, \Magento\Store\Model\ScopeInterface::SCOPE_STORE ); } /** * Get url for customer data ajax requests. Returns url with protocol matching used to request page. * * @param string $route * @return string Customer data url. */ public function getCustomerDataUrl($route) { return $this->getUrl($route, ['_secure' => $this->getRequest()->isSecure()]); } /** * Retrieve lifetime period (in minutes) of the frontend section configuration. * * Once this period has expired the corresponding section must be invalidated and reloaded. * * @return int section lifetime in minutes * @since 101.0.0 */ public function getExpirableSectionLifetime() { return (int)$this->_scopeConfig->getValue('customer/online_customers/section_data_lifetime'); } /** * Retrieve the list of sections that can expire. * * @return array * @since 101.0.0 */ public function getExpirableSectionNames() { return array_values($this->expirableSectionNames); } }