00001 <?php 00002 00003 require_once 'oxerptype.php'; 00004 00008 class oxERPType_Article2Category extends oxERPType 00009 { 00015 public function __construct() 00016 { 00017 parent::__construct(); 00018 00019 $this->_sTableName = 'oxobject2category'; 00020 00021 $this->_aFieldList = array( 00022 'OXOBJECTID' => 'OXOBJECTID', 00023 'OXCATNID' => 'OXCATNID', 00024 'OXPOS' => 'OXPOS', 00025 'OXID' => 'OXID', 00026 'OXSHOPID' => 'OXSHOPID', 00027 'OXSHOPINCL' => 'OXSHOPINCL', 00028 'OXSHOPEXCL' => 'OXSHOPEXCL' 00029 ); 00030 00031 $this->_aKeyFieldList = array( 00032 'OXOBJECTID' => 'OXOBJECTID', 00033 'OXCATNID' => 'OXCATNID', 00034 'OXSHOPID' => 'OXSHOPID' 00035 ); 00036 } 00037 00038 }