12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- declare(strict_types=1);
- namespace Magento\Persistent\Model\Plugin;
- /**
- * Plugin for Magento\Framework\App\Http\Context to create new page cache variation for persistent session.
- */
- class PersistentCustomerContext
- {
- /**
- * Persistent session.
- *
- * @var \Magento\Persistent\Helper\Session
- */
- private $persistentSession;
- /**
- * @param \Magento\Persistent\Helper\Session $persistentSession
- */
- public function __construct(
- \Magento\Persistent\Helper\Session $persistentSession
- ) {
- $this->persistentSession = $persistentSession;
- }
- /**
- * Sets appropriate header if customer session is persistent.
- *
- * @param \Magento\Framework\App\Http\Context $subject
- * @return mixed
- */
- public function beforeGetVaryString(\Magento\Framework\App\Http\Context $subject)
- {
- if ($this->persistentSession->isPersistent()) {
- $subject->setValue('PERSISTENT', 1, 0);
- }
- }
- }
|