Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Notices.php
Go to the documentation of this file.
1 <?php
13 
19 {
25  public function displayNoscriptNotice()
26  {
27  return $this->_scopeConfig->getValue(
28  'web/browser_capabilities/javascript',
29  \Magento\Store\Model\ScopeInterface::SCOPE_STORE
30  );
31  }
32 
38  public function displayDemoNotice()
39  {
40  return $this->_scopeConfig->getValue(
41  'design/head/demonotice',
42  \Magento\Store\Model\ScopeInterface::SCOPE_STORE
43  );
44  }
45 }