OXID eShop CE  4.8.12
 All Classes Files Functions Variables Pages
oxiarticle.php
Go to the documentation of this file.
1 <?php
2 
7 interface oxIArticle
8 {
17  public function checkForStock( $dAmount, $dArtStockAmount = 0 );
18 
26  public function getSelectLists( $sKeyPrefix = null );
27 
37  public function getBasketPrice( $dAmount, $aSelList, $oBasket );
38 
44  public function skipDiscounts();
45 
54  public function getCategoryIds( $blActCats = false, $blSkipCache = false );
55 
61  public function getPrice();
62 
68  public function getProductId();
69 
77  public function getBasePrice( $dAmount = 1 );
78 
84  public function getProductParentId();
85 
91  public function isOrderArticle();
92 
93 }