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