Go to the documentation of this file.00001 <?php
00002
00003 require_once 'oxerptype.php';
00004
00008 class oxERPType_Crossselling extends oxERPType
00009 {
00015 public function __construct()
00016 {
00017 parent::__construct();
00018
00019 $this->_sTableName = 'oxobject2article';
00020
00021 $this->_aFieldList = array(
00022 'OXOBJECTID' => 'OXOBJECTID',
00023 'OXARTICLENID' => 'OXARTICLENID',
00024 'OXSORT' => 'OXSORT',
00025 'OXID' => 'OXID'
00026 );
00027
00028 $this->_aKeyFieldList = array(
00029 'OXARTICLENID' => 'OXARTICLENID',
00030 'OXOBJECTID' => 'OXOBJECTID'
00031 );
00032 }
00033 }