OXID eShop CE  4.10.7
 All Classes Namespaces Files Functions Variables Pages
oxwcookienote.php
Go to the documentation of this file.
1 <?php
2 
6 class oxwCookieNote extends oxWidget
7 {
8 
14  protected $_sThisTemplate = 'widget/header/cookienote.tpl';
15 
22  public function render()
23  {
25 
26  return $this->_sThisTemplate;
27  }
28 
34  public function isEnabled()
35  {
36  if ($this->getConfig()->getConfigParam('blShowCookiesNotification')) {
37  return true;
38  }
39 
40  return false;
41  }
42 }