oxiarticle.php

Go to the documentation of this file.
00001 <?php
00002 
00007 interface oxIArticle
00008 {
00017     public function checkForStock( $dAmount, $dArtStockAmount = 0 );
00018 
00026     public function getSelectLists( $sKeyPrefix = null );
00027 
00037     public function getBasketPrice( $dAmount, $aSelList, $oBasket );
00038 
00044     public function skipDiscounts();
00045 
00054     public function getCategoryIds( $blActCats = false, $blSkipCache = false );
00055 
00061     public function getPrice();
00062 
00068     public function getProductId();
00069 
00077     public function getBasePrice( $dAmount = 1 );
00078 
00084     public function getProductParentId();
00085 
00091     public function isOrderArticle();
00092 
00093 }