00001 <?php
00002
00003 require_once( 'oxerptype.php');
00004
00005 class oxERPType_Artextends extends oxERPType
00006 {
00007
00008 protected $_aFieldListVersions = array (
00009 '2' => array(
00010 'OXID' => 'OXID',
00011 'OXLONGDESC' => 'OXLONGDESC',
00012 'OXLONGDESC_1' => 'OXLONGDESC_1',
00013 'OXLONGDESC_2' => 'OXLONGDESC_2',
00014 'OXLONGDESC_3' => 'OXLONGDESC_3',
00015 'OXTAGS' => 'OXTAGS',
00016 'OXTAGS_1' => 'OXTAGS_1',
00017 'OXTAGS_2' => 'OXTAGS_2',
00018 'OXTAGS_3' => 'OXTAGS_3',
00019 ),
00020 );
00021 public function __construct()
00022 {
00023
00024 parent::__construct();
00025
00026 $this->_sTableName = 'oxartextends';
00027
00028 if (oxERPBase::getRequestedVersion() < 2) {
00029 $this->_sTableName = '';
00030 $this->_aFieldList = array();
00031 }
00032 }
00033 }