Example #1
0
 /**
  * Check is product available for sale
  *
  * @param Mage_Catalog_Model_Product $product
  * @return bool
  */
 public function isSalable($product = null)
 {
     return $this->hasLinks($product) && parent::isSalable($product);
 }