Your IP : 216.73.216.97


Current Path : /var/www/clients/client3/web2/web/vendor/magento/module-customer/Block/
Upload File :
Current File : /var/www/clients/client3/web2/web/vendor/magento/module-customer/Block/CustomerData.php

<?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);
    }
}