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