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