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