/
githubmirror
/
magento2
Обзор
Документация
Войти
/
githubmirror
/
magento2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.4-develop
lib/internal/Magento/Framework/App/Request/DataPersistor.php
66 строк
1 KB
Alexandra Zota
ACP2E-4019: CE copyright updates for 2.4.9-beta1
22 окт 2025, 17:47
22 окт 2025, 17:47
1b769b7
Код
Авторство
О чём код?
<?php /** * Copyright 2016 Adobe * All Rights Reserved. */ namespace Magento\Framework\App\Request; use Magento\Framework\Api\SimpleDataObjectConverter; use Magento\Framework\Session\SessionManagerInterface; /** * Persist data to session. */ class DataPersistor implements DataPersistorInterface { /** * @var SessionManagerInterface */ protected $session; /** * @param SessionManagerInterface $session */ public function __construct( SessionManagerInterface $session ) { $this->session = $session; } /** * Store data by key * * @param string $key * @param mixed $data * @return void */ public function set($key, $data) { $method = 'set' . SimpleDataObjectConverter::snakeCaseToUpperCamelCase($key) . 'Data'; call_user_func_array([$this->session, $method], [$data]); } /** * Retrieve data by key * * @param string $key * @return mixed */ public function get($key) { $method = 'get' . SimpleDataObjectConverter::snakeCaseToUpperCamelCase($key) . 'Data'; return call_user_func_array([$this->session, $method], []); } /** * Clear data by key * * @param string $key * @return void */ public function clear($key) { $method = 'uns' . SimpleDataObjectConverter::snakeCaseToUpperCamelCase($key) . 'Data'; call_user_func_array([$this->session, $method], []); } }