oxdisplayerror.php

Go to the documentation of this file.
00001 <?php
00002 
00006 class oxDisplayError implements oxIDisplayError
00007 {
00008 
00014     protected $_sMessage;
00015 
00021     public function getOxMessage()
00022     {
00023         return oxRegistry::getLang()->translateString($this->_sMessage);
00024     }
00025 
00031     public function setMessage($sMessage)
00032     {
00033         $this->_sMessage = $sMessage;
00034     }
00035 
00041     public function getErrorClassType()
00042     {
00043         return null;
00044     }
00045 
00053     public function getValue($sName)
00054     {
00055         return '';
00056     }
00057 }