getSearchableProducts() public method

Load a bulk of product data.
public getSearchableProducts ( integer $storeId, string $productIds = null ) : array
$storeId integer Store id.
$productIds string Product ids filter.
return array
Esempio n. 1
0
 /**
  * Load a bulk of product data.
  *
  * @param int    $storeId    Store id.
  * @param string $productIds Product ids filter.
  *
  * @return array
  */
 private function getSearchableProducts($storeId, $productIds = null)
 {
     return $this->resourceModel->getSearchableProducts($storeId, $productIds);
 }