00001 <?php 00002 00006 class oxwCookieNote extends oxWidget 00007 { 00008 00014 protected $_sThisTemplate = 'widget/header/cookienote.tpl'; 00015 00022 public function render() 00023 { 00024 parent::render(); 00025 00026 return $this->_sThisTemplate; 00027 } 00028 00034 public function isEnabled() 00035 { 00036 if ($this->getConfig()->getConfigParam('blShowCookiesNotification')) { 00037 return true; 00038 } 00039 00040 return false; 00041 } 00042 }