00001 <?php 00002 00003 require_once 'oxerptype.php'; 00004 00008 class oxERPType_Artextends extends oxERPType 00009 { 00014 protected $_aFieldListVersions = array ( 00015 '2' => array( 00016 'OXID' => 'OXID', 00017 'OXLONGDESC' => 'OXLONGDESC', 00018 'OXLONGDESC_1' => 'OXLONGDESC_1', 00019 'OXLONGDESC_2' => 'OXLONGDESC_2', 00020 'OXLONGDESC_3' => 'OXLONGDESC_3', 00021 'OXTAGS' => 'OXTAGS', 00022 'OXTAGS_1' => 'OXTAGS_1', 00023 'OXTAGS_2' => 'OXTAGS_2', 00024 'OXTAGS_3' => 'OXTAGS_3', 00025 ), 00026 ); 00027 00033 public function __construct() 00034 { 00035 parent::__construct(); 00036 00037 $this->_sTableName = 'oxartextends'; 00038 00039 if (oxERPBase::getRequestedVersion() < 2) { 00040 $this->_sTableName = ''; 00041 $this->_aFieldList = array(); 00042 } 00043 } 00044 }