oxerptype_article2category.php

Go to the documentation of this file.
00001 <?php
00002 
00003 require_once 'oxerptype.php';
00004 
00008 class oxERPType_Article2Category extends oxERPType
00009 {
00010 
00016     public function __construct()
00017     {
00018         parent::__construct();
00019 
00020         $this->_sTableName = 'oxobject2category';
00021 
00022         $this->_aKeyFieldList = array(
00023             'OXOBJECTID' => 'OXOBJECTID',
00024             'OXCATNID'   => 'OXCATNID',
00025             'OXSHOPID'   => 'OXSHOPID'
00026         );
00027 
00028         unset($this->_aKeyFieldList['OXSHOPID']);
00029     }
00030 }