Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
RecentlyViewedStorageConfiguration.php
Go to the documentation of this file.
1 <?php
7 
10 
15 {
17  const XML_LIFETIME_PATH = "catalog/recently_products/recently_viewed_lifetime";
18 
22  private $scopeConfig;
23 
28  public function __construct(ScopeConfigInterface $scopeConfig)
29  {
30  $this->scopeConfig = $scopeConfig;
31  }
32 
38  public function get()
39  {
40  return [
41  'lifetime' => $this->scopeConfig->getValue(self::XML_LIFETIME_PATH)
42  ];
43  }
44 }