getSearchableProducts() 공개 메소드

Load a bulk of product data.
public getSearchableProducts ( integer $storeId, string $productIds = null ) : array
$storeId integer Store id.
$productIds string Product ids filter.
리턴 array
예제 #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);
 }