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