Go to the documentation of this file.00001 <?php
00002
00003 require_once 'oxerptype.php';
00004
00008 class oxERPType_Article2Action extends oxERPType
00009 {
00015 public function __construct()
00016 {
00017 parent::__construct();
00018
00019 $this->_sTableName = 'oxactions2article';
00020 $this->_blRestrictedByShopId = true;
00021
00022
00023 $this->_aFieldList = array(
00024 'OXSHOPID' => 'OXSHOPID',
00025 'OXACTIONID' => 'OXACTIONID',
00026 'OXARTID' => 'OXARTID',
00027 'OXSORT' => 'OXSORT',
00028 'OXID' => 'OXID'
00029 );
00030
00031 $this->_aKeyFieldList = array(
00032 'OXACTIONID' => 'OXACTIONID',
00033 'OXARTID' => 'OXARTID',
00034 'OXSHOPID' => 'OXSHOPID'
00035 );
00036 }
00037
00038 }