00001 <?php 00002 00007 class oxLinks extends oxI18n 00008 { 00009 00015 protected $_sClassName = 'oxlinks'; 00016 00022 public function __construct() 00023 { 00024 parent::__construct(); 00025 $this->init('oxlinks'); 00026 } 00027 00037 protected function _setFieldData($sFieldName, $sValue, $iDataType = oxField::T_TEXT) 00038 { 00039 if ('oxurldesc' === strtolower($sFieldName) || 'oxlinks__oxurldesc' === strtolower($sFieldName)) { 00040 $iDataType = oxField::T_RAW; 00041 } 00042 00043 return parent::_setFieldData($sFieldName, $sValue, $iDataType); 00044 } 00045 00046 00047 }